diff --git a/Directory.Build.props b/Directory.Build.props index 1230281ba95388d278f9f550089e45f8c8e9711e..d79b636c698cce931193da644af4837a4c172b07 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -174,6 +174,8 @@ freebsd-x64 </SupportedRuntimeIdentifiers> + <SupportedRuntimeIdentifiers Condition=" '$(PortableBuild)' == 'false' ">$(SupportedRuntimeIdentifiers);$(TargetRuntimeIdentifier)</SupportedRuntimeIdentifiers> + <!-- Playwright provides binaries for Windows (x86 and x64), macOS (x64) and Linux (x64, non musl). We can't use it on other architectures. --> <IsPlaywrightAvailable Condition="'$(TargetOsName)' == 'linux-musl' OR ('$(TargetArchitecture)' != 'x86' AND '$(TargetArchitecture)' != 'x64')">false</IsPlaywrightAvailable> <IsPlaywrightAvailable Condition="'$(IsPlaywrightAvailable)' == ''">true</IsPlaywrightAvailable> diff --git a/eng/Common.props b/eng/Common.props index a9a69bde9f22cb4ec20109235924bd4439b65459..3dcca1c6b54d8ec835ba556d7eb8391aa31514dc 100644 --- a/eng/Common.props +++ b/eng/Common.props @@ -6,6 +6,8 @@ <TargetOsName Condition=" '$(TargetOsName)' == '' AND $([MSBuild]::IsOSPlatform('FreeBSD'))">freebsd</TargetOsName> <TargetArchitecture Condition="'$(TargetArchitecture)' == ''">x64</TargetArchitecture> <TargetRuntimeIdentifier Condition="'$(TargetRuntimeIdentifier)' == ''">$(TargetOsName)-$(TargetArchitecture)</TargetRuntimeIdentifier> + <PortableBuild Condition="'$(PortableBuild)' == ''">true</PortableBuild> + <DefaultAppHostRuntimeIdentifier Condition=" '$(PortableBuild)' == 'false' ">$(TargetRuntimeIdentifier)</DefaultAppHostRuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition=" '$(BuildAllProjects)' == 'true' "> diff --git a/eng/Dependencies.props b/eng/Dependencies.props index c1b35e48532852475ad9eb98ab3a4355c0e19ed7..0d47cc0a111bd89e6a4fd927252b8b0b947fd5e3 100644 --- a/eng/Dependencies.props +++ b/eng/Dependencies.props @@ -106,6 +106,7 @@ and are generated based on the last package release. <LatestPackageReference Include="Microsoft.NETCore.App.Runtime.linux-musl-arm" /> <LatestPackageReference Include="Microsoft.NETCore.App.Runtime.linux-musl-arm64" /> <LatestPackageReference Include="Microsoft.NETCore.App.Runtime.freebsd-x64" /> + <LatestPackageReference Include="Microsoft.NETCore.App.Runtime.$(TargetRuntimeIdentifier)" Condition=" '$(PortableBuild)' == 'false' " /> <!-- Crossgen2 compiler --> <LatestPackageReference Include="Microsoft.NETCore.App.Crossgen2.osx-x64" /> @@ -121,6 +122,7 @@ and are generated based on the last package release. <LatestPackageReference Include="Microsoft.NETCore.App.Crossgen2.win-arm" /> <LatestPackageReference Include="Microsoft.NETCore.App.Crossgen2.win-arm64" /> <LatestPackageReference Include="Microsoft.NETCore.App.Crossgen2.freebsd-x64" /> + <LatestPackageReference Include="Microsoft.NETCore.App.Crossgen2.$(TargetRuntimeIdentifier)" Condition=" '$(PortableBuild)' == 'false' " /> </ItemGroup> <ItemGroup Label=".NET team dependencies (Non-source-build)" Condition="'$(DotNetBuildFromSource)' != 'true'"> diff --git a/eng/tools/GenerateFiles/Directory.Build.targets.in b/eng/tools/GenerateFiles/Directory.Build.targets.in index 3da7ea2b44d3987cbe1cfb02d6e6a6810811fc40..30e25d4e68a5c42b7083e0b8f741b68fb9b3a207 100644 --- a/eng/tools/GenerateFiles/Directory.Build.targets.in +++ b/eng/tools/GenerateFiles/Directory.Build.targets.in @@ -56,18 +56,27 @@ <DefaultRuntimeFrameworkVersion Condition=" ('$(IsServicingBuild)' != 'true' OR '$(NETCoreSdkVersion)' == '7.0.100-rtm.22478.12') AND '%(TargetFramework)' == '${DefaultNetCoreTargetFramework}' AND '$(TargetLatestDotNetRuntime)' != 'false' ">${MicrosoftNETCoreAppRuntimeVersion}</DefaultRuntimeFrameworkVersion> + <RuntimePackRuntimeIdentifiers Condition=" '$(PortableBuild)' == 'false' ">$(TargetRuntimeIdentifier)</RuntimePackRuntimeIdentifiers> </KnownFrameworkReference> <KnownAppHostPack Update="Microsoft.NETCore.App"> <AppHostPackVersion Condition=" '%(TargetFramework)' == '${DefaultNetCoreTargetFramework}' ">${MicrosoftNETCoreAppRuntimeVersion}</AppHostPackVersion> + <AppHostRuntimeIdentifiers Condition=" '$(PortableBuild)' == 'false' ">$(TargetRuntimeIdentifier)</AppHostRuntimeIdentifiers> </KnownAppHostPack> <KnownRuntimePack Update="Microsoft.NETCore.App"> <LatestRuntimeFrameworkVersion Condition=" '%(TargetFramework)' == '${DefaultNetCoreTargetFramework}' ">${MicrosoftNETCoreAppRuntimeVersion}</LatestRuntimeFrameworkVersion> + <AppHostRuntimeIdentifiers Condition=" '$(PortableBuild)' == 'false' ">$(TargetRuntimeIdentifier)</AppHostRuntimeIdentifiers> </KnownRuntimePack> + <KnownCrossgen2Pack Update="Microsoft.NETCore.App.Crossgen2" Condition=" '$(PortableBuild)' == 'false' "> + <Crossgen2PackVersion + Condition=" '%(TargetFramework)' == '${DefaultNetCoreTargetFramework}' ">${MicrosoftNETCoreAppRuntimeVersion}</Crossgen2PackVersion> + <Crossgen2RuntimeIdentifiers>$(TargetRuntimeIdentifier)</Crossgen2RuntimeIdentifiers> + </KnownCrossgen2Pack> + <!-- Use the just-built ASP.NET Core shared framework if available except when building product code in servicing. --> <KnownFrameworkReference Update="Microsoft.AspNetCore.App" Condition=" $(UpdateAspNetCoreKnownFramework) "> <LatestRuntimeFrameworkVersion diff --git a/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj b/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj index bd51f667807fe970eac6488ca06ff81e33cd4f6b..91692198e32f61ff3f73ee1ab692041c7144cb3e 100644 --- a/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj +++ b/src/Components/benchmarkapps/Wasm.Performance/Driver/Wasm.Performance.Driver.csproj @@ -8,7 +8,7 @@ <!-- WebDriver is not strong-named, so this test project cannot be strong named either. --> <SignAssembly>false</SignAssembly> <IsTestAssetProject>true</IsTestAssetProject> - <RuntimeIdentifier>linux-x64</RuntimeIdentifier> + <RuntimeIdentifier Condition=" '$(DotNetBuildFromSource)' != 'true' ">linux-x64</RuntimeIdentifier> <Nullable>annotations</Nullable> </PropertyGroup> diff --git a/src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.csproj b/src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.csproj index 4ad7d58e60bb360057d05be3946620ca35c8a318..3b5d2ae95048ad0681cc0929e98344c0320ef563 100644 --- a/src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.csproj +++ b/src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.csproj @@ -95,7 +95,7 @@ This package is an internal implementation of the .NET Core SDK and is not meant <Crossgen2ToolFileName Condition=" '$(TargetOsName)' == 'win' ">$(Crossgen2ToolFileName).exe</Crossgen2ToolFileName> <!-- E.g. "PkgMicrosoft_NETCore_App_Runtime_win-x64" (set in obj/Microsoft.AspNetCore.App.Runtime.csproj.nuget.g.props). --> - <RuntimePackageRootVariableName>PkgMicrosoft_NETCore_App_Runtime_$(RuntimeIdentifier)</RuntimePackageRootVariableName> + <RuntimePackageRootVariableName>PkgMicrosoft_NETCore_App_Runtime_$(RuntimeIdentifier.Replace('.', '_'))</RuntimePackageRootVariableName> <!-- Determine the crossgen2 package path property name. Special case linux-musl-arm and linux-musl-arm64 because they @@ -104,9 +104,10 @@ This package is an internal implementation of the .NET Core SDK and is not meant --> <BuildOsName>$(TargetOsName)</BuildOsName> <BuildOsName Condition="'$(TargetOsName)' == 'linux-musl' and '$(TargetArchitecture)'!='x64'">linux</BuildOsName> + <BuildOsName Condition=" '$(PortableBuild)' == 'false' ">$(TargetRuntimeIdentifier.Substring(0,$(TargetRuntimeIdentifier.IndexOf('-'))))</BuildOsName> <Crossgen2BuildArchitecture Condition=" '$(BuildOsName)' == 'win' ">x64</Crossgen2BuildArchitecture> <Crossgen2BuildArchitecture Condition=" '$(Crossgen2BuildArchitecture)' == '' ">$(BuildArchitecture)</Crossgen2BuildArchitecture> - <Crossgen2PackageRootVariableName>PkgMicrosoft_NETCore_App_Crossgen2_$(BuildOsName)-$(Crossgen2BuildArchitecture)</Crossgen2PackageRootVariableName> + <Crossgen2PackageRootVariableName>PkgMicrosoft_NETCore_App_Crossgen2_$(BuildOsName.Replace('.', '_'))-$(Crossgen2BuildArchitecture)</Crossgen2PackageRootVariableName> <AssetTargetFallback>$(AssetTargetFallback);native,Version=0.0</AssetTargetFallback> diff --git a/src/Tools/Directory.Build.targets b/src/Tools/Directory.Build.targets index 854f90ab5c204ab180d9017b30ebabd7ccfafca4..438ea3da045d4f219eb7152a6fe96c90ee1e69ac 100644 --- a/src/Tools/Directory.Build.targets +++ b/src/Tools/Directory.Build.targets @@ -1,7 +1,7 @@ <Project> <PropertyGroup Condition=" '$(PackAsTool)' == 'true' "> <!-- Microsoft tool packages are required to target both x64 and x86. --> - <PackAsToolShimRuntimeIdentifiers Condition=" '$(IsShippingPackage)' == 'true' ">win-x64;win-x86</PackAsToolShimRuntimeIdentifiers> + <PackAsToolShimRuntimeIdentifiers Condition=" '$(IsShippingPackage)' == 'true' AND '$(DotNetBuildFromSource)' != 'true' ">win-x64;win-x86</PackAsToolShimRuntimeIdentifiers> <!-- None of the tool projects are project reference providers. --> <IsProjectReferenceProvider>false</IsProjectReferenceProvider> <!--