Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
394 changes: 199 additions & 195 deletions eng/Version.Details.xml

Large diffs are not rendered by default.

185 changes: 93 additions & 92 deletions eng/Versions.props

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"jdk": "latest"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25358.102",
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25358.102",
"Microsoft.DotNet.SharedFramework.Sdk": "10.0.0-beta.25358.102",
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25365.101",
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25365.101",
"Microsoft.DotNet.SharedFramework.Sdk": "10.0.0-beta.25365.101",
"Microsoft.Build.NoTargets": "3.7.0",
"Microsoft.Build.Traversal": "3.4.0"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<GenerateInstallers Condition="'$(DotNetBuildSourceOnly)' != 'true'">true</GenerateInstallers>
<BuildDebPackage Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'">true</BuildDebPackage>
<BuildRpmPackage Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'">true</BuildRpmPackage>
<UseArcadeRpmTooling>true</UseArcadeRpmTooling>
<GenerateVSInsertionPackages>true</GenerateVSInsertionPackages>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@

<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) "
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.dll" />
<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) "
<!-- Always explicitly include the .pdb -->
<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' "
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.pdb" />
</ItemGroup>

Expand All @@ -118,6 +119,14 @@
<_TransportPdbs Include="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.pdb"
Exclude="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.ni.pdb" />

<!-- Dedupe System.Security.Cryptography.Pkcs.pdb based on RID -->
<!-- If we get rid of our custom reference resolution here, we can let nuget handle this -->
<_TransportPdbs Remove="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\lib\**\System.Security.Cryptography.Pkcs.pdb"
Condition="'$(TargetOsName)' == 'win'" />

<_TransportPdbs Remove="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\runtimes\win\**\System.Security.Cryptography.Pkcs.pdb"
Condition="'$(TargetOsName)' != 'win'" />

<_SymbolFilesToPackage Include="@(_TransportPdbs)"
Condition="'$(FileNameList)' != '' and $(FileNameList.Contains('%(Filename);'))" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<GenerateInstallers Condition="'$(DotNetBuildSourceOnly)' != 'true'">true</GenerateInstallers>
<BuildDebPackage Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'">true</BuildDebPackage>
<BuildRpmPackage Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'">true</BuildRpmPackage>
<UseArcadeRpmTooling>true</UseArcadeRpmTooling>
<GenerateVSInsertionPackages>true</GenerateVSInsertionPackages>
</PropertyGroup>

Expand Down Expand Up @@ -97,7 +98,8 @@

<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) "
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.dll" />
<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' AND !$(BuildNative) "
<!-- Always explicitly include the .pdb -->
<NativeRuntimeAsset Condition=" '$(UseIisNativeAssets)' == 'true' "
Include="$(ArtifactsBinDir)InProcessRequestHandler\$(NativePlatform)\$(Configuration)\aspnetcorev2_inprocess.pdb" />
</ItemGroup>

Expand All @@ -114,6 +116,14 @@
<_TransportPdbs Include="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.pdb"
Exclude="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\**\*.ni.pdb" />

<!-- Dedupe System.Security.Cryptography.Pkcs.pdb based on RID -->
<!-- If we get rid of our custom reference resolution here, we can let nuget handle this -->
<_TransportPdbs Remove="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\lib\**\System.Security.Cryptography.Pkcs.pdb"
Condition="'$(TargetOsName)' == 'win'" />

<_TransportPdbs Remove="$(PkgMicrosoft_Internal_Runtime_AspNetCore_Transport)\runtimes\win\**\System.Security.Cryptography.Pkcs.pdb"
Condition="'$(TargetOsName)' != 'win'" />

<_SymbolFilesToPackage Include="@(_TransportPdbs)"
Condition="'$(FileNameList)' != '' and $(FileNameList.Contains('%(Filename);'))" />
</ItemGroup>
Expand Down
Loading