0
0
llucycodes42
The code above defines a project that will build an executable. The project will use the netcoreapp1.1 target framework.
Shortcut: csproj_1.1
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.1</TargetFramework>
</PropertyGroup>
</Project>