Add property to skip installing the aspnetcore shared framework

This commit is contained in:
Nate McMaster 2017-12-29 19:52:33 -08:00
parent 9ad731bc33
commit b8424b0e8b
1 changed files with 4 additions and 4 deletions

View File

@ -9,10 +9,10 @@
<ItemGroup>
<DotNetCoreRuntime Include="$(MicrosoftNETCoreApp21PackageVersion)" />
<!-- SkipAspNetCoreRuntimeInstall must be set when building templates before the shared framework is available -->
<AspNetCoreRuntime Include="$(MicrosoftAspNetCoreAllPackageVersion)"
Condition=" '$(SkipAspNetCoreRuntimeInstall)' != 'true' " />
</ItemGroup>
<ItemGroup>
<AspNetCoreRuntime Include="$(MicrosoftAspNetCoreAllPackageVersion)" />
</ItemGroup>
</Project>