29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<Project>
|
|
<!-- Runtime identifiers -->
|
|
<PropertyGroup>
|
|
<!-- Defines the runtime identifier of the shared framework -->
|
|
<SharedFxRid Condition=" '$(SharedFxRid)' == '' AND $([MSBuild]::IsOSPlatform('Windows'))">win-x64</SharedFxRid>
|
|
<SharedFxRid Condition=" '$(SharedFxRid)' == '' AND $([MSBuild]::IsOSPlatform('OSX'))">osx-x64</SharedFxRid>
|
|
<SharedFxRid Condition=" '$(SharedFxRid)' == '' AND $([MSBuild]::IsOSPlatform('Linux'))">linux-x64</SharedFxRid>
|
|
|
|
<SharedFxArchitecture Condition="'$(SharedFxArchitecture)' == ''">$(SharedFxRid.Substring($([MSBuild]::Add($(SharedFxRid.LastIndexOf('-')), 1))))</SharedFxArchitecture>
|
|
|
|
<!-- Defines the default RID of the platform currently running the build. -->
|
|
<HostRid Condition=" '$(HostRid)' == '' AND $([MSBuild]::IsOSPlatform('Windows'))">win-x64</HostRid>
|
|
<HostRid Condition=" '$(HostRid)' == '' AND $([MSBuild]::IsOSPlatform('OSX'))">osx-x64</HostRid>
|
|
<HostRid Condition=" '$(HostRid)' == '' AND $([MSBuild]::IsOSPlatform('Linux'))">linux-x64</HostRid>
|
|
|
|
<!-- This defines the list of RIDs supported by the ASP.NET Core shared framework. -->
|
|
<SupportedRuntimeIdentifiers>
|
|
win-x64;
|
|
win-x86;
|
|
win-arm;
|
|
osx-x64;
|
|
linux-musl-x64;
|
|
linux-x64;
|
|
linux-arm;
|
|
linux-arm64
|
|
</SupportedRuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
</Project>
|