Enabled tiered compilation for dotnetsay (#1607)

Enable tiered compilation for dotnetsay
This commit is contained in:
Rich Lander 2018-05-29 09:48:56 -07:00 committed by GitHub
parent 1772e19921
commit e9e6c91206
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -45,8 +45,6 @@ dotnetsay
> Note: On macOS and Linux, `.\nupkg` will need be switched to `./nupkg` to accomodate for the different slash directions.
> Note: For .NET Core 2.1 RC1, the argument to specify a NuGet feed was `--source-feed`. It was changed to `--add-source` for the final release. You will need to use `--source-feed` if you are using .NET Core 2.1 RC1.
You can uninstall the tool using the following command.
```console

View file

@ -5,7 +5,7 @@
<TargetFramework>netcoreapp2.1</TargetFramework>
<Description>A simple .NET Core global tool called "dotnetsay".</Description>
<LangVersion>Latest</LangVersion>
<VersionPrefix>2.1.3</VersionPrefix>
<VersionPrefix>2.1.4</VersionPrefix>
<Authors>.NET Team</Authors>
<Product>dotnetsay</Product>
<Copyright>MIT</Copyright>
@ -17,10 +17,12 @@
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<!-- Optional performance setting - enables tiered JIT compilation-->
<TieredCompilation>true</TieredCompilation>
</PropertyGroup>
<ItemGroup Condition="'$(ContinuousIntegrationBuild)'=='true'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-62909-01" PrivateAssets="All"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-62925-02" PrivateAssets="All"/>
</ItemGroup>
</Project>