Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@richlander
Last active August 2, 2018 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richlander/53a3c5f0505433b45c83c98db74c5e03 to your computer and use it in GitHub Desktop.
Save richlander/53a3c5f0505433b45c83c98db74c5e03 to your computer and use it in GitHub Desktop.
.NET Core Project File with Tiered Compilation Enabled
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TieredCompilation>true</TieredCompilation>
</PropertyGroup>
</Project>
@jp2masa
Copy link

jp2masa commented Aug 2, 2018

It should be a slash in line 5, not a backslash.

@richlander
Copy link
Author

Ooops! Thanks. Fixed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment