25 lines
1009 B
XML
25 lines
1009 B
XML
<Project>
|
|
|
|
<ItemGroup>
|
|
<!-- Workaround https://github.com/aspnet/AspNetCore/issues/6726. Required because illink (part of Microsoft.AspNetCore.Blazor.Mono) depends on .NET Core 2.x -->
|
|
<DotNetCoreRuntime Include="2.2.1" />
|
|
|
|
<DotNetCoreRuntime Include="$(MicrosoftNETCoreAppPackageVersion)"
|
|
Feed="$(DotNetAssetRootUrl)"
|
|
FeedCredential="$(DotNetAssetRootAccessTokenSuffix)" />
|
|
|
|
<DotNetCoreRuntime Condition="'$(OS)' == 'Windows_NT'"
|
|
Include="$(MicrosoftNETCoreAppPackageVersion)"
|
|
Arch="x86"
|
|
Feed="$(DotNetAssetRootUrl)"
|
|
FeedCredential="$(DotNetAssetRootAccessTokenSuffix)" />
|
|
|
|
<!--
|
|
The build doesn't support compiling the shared runtime on one machine along with running tests,
|
|
so this is enables installing the shared runtime from a previous build.
|
|
-->
|
|
<AspNetCoreRuntime Include="$(PackageVersion)" Feed="$(AspNetCoreFxFeed)" Condition="'$(InstallSharedRuntimeFromPreviousBuild)' == 'true'" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|