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> <ItemGroup>
<DotNetCoreRuntime Include="$(MicrosoftNETCoreApp21PackageVersion)" /> <DotNetCoreRuntime Include="$(MicrosoftNETCoreApp21PackageVersion)" />
</ItemGroup>
<ItemGroup> <!-- SkipAspNetCoreRuntimeInstall must be set when building templates before the shared framework is available -->
<AspNetCoreRuntime Include="$(MicrosoftAspNetCoreAllPackageVersion)" /> <AspNetCoreRuntime Include="$(MicrosoftAspNetCoreAllPackageVersion)"
Condition=" '$(SkipAspNetCoreRuntimeInstall)' != 'true' " />
</ItemGroup> </ItemGroup>
</Project> </Project>