Created
November 14, 2018 15:15
-
-
Save jcorrius/d619fcd86b6c9a7d723d521a1fd3d351 to your computer and use it in GitHub Desktop.
.NET Core csproj sample for a self-contained project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk.Web"> | |
<PropertyGroup> | |
<TargetFramework>netcoreapp2.1</TargetFramework> | |
<RuntimeIdentifiers>ubuntu.18.04-x64</RuntimeIdentifiers> | |
</PropertyGroup> | |
<ItemGroup> | |
<Folder Include="wwwroot\" /> | |
</ItemGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.AspNetCore.App" /> | |
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" /> | |
</ItemGroup> | |
<ItemGroup> | |
<RuntimeHostConfigurationOption Include="System.Globalization.Invariant" Value="true" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment