VS: DOTNET_SDK: .Net SDK Style Project for C#
Currently CMake generates csproj
files that use Microsoft.Common.Props
and other properties and targets. With .Net core a new project format was introduced that simplifies C# projects a lot. Is it possible to support this new format?
https://docs.microsoft.com/en-us/dotnet/core/tools/csproj
For example, a minimal project would have the following:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
</PropertyGroup>
</Project>
Edited by Brad King