Skip to content

Commit 9a813df

Browse files
Re-Bootstrap Source Build to .NET 10.0.100-preview.4.25210.1 (#48395)
Co-authored-by: Viktor Hofer <[email protected]>
1 parent 5f2ec16 commit 9a813df

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

src/SourceBuild/content/eng/Version.Details.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<ProductDependencies>
33
</ProductDependencies>
44
<ToolsetDependencies>
5-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.25202.1">
5+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.25209.3">
66
<Uri>https://github.com/dotnet/arcade</Uri>
7-
<Sha>3fddad170a95109a19a1fee78a83a87cd2e2bb79</Sha>
7+
<Sha>03b4b258fc72e5663f2ad701df5d70129aa2df8a</Sha>
88
</Dependency>
99
<Dependency Name="Microsoft.DotNet.VersionTools" Version="10.0.0-beta.25110.3">
1010
<Uri>https://github.com/dotnet/arcade</Uri>
11-
<Sha>3fddad170a95109a19a1fee78a83a87cd2e2bb79</Sha>
11+
<Sha>03b4b258fc72e5663f2ad701df5d70129aa2df8a</Sha>
1212
</Dependency>
1313
</ToolsetDependencies>
1414
</Dependencies>

src/SourceBuild/content/eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
of a .NET major or minor release, prebuilts may be needed. When the release is mature, prebuilts
2424
are not necessary, and this property is removed from the file.
2525
-->
26-
<PrivateSourceBuiltSdkVersion>10.0.100-preview.4.25203.1</PrivateSourceBuiltSdkVersion>
27-
<PrivateSourceBuiltArtifactsVersion>10.0.100-preview.4.25203.1</PrivateSourceBuiltArtifactsVersion>
26+
<PrivateSourceBuiltSdkVersion>10.0.100-preview.4.25210.1</PrivateSourceBuiltSdkVersion>
27+
<PrivateSourceBuiltArtifactsVersion>10.0.100-preview.4.25210.1</PrivateSourceBuiltArtifactsVersion>
2828
<!-- arcade dependencies -->
2929
<MicrosoftDotNetVersionToolsVersion>10.0.0-beta.25110.3</MicrosoftDotNetVersionToolsVersion>
3030
<!-- command-line-api dependencies -->
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"tools": {
3-
"dotnet": "10.0.100-preview.4.25203.20"
3+
"dotnet": "10.0.100-preview.4.25209.46"
44
},
55
"msbuild-sdks": {
66
"Microsoft.Build.NoTargets": "3.7.0",
77
"Microsoft.Build.Traversal": "3.4.0",
8-
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25202.1"
8+
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25209.3"
99
}
1010
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
From 479ec304ff25b58728f6b3ec8cd33a604f953ec1 Mon Sep 17 00:00:00 2001
2+
From: Viktor Hofer <[email protected]>
3+
Date: Sat, 12 Apr 2025 10:08:34 +0200
4+
Subject: [PATCH] Resolve NU1510 as System.Net.ServerSentEvents is inbox now
5+
6+
Backport: https://github.com/dotnet/aspnetcore/pull/61467
7+
8+
---
9+
.../src/Microsoft.AspNetCore.Http.Connections.Client.csproj | 2 +-
10+
1 file changed, 1 insertion(+), 1 deletion(-)
11+
12+
diff --git a/src/SignalR/clients/csharp/Http.Connections.Client/src/Microsoft.AspNetCore.Http.Connections.Client.csproj b/src/SignalR/clients/csharp/Http.Connections.Client/src/Microsoft.AspNetCore.Http.Connections.Client.csproj
13+
index 7c9977be80e2..4086df48687e 100644
14+
--- a/src/SignalR/clients/csharp/Http.Connections.Client/src/Microsoft.AspNetCore.Http.Connections.Client.csproj
15+
+++ b/src/SignalR/clients/csharp/Http.Connections.Client/src/Microsoft.AspNetCore.Http.Connections.Client.csproj
16+
@@ -25,7 +25,7 @@
17+
<Reference Include="Microsoft.AspNetCore.Http.Connections.Common" />
18+
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
19+
<Reference Include="Microsoft.Extensions.Options" />
20+
- <Reference Include="System.Net.ServerSentEvents" />
21+
+ <Reference Include="System.Net.ServerSentEvents" Condition="'$(TargetFramework)' != '$(DefaultNetCoreTargetFramework)'" />
22+
</ItemGroup>
23+
24+
<ItemGroup Condition="'$(TargetFramework)' == '$(DefaultNetFxTargetFramework)' OR '$(MSBuildRestoreSessionId)' == ''">

0 commit comments

Comments
 (0)