You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building with the 1.1 branch of the bootstrapper, the following error may appear:
Package Uno.Wasm.Bootstrap.Cli 1.1.0-dev.445 is not compatible with netcoreapp2.2
This is caused by the fact that Uno.Wasm.Bootstrap projects use the netstandard2.0 target framework, which implies that DotnetCliToolTargetFramework defaults to netcoreapp2.2.
The bootstrapper now requires .NET Core 3.1 to support the debugger, but there is no implicit way for specifying a default DotnetCliToolTargetFramework to be used during a clean nuget restore.
BREAKING CHANGE: The Uno.Wasm.Bootstrap.DevServer is now deprecated and needs to be replaced with the Uno.Wasm.Bootstrap.DevServer.
This change fixes#186, as there is no dotnet-tool to run anymore.
BREAKING CHANGE: The Uno.Wasm.Bootstrap.Cli is now deprecated and needs to be replaced with the Uno.Wasm.Bootstrap.DevServer.
This change fixes#186, as there is no dotnet-tool to run anymore.
BREAKING CHANGE: The Uno.Wasm.Bootstrap.Cli is now deprecated and needs to be replaced with the Uno.Wasm.Bootstrap.DevServer.
This change fixes#186, as there is no dotnet-tool to run anymore.
When building with the 1.1 branch of the bootstrapper, the following error may appear:
This is caused by the fact that Uno.Wasm.Bootstrap projects use the
netstandard2.0
target framework, which implies thatDotnetCliToolTargetFramework
defaults tonetcoreapp2.2
.The bootstrapper now requires .NET Core 3.1 to support the debugger, but there is no implicit way for specifying a default
DotnetCliToolTargetFramework
to be used during a clean nuget restore.Workaround
In the csproj, add the following property:
The text was updated successfully, but these errors were encountered: