[Visual Studio 2017][.NET Core 2.0] .NET Core 2.0 self-contained development in Visual Studio 2017
June 7, 2018
| Leave a comment
In past, if we would like to build .NET Core project and get the .exe file (self-contained development) via Visual Studio, we have to add following code to .csproj.
<PropertyGroup>
<RuntimeIdentifiers>win10-x64</RuntimeIdentifiers>
</PropertyGroup>
now, with Visual Studio 2017 + .NET Core 2.0, You could try following step: (more…)