Skip to content

Commit 0d3497c

Browse files
Merging main into darc-main-6a483e62-9a15-475d-a31b-7c7d1c96cb9f
2 parents 8a9eb9a + 7a7cb3e commit 0d3497c

File tree

4 files changed

+18
-17
lines changed

4 files changed

+18
-17
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"microsoft.dotnet.darc": {
6-
"version": "1.1.0-beta.25277.2",
6+
"version": "1.1.0-beta.25279.2",
77
"commands": [
88
"darc"
99
]

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -538,21 +538,21 @@
538538
<Uri>https://github.com/dotnet/dotnet</Uri>
539539
<Sha>0a01b394b186e190a80cb55740c13f6293cf5446</Sha>
540540
</Dependency>
541-
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.25277.2">
541+
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.25279.2">
542542
<Uri>https://github.com/dotnet/arcade-services</Uri>
543-
<Sha>55b90ec8fea44527a4ab211cfe3ef50ccd608f74</Sha>
543+
<Sha>87c79a328247ccec3af39deaadbd138278451e6a</Sha>
544544
</Dependency>
545-
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.25277.2">
545+
<Dependency Name="Microsoft.DotNet.DarcLib" Version="1.1.0-beta.25279.2">
546546
<Uri>https://github.com/dotnet/arcade-services</Uri>
547-
<Sha>55b90ec8fea44527a4ab211cfe3ef50ccd608f74</Sha>
547+
<Sha>87c79a328247ccec3af39deaadbd138278451e6a</Sha>
548548
</Dependency>
549-
<Dependency Name="Microsoft.Testing.Platform" Version="1.8.0-preview.25277.4">
549+
<Dependency Name="Microsoft.Testing.Platform" Version="1.8.0-preview.25279.5">
550550
<Uri>https://github.com/microsoft/testfx</Uri>
551-
<Sha>77c0915dfca9d2f0e9acdbced9be391d4f7f1dd9</Sha>
551+
<Sha>3ad345b8c799f4bea89e534acdf2cd70b3055e2d</Sha>
552552
</Dependency>
553-
<Dependency Name="MSTest" Version="3.10.0-preview.25277.4">
553+
<Dependency Name="MSTest" Version="3.10.0-preview.25279.5">
554554
<Uri>https://github.com/microsoft/testfx</Uri>
555-
<Sha>77c0915dfca9d2f0e9acdbced9be391d4f7f1dd9</Sha>
555+
<Sha>3ad345b8c799f4bea89e534acdf2cd70b3055e2d</Sha>
556556
</Dependency>
557557
<Dependency Name="Microsoft.Extensions.Configuration.Ini" Version="10.0.0-preview.6.25278.103">
558558
<Uri>https://github.com/dotnet/dotnet</Uri>

eng/Versions.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<UsingToolVSSDK>true</UsingToolVSSDK>
3131
<FlagNetStandard1XDependencies Condition="'$(DotNetBuildSourceOnly)' == 'true'">true</FlagNetStandard1XDependencies>
3232
<!-- This property is only used in the dotnet test integration tests. -->
33-
<MicrosoftTestingPlatformVersion>1.8.0-preview.25277.4</MicrosoftTestingPlatformVersion>
33+
<MicrosoftTestingPlatformVersion>1.8.0-preview.25279.5</MicrosoftTestingPlatformVersion>
3434
</PropertyGroup>
3535
<PropertyGroup Label="Servicing version information">
3636
<VersionFeature21>30</VersionFeature21>
@@ -89,7 +89,7 @@
8989
</PropertyGroup>
9090
<PropertyGroup>
9191
<!-- Dependency from https://github.com/dotnet/arcade-services -->
92-
<MicrosoftDotNetDarcLibVersion>1.1.0-beta.25277.2</MicrosoftDotNetDarcLibVersion>
92+
<MicrosoftDotNetDarcLibVersion>1.1.0-beta.25279.2</MicrosoftDotNetDarcLibVersion>
9393
</PropertyGroup>
9494
<PropertyGroup>
9595
<!-- Dependency from https://github.com/dotnet/aspire -->
@@ -322,7 +322,7 @@
322322
<AwesomeAssertionsVersion>8.0.2</AwesomeAssertionsVersion>
323323
<AwesomeAssertionsJsonVersion>8.0.0</AwesomeAssertionsJsonVersion>
324324
<MoqPackageVersion>4.18.4</MoqPackageVersion>
325-
<MSTestVersion>3.10.0-preview.25277.4</MSTestVersion>
325+
<MSTestVersion>3.10.0-preview.25279.5</MSTestVersion>
326326
<XunitCombinatorialVersion>1.3.2</XunitCombinatorialVersion>
327327
<MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>8.0.0-beta.23607.1</MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>
328328
</PropertyGroup>

src/BlazorWasmSdk/Targets/Microsoft.NET.Sdk.BlazorWebAssembly.6_0.targets

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ Copyright (c) .NET Foundation. All rights reserved.
3737
<UsingTask TaskName="Microsoft.NET.Sdk.BlazorWebAssembly.GenerateBlazorBootExtensionJson" AssemblyFile="$(_BlazorWebAssemblySdkTasksAssembly)" />
3838

3939
<PropertyGroup>
40+
<_TargetingNETBefore80>$([MSBuild]::VersionLessThan('$(TargetFrameworkVersion)', '8.0'))</_TargetingNETBefore80>
41+
<_TargetingNET80OrLater>$([MSBuild]::VersionGreaterThanOrEquals('$(TargetFrameworkVersion)', '8.0'))</_TargetingNET80OrLater>
42+
<_TargetingNETBefore100>$([MSBuild]::VersionLessThan('$(TargetFrameworkVersion)', '10.0'))</_TargetingNETBefore100>
43+
<_TargetingNET100OrLater>$([MSBuild]::VersionGreaterThanOrEquals('$(TargetFrameworkVersion)', '10.0'))</_TargetingNET100OrLater>
44+
4045
<SelfContained>true</SelfContained>
4146
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
4247

@@ -48,13 +53,9 @@ Copyright (c) .NET Foundation. All rights reserved.
4853
<EnableUnsafeUTF7Encoding Condition="'$(EnableUnsafeUTF7Encoding)' == ''">false</EnableUnsafeUTF7Encoding>
4954
<HttpActivityPropagationSupport Condition="'$(HttpActivityPropagationSupport)' == ''">false</HttpActivityPropagationSupport>
5055
<DebuggerSupport Condition="'$(DebuggerSupport)' == '' and '$(Configuration)' != 'Debug'">false</DebuggerSupport>
51-
<BlazorCacheBootResources Condition="'$(BlazorCacheBootResources)' == ''">true</BlazorCacheBootResources>
56+
<BlazorCacheBootResources Condition="'$(BlazorCacheBootResources)' == '' and '$(_TargetingNET100OrLater)' != 'true'">true</BlazorCacheBootResources>
5257
<BlazorFingerprintBlazorJs Condition="'$(BlazorFingerprintBlazorJs)' == '' and '$(OverrideHtmlAssetPlaceholders)' == 'true'">true</BlazorFingerprintBlazorJs>
5358

54-
<_TargetingNETBefore80>$([MSBuild]::VersionLessThan('$(TargetFrameworkVersion)', '8.0'))</_TargetingNETBefore80>
55-
<_TargetingNET80OrLater>$([MSBuild]::VersionGreaterThanOrEquals('$(TargetFrameworkVersion)', '8.0'))</_TargetingNET80OrLater>
56-
<_TargetingNETBefore100>$([MSBuild]::VersionLessThan('$(TargetFrameworkVersion)', '10.0'))</_TargetingNETBefore100>
57-
5859
<!-- 8 < .NET we want to fingerprint dotnet.js because it's part of the blazor.boot.json which is loaded from blazor.webassembly.js -->
5960
<!-- 8 <= .NET < 10 we don't want to fingerprint dotnet.js because it's path is hardcoded in blazor.webassembly.js -->
6061
<!-- 10 <= .NET we want to leave fingerprinting to WasmSDK because it knows if import maps where applied -->

0 commit comments

Comments
 (0)