<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>
csproj Generator for NET Core 3 1
The output type is set to "Exe" which means that the output will be an executable file. The target framework is set to "netcoreapp3.1" which means that the project will be compiled for the .NET Core 3.1 platform.
Shortcut: csproj_3.1
0 Comments
Add Comment
Log in to add a comment