Skip to content

Commit 782f237

Browse files
committed
Merge branch 'release/9.0.2xx' of https://github.com/dotnet/sdk into darc-release/9.0.2xx-70b25a6b-4bee-4464-86d4-85e04043ead6
2 parents 1556334 + 8ade086 commit 782f237

File tree

154 files changed

+928
-755
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+928
-755
lines changed

.vsts-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ extends:
9797
parameters:
9898
pool:
9999
name: $(DncEngInternalBuildPool)
100-
image: 1es-windows-2022
100+
image: windows.vs2022.amd64
101101
os: windows
102102
helixTargetQueue: windows.amd64.vs2022.pre
103103
oneESCompat:

NuGet.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
<!-- End: Package sources from dotnet-aspire -->
88
<!-- Begin: Package sources from dotnet-aspnetcore -->
99
<!-- End: Package sources from dotnet-aspnetcore -->
10+
<!-- Begin: Package sources from dotnet-emsdk -->
11+
<!-- End: Package sources from dotnet-emsdk -->
1012
<!-- Begin: Package sources from DotNet-msbuild-Trusted -->
1113
<!-- End: Package sources from DotNet-msbuild-Trusted -->
1214
<!-- Begin: Package sources from dotnet-roslyn-analyzers -->
@@ -15,6 +17,7 @@
1517
<!-- End: Package sources from dotnet-runtime -->
1618
<!-- Begin: Package sources from dotnet-templating -->
1719
<add key="darc-pub-dotnet-templating-44a0b49" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-44a0b49c/nuget/v3/index.json" />
20+
<add key="darc-pub-dotnet-templating-44a0b49-2" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-44a0b49c-2/nuget/v3/index.json" />
1821
<add key="darc-pub-dotnet-templating-44a0b49-1" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-templating-44a0b49c-1/nuget/v3/index.json" />
1922
<!-- End: Package sources from dotnet-templating -->
2023
<!-- Begin: Package sources from dotnet-windowsdesktop -->

eng/Version.Details.xml

Lines changed: 182 additions & 182 deletions
Large diffs are not rendered by default.

eng/Versions.props

Lines changed: 81 additions & 79 deletions
Large diffs are not rendered by default.

eng/pipelines/templates/jobs/sdk-job-matrix.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ parameters:
1212
runTestsAsTool: true
1313
# This job uses the build step for testing, so the extra test step is not necessary.
1414
runTests: false
15-
- categoryName: TemplateEngine
16-
testProjects: $(Build.SourcesDirectory)/test/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj;$(Build.SourcesDirectory)/test/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj
17-
publishXunitResults: true
15+
# Turn off template engine runs on Windows temporarily until agent images are updated
16+
#- categoryName: TemplateEngine
17+
# testProjects: $(Build.SourcesDirectory)/test/Microsoft.TemplateEngine.Cli.UnitTests/Microsoft.TemplateEngine.Cli.UnitTests.csproj;$(Build.SourcesDirectory)/test/dotnet-new.Tests/dotnet-new.IntegrationTests.csproj
18+
# publishXunitResults: true
1819
- categoryName: AoT
1920
runAoTTests: true
2021
### LINUX ###

src/BuiltInTools/AspireService/AspireServerService.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using System.Collections.Immutable;
54
using System.Net;
65
using System.Net.WebSockets;
76
using System.Security.Cryptography;
@@ -13,13 +12,9 @@
1312
using Microsoft.AspNetCore.Http;
1413
using Microsoft.Extensions.Hosting;
1514
using Microsoft.Extensions.Logging;
16-
using Microsoft.WebTools.AspireServer.Contracts;
17-
using Microsoft.WebTools.AspireServer.Helpers;
18-
using Microsoft.WebTools.AspireServer.Models;
19-
using Microsoft.WebTools.AspireService.Helpers;
2015
using IAsyncDisposable = System.IAsyncDisposable;
2116

22-
namespace Microsoft.WebTools.AspireServer;
17+
namespace Aspire.Tools.Service;
2318

2419
/// <summary>
2520
/// Implementation of the AspireServerService. A new instance of this service will be created for each

src/BuiltInTools/AspireService/Contracts/IAspireServerEvents.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
namespace Microsoft.WebTools.AspireServer.Contracts;
4+
namespace Aspire.Tools.Service;
55

66
internal interface IAspireServerEvents
77
{

src/BuiltInTools/AspireService/Helpers/CertGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Security.Cryptography;
55
using System.Security.Cryptography.X509Certificates;
66

7-
namespace Microsoft.WebTools.AspireServer;
7+
namespace Aspire.Tools.Service;
88

99
internal static class CertGenerator
1010
{

src/BuiltInTools/AspireService/Helpers/ExceptionExtensions.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using System;
5-
6-
namespace Microsoft.WebTools.AspireServer.Helpers;
4+
namespace Aspire.Tools.Service;
75

86
internal static class ExceptionExtensions
97
{

src/BuiltInTools/AspireService/Helpers/HttpContextExtensions.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using System;
5-
using System.Threading;
6-
using System.Threading.Tasks;
74
using Microsoft.AspNetCore.Http;
8-
using Microsoft.WebTools.AspireServer.Contracts;
9-
using Microsoft.WebTools.AspireServer.Models;
105

11-
namespace Microsoft.WebTools.AspireServer.Helpers;
6+
namespace Aspire.Tools.Service;
127

138
internal static class HttpContextExtensions
149
{

0 commit comments

Comments
 (0)