Modern csproj Targeting .NET Standard
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks> | |
<LangVersion>9</LangVersion> | |
<Nullable>enable</Nullable> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="5.0.0" /> | |
<PackageReference Include="System.Linq.Async" Version="5.0.0" /> | |
<PackageReference Include="System.Memory" Version="4.5.4" /> | |
<PackageReference Include="System.Text.Json" Version="5.0.0" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment