Skip to content

Instantly share code, notes, and snippets.

@jcorrius
Created November 14, 2018 15:15
Show Gist options
  • Save jcorrius/d619fcd86b6c9a7d723d521a1fd3d351 to your computer and use it in GitHub Desktop.
Save jcorrius/d619fcd86b6c9a7d723d521a1fd3d351 to your computer and use it in GitHub Desktop.
.NET Core csproj sample for a self-contained project
<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