mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
.Net Standard Issue #356
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @donniefitz2 on GitHub (Jul 12, 2019).
Originally assigned to: @GregorBiswanger on GitHub.
I'm trying to add ElectroNet to a new Blazor application (.net core 3.0 preview, client side only) and I'm getting the following error when attempting to restore the Nuget package:
ElectronNET.API 5.22.13 is not compatible with netstandard2.1 (.NETStandard,Version=v2.1). Package ElectronNET.API 5.22.13 supports: netcoreapp2.1 (.NETCoreApp,Version=v2.1)I get that my template is targeting netstandard2.1 and ElectronNet targets netcoreapp2.1 but shouldn't they be compatible?
This Blazor project file targets netstandard2.0 with the following csproj settings:
Thanks.