Currently BionicMonitor only checks for Blazor files if the target framework is netstandard2.0.
Since Blazor Preview 7 I needed to upgrade to netstandard2.1. Unfortunately, BionicMonitor only checks for the netstandard2.0 folder on the following line:
|
var distPath = Path.Combine(Directory.GetCurrentDirectory(), "bin/Debug/netstandard2.0/dist"); |
Maybe BionicMonitor could
- check for both/new target framework(s) or
- provide a command-line option for that
Workaround
I made a symbolic link from my bin\Debug\netstandard2.1 folder to bin\Debug\netstandard2.0.
mklink netstandard2.0 netstandard2.1 (on Windows)
Otherwise:
Thank you for this valuable tool!
Currently BionicMonitor only checks for Blazor files if the target framework is
netstandard2.0.Since Blazor Preview 7 I needed to upgrade to
netstandard2.1. Unfortunately, BionicMonitor only checks for the netstandard2.0 folder on the following line:BionicMonitor/BionicMonitorService/BionicMonitorService.cs
Line 41 in 91a41d2
Maybe BionicMonitor could
Workaround
I made a symbolic link from my
bin\Debug\netstandard2.1folder tobin\Debug\netstandard2.0.mklink netstandard2.0 netstandard2.1(on Windows)Otherwise:
Thank you for this valuable tool!