Skip to content

Commit ed74665

Browse files
Merged PR 49622: [internal/release/9.0] Merge from public
Merge from public release/9.0 to internal/release/9.0 and resolve conflicts if necessary
2 parents 4b60761 + e790785 commit ed74665

File tree

3 files changed

+41
-14
lines changed

3 files changed

+41
-14
lines changed

eng/Version.Details.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -414,13 +414,13 @@
414414
<Uri>https://github.com/dotnet/arcade</Uri>
415415
<Sha>aa61e8c20a869bcc994f8b29eb07d927d2bec6f4</Sha>
416416
</Dependency>
417-
<Dependency Name="Microsoft.Extensions.Diagnostics.Testing" Version="9.5.0-preview.1.25204.8">
417+
<Dependency Name="Microsoft.Extensions.Diagnostics.Testing" Version="9.5.0-preview.1.25211.2">
418418
<Uri>https://github.com/dotnet/extensions</Uri>
419-
<Sha>2fbf99834c90a20b950b44b3dcdd2b264b422a59</Sha>
419+
<Sha>f0a1a79c0b0dfb724edfcbcef82cb22d44e13e13</Sha>
420420
</Dependency>
421-
<Dependency Name="Microsoft.Extensions.TimeProvider.Testing" Version="9.5.0-preview.1.25204.8">
421+
<Dependency Name="Microsoft.Extensions.TimeProvider.Testing" Version="9.5.0-preview.1.25211.2">
422422
<Uri>https://github.com/dotnet/extensions</Uri>
423-
<Sha>2fbf99834c90a20b950b44b3dcdd2b264b422a59</Sha>
423+
<Sha>f0a1a79c0b0dfb724edfcbcef82cb22d44e13e13</Sha>
424424
</Dependency>
425425
<Dependency Name="NuGet.Frameworks" Version="6.2.4">
426426
<Uri>https://github.com/nuget/nuget.client</Uri>

eng/Versions.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@
143143
<SystemIOHashingVersion>9.0.5</SystemIOHashingVersion>
144144
<SystemRuntimeCachingVersion>9.0.5</SystemRuntimeCachingVersion>
145145
<!-- Packages from dotnet/extensions -->
146-
<MicrosoftExtensionsDiagnosticsTestingVersion>9.5.0-preview.1.25204.8</MicrosoftExtensionsDiagnosticsTestingVersion>
147-
<MicrosoftExtensionsTimeProviderTestingVersion>9.5.0-preview.1.25204.8</MicrosoftExtensionsTimeProviderTestingVersion>
146+
<MicrosoftExtensionsDiagnosticsTestingVersion>9.5.0-preview.1.25211.2</MicrosoftExtensionsDiagnosticsTestingVersion>
147+
<MicrosoftExtensionsTimeProviderTestingVersion>9.5.0-preview.1.25211.2</MicrosoftExtensionsTimeProviderTestingVersion>
148148
<!-- Packages from dotnet/efcore -->
149149
<dotnetefVersion>9.0.5</dotnetefVersion>
150150
<MicrosoftEntityFrameworkCoreInMemoryVersion>9.0.5</MicrosoftEntityFrameworkCoreInMemoryVersion>

src/Identity/UI/src/Microsoft.AspNetCore.Identity.UI.csproj

+35-8
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,27 @@
9090
<RelativePath>%(RecursiveDir)%(FileName)%(Extension)</RelativePath>
9191
</V5AssetsCandidates>
9292
</ItemGroup>
93-
94-
<DefineStaticWebAssets Condition="'@(V4AssetsCandidates->Count())' != '0'" CandidateAssets="@(V4AssetsCandidates)" SourceId="$(PackageId)" SourceType="Discovered" AssetKind="All" ContentRoot="assets/V4" BasePath="$(StaticWebAssetBasePath)">
93+
94+
<DefineStaticWebAssets
95+
Condition="'@(V4AssetsCandidates->Count())' != '0'"
96+
CandidateAssets="@(V4AssetsCandidates)" SourceId="$(PackageId)"
97+
SourceType="Package"
98+
AssetKind="All"
99+
ContentRoot="assets/V4"
100+
BasePath="$(StaticWebAssetBasePath)"
101+
>
95102
<Output TaskParameter="Assets" ItemName="V4Assets" />
96103
</DefineStaticWebAssets>
97-
<DefineStaticWebAssets Condition="'@(V5AssetsCandidates->Count())' != '0'" CandidateAssets="@(V5AssetsCandidates)" SourceId="$(PackageId)" SourceType="Discovered" AssetKind="All" ContentRoot="assets/V5" BasePath="$(StaticWebAssetBasePath)">
104+
105+
<DefineStaticWebAssets
106+
Condition="'@(V5AssetsCandidates->Count())' != '0'"
107+
CandidateAssets="@(V5AssetsCandidates)"
108+
SourceId="$(PackageId)"
109+
SourceType="Package"
110+
AssetKind="All"
111+
ContentRoot="assets/V5"
112+
BasePath="$(StaticWebAssetBasePath)"
113+
>
98114
<Output TaskParameter="Assets" ItemName="V5Assets" />
99115
</DefineStaticWebAssets>
100116

@@ -106,7 +122,7 @@
106122
>
107123
<Output TaskParameter="Endpoints" ItemName="V4AssetEndpoints" />
108124
</DefineStaticWebAssetEndpoints>
109-
125+
110126
<DefineStaticWebAssetEndpoints
111127
Condition="'@(V5Assets)' != ''"
112128
CandidateAssets="@(V5Assets)"
@@ -116,23 +132,34 @@
116132
<Output TaskParameter="Endpoints" ItemName="V5AssetEndpoints" />
117133
</DefineStaticWebAssetEndpoints>
118134

119-
<GenerateStaticWebAssetsPropsFile StaticWebAssets="@(V4Assets)" PackagePathPrefix="staticwebassets/V4" TargetPropsFilePath="$(IntermediateOutputPath)IdentityUI.V4.targets" />
120-
<GenerateStaticWebAssetsPropsFile StaticWebAssets="@(V5Assets)" PackagePathPrefix="staticwebassets/V5" TargetPropsFilePath="$(IntermediateOutputPath)IdentityUI.V5.targets" />
135+
<ItemGroup>
136+
<FinalV4Assets Include="@(V4Assets)">
137+
<SourceType>Discovered</SourceType>
138+
</FinalV4Assets>
139+
<FinalV5Assets Include="@(V5Assets)">
140+
<SourceType>Discovered</SourceType>
141+
</FinalV5Assets>
142+
</ItemGroup>
143+
144+
<GenerateStaticWebAssetsPropsFile StaticWebAssets="@(FinalV4Assets)" PackagePathPrefix="staticwebassets/V4" TargetPropsFilePath="$(IntermediateOutputPath)IdentityUI.V4.targets" />
145+
<GenerateStaticWebAssetsPropsFile StaticWebAssets="@(FinalV5Assets)" PackagePathPrefix="staticwebassets/V5" TargetPropsFilePath="$(IntermediateOutputPath)IdentityUI.V5.targets" />
121146

122147
<GenerateStaticWebAssetEndpointsPropsFile
123148
StaticWebAssets="@(V4Assets)"
149+
PackagePathPrefix="staticwebassets/V4"
124150
StaticWebAssetEndpoints="@(V4AssetEndpoints)"
125151
TargetPropsFilePath="$(IntermediateOutputPath)IdentityUI.V4.endpoints.targets" />
126152

127153
<GenerateStaticWebAssetEndpointsPropsFile
128154
StaticWebAssets="@(V5Assets)"
155+
PackagePathPrefix="staticwebassets/V5"
129156
StaticWebAssetEndpoints="@(V5AssetEndpoints)"
130157
TargetPropsFilePath="$(IntermediateOutputPath)IdentityUI.V5.endpoints.targets" />
131158

132-
<ComputeStaticWebAssetsTargetPaths Assets="@(V4Assets)" PathPrefix="staticwebassets/V4" AdjustPathsForPack="true">
159+
<ComputeStaticWebAssetsTargetPaths Assets="@(FinalV4Assets)" PathPrefix="staticwebassets/V4" AdjustPathsForPack="true">
133160
<Output TaskParameter="AssetsWithTargetPath" ItemName="_PackStaticWebAssetWithTargetPath" />
134161
</ComputeStaticWebAssetsTargetPaths>
135-
<ComputeStaticWebAssetsTargetPaths Assets="@(V5Assets)" PathPrefix="staticwebassets/V5" AdjustPathsForPack="true">
162+
<ComputeStaticWebAssetsTargetPaths Assets="@(FinalV5Assets)" PathPrefix="staticwebassets/V5" AdjustPathsForPack="true">
136163
<Output TaskParameter="AssetsWithTargetPath" ItemName="_PackStaticWebAssetWithTargetPath" />
137164
</ComputeStaticWebAssetsTargetPaths>
138165

0 commit comments

Comments
 (0)