Hello,
I received my backer kit and have been playing around with blinking LEDs, but now it is time to take it to the next level (at least so I thought). Excitedly, I added an existing NETStandard2.0 library that I have been working on which works with .NET Core, disappointedly, I get this error:
[0x4:] EXCEPTION handling: System.IO.FileNotFoundException: Could not load file or assembly ‘netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51’ or one of its dependencies.
My .csproj file
<Project Sdk=“Microsoft.NET.Sdk”>
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include=“System.Buffers” Version=“4.5.0” />
<PackageReference Include=“System.Memory” Version=“4.5.3” />
<PackageReference Include=“System.Numerics.Vectors” Version=“4.5.0” />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="…\Lynk.Devices.Shared\Lynk.Devices.Shared.csproj" />
</ItemGroup>
</Project>
Questions
- Are netstandard2.0 libraries currently supported?
- Are there any plans on improving the overall startup time, IMO 30s is currently too long?
Thanks