Use platform assemblies paths instead of app paths for crossgen
This commit is contained in:
parent
2d38720211
commit
871debe753
|
|
@ -14,6 +14,9 @@
|
||||||
<_InstallerSourceDir>$(RepositoryRoot).deps\Installers\</_InstallerSourceDir>
|
<_InstallerSourceDir>$(RepositoryRoot).deps\Installers\</_InstallerSourceDir>
|
||||||
<_DockerRootDir>/opt/code/</_DockerRootDir>
|
<_DockerRootDir>/opt/code/</_DockerRootDir>
|
||||||
<_InstallersOutputDir>$(ArtifactsDir)installers\</_InstallersOutputDir>
|
<_InstallersOutputDir>$(ArtifactsDir)installers\</_InstallersOutputDir>
|
||||||
|
<!-- 3B = semicolon in ASCII -->
|
||||||
|
<PathSeparator Condition="'$(PathSeparator)' == ''">:</PathSeparator>
|
||||||
|
<PathSeparator Condition="$(SharedFxRID.StartsWith('win'))">%3B</PathSeparator>
|
||||||
|
|
||||||
<!-- installers -->
|
<!-- installers -->
|
||||||
<SharedFxInstallerName>aspnetcore-runtime</SharedFxInstallerName>
|
<SharedFxInstallerName>aspnetcore-runtime</SharedFxInstallerName>
|
||||||
|
|
|
||||||
|
|
@ -208,8 +208,7 @@
|
||||||
<CrossGenArgs Include="-readytorun" />
|
<CrossGenArgs Include="-readytorun" />
|
||||||
<CrossGenArgs Include="-in %(AssembliesToCrossgen.Source)" />
|
<CrossGenArgs Include="-in %(AssembliesToCrossgen.Source)" />
|
||||||
<CrossGenArgs Include="-out %(AssembliesToCrossgen.Destination)" />
|
<CrossGenArgs Include="-out %(AssembliesToCrossgen.Destination)" />
|
||||||
<CrossGenArgs Include="-app_paths $(SharedFxPublishDirectory)" />
|
<CrossGenArgs Include="-platform_assemblies_paths $(SharedFxPublishDirectory)$(PathSeparator)$(SharedFxCrossGenToolDirectory)" />
|
||||||
<CrossGenArgs Include="-platform_assemblies_paths $(SharedFxCrossGenToolDirectory)" />
|
|
||||||
<CrossGenArgs Include="-JITPath %(ClrJitAssembly.FullPath)" />
|
<CrossGenArgs Include="-JITPath %(ClrJitAssembly.FullPath)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
@ -233,8 +232,7 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<CrossGenSymbolsArgs Include="-nologo" />
|
<CrossGenSymbolsArgs Include="-nologo" />
|
||||||
<CrossGenSymbolsArgs Include="-readytorun" />
|
<CrossGenSymbolsArgs Include="-readytorun" />
|
||||||
<CrossGenSymbolsArgs Include="-app_paths $(SharedFxPublishDirectory)" />
|
<CrossGenSymbolsArgs Include="-platform_assemblies_paths $(SharedFxPublishDirectory)$(PathSeparator)$(SharedFxCrossGenToolDirectory)" />
|
||||||
<CrossGenSymbolsArgs Include="-platform_assemblies_paths $(SharedFxCrossGenToolDirectory)" />
|
|
||||||
<CrossGenSymbolsArgs Include="-$(CrossGenSymbolsType)" />
|
<CrossGenSymbolsArgs Include="-$(CrossGenSymbolsType)" />
|
||||||
<CrossGenSymbolsArgs Include="%(AssembliesToCrossgen.Symbols)" />
|
<CrossGenSymbolsArgs Include="%(AssembliesToCrossgen.Symbols)" />
|
||||||
<CrossGenSymbolsArgs Include="%(AssembliesToCrossgen.Destination)" />
|
<CrossGenSymbolsArgs Include="%(AssembliesToCrossgen.Destination)" />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue