aeed60ded1
Since Microsoft.NETCore.App 2.0 will only support 10.12 and later, the RID in the runtime package has changed to osx.10.12. We need to update so we pick up crossgen from the right place.
13 lines
762 B
XML
13 lines
762 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<Stage0Directory>$(RepoRoot)/.dotnet_stage0/$(Architecture)</Stage0Directory>
|
|
<Stage0PjDirectory>$(RepoRoot)/.dotnet_stage0PJ/$(Architecture)</Stage0PjDirectory>
|
|
<DotnetStage0>$(Stage0Directory)/dotnet$(ExeExtension)</DotnetStage0>
|
|
<IsDesktopAvailable>False</IsDesktopAvailable>
|
|
<IsDesktopAvailable Condition=" '$(OSName)' == 'win' ">True</IsDesktopAvailable>
|
|
<CoreCLRRid>$(Rid)</CoreCLRRid>
|
|
<CoreCLRRid Condition=" '$(OSName)' == 'win' ">win7-$(Architecture)</CoreCLRRid>
|
|
<CoreCLRRid Condition=" '$(OSName)' == 'osx' ">osx.10.12-x64</CoreCLRRid>
|
|
<CoreCLRRid Condition=" '$(OSName)' == 'centos' OR '$(OSName)' == 'rhel' ">rhel.7-x64</CoreCLRRid>
|
|
</PropertyGroup>
|
|
</Project>
|