Skip to content

Commit a711f17

Browse files
authored
Merge branch 'main' into remove-comment-from-console-template
2 parents 0876982 + 8f80ed2 commit a711f17

File tree

331 files changed

+6664
-3898
lines changed

Some content is hidden

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

331 files changed

+6664
-3898
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,6 @@ cmake/
4242

4343
# MSBuild Logs
4444
**/MSBuild_Logs/MSBuild_pid-*.failure.txt
45+
46+
# Test results
47+
**/*.trx

.vsts-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ trigger:
55
branches:
66
include:
77
- main
8-
- release/9.0.1xx-preview*
8+
- release/9.0.1xx
99
- internal/release/*
1010
- exp/*
1111

@@ -105,7 +105,7 @@ extends:
105105
templateFolderName: templates-official
106106
publishTaskPrefix: 1ES.
107107
runtimeSourceProperties: /p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
108-
locBranch: release/8.0.4xx
108+
locBranch: release/9.0.1xx
109109
${{ if and(eq(parameters.runTestBuild, false), ne(variables['Build.Reason'], 'PullRequest')) }}:
110110
timeoutInMinutes: 90
111111
windowsJobParameterSets:

.vsts-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ stages:
3737
parameters:
3838
pool:
3939
name: $(DncEngPublicBuildPool)
40-
demands: ImageOverride -equals 1es-windows-2022-open
40+
demands: ImageOverride -equals windows.vs2022.amd64.open
4141
os: windows
4242
helixTargetQueue: windows.amd64.vs2022.pre.open
4343

@@ -69,4 +69,4 @@ stages:
6969
timeoutInMinutes: 30
7070

7171
############### DOTNET-FORMAT ###############
72-
- template: /eng/dotnet-format/dotnet-format-integration.yml
72+
- template: /eng/dotnet-format/dotnet-format-integration.yml

Directory.Build.props

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,8 @@
3838
<ToolsetTargetFramework>$(SdkTargetFramework)</ToolsetTargetFramework>
3939
<VisualStudioServiceTargetFramework>net8.0</VisualStudioServiceTargetFramework>
4040

41-
<!-- VS for Mac may run on a lower version of .NET than the SDK is targeting, but needs to load the resolvers. So the resolvers and dependencies
42-
may target a lower version of .NET -->
43-
<ResolverTargetFramework>net8.0</ResolverTargetFramework>
44-
<!-- Source build does not need to worry about running on VS for Mac -->
45-
<ResolverTargetFramework Condition="'$(DotNetBuildSourceOnly)' == 'true'">$(SdkTargetFramework)</ResolverTargetFramework>
41+
<!-- We used to have scenarios where the MSBuild host (VSMac) had an older .NET, but don't any more. -->
42+
<ResolverTargetFramework>$(SdkTargetFramework)</ResolverTargetFramework>
4643

4744
<!-- NU1701 Disable implicit package target fallback, and disable warning for when we explicitly add it (currently needed for
4845
Microsoft.ApplicationInsights) -->

Directory.Packages.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
<PackageVersion Include="Microsoft.DiaSymReader" Version="$(MicrosoftDiaSymReaderVersion)" />
3434
<PackageVersion Include="Microsoft.Deployment.DotNet.Releases" Version="$(MicrosoftDeploymentDotNetReleasesVersion)" />
3535
<PackageVersion Include="Microsoft.DotNet.Build.Tasks.Installers" Version="$(MicrosoftDotNetBuildTasksInstallersPackageVersion)" />
36+
<PackageVersion Include="Microsoft.DotNet.DarcLib" Version="$(MicrosoftDotNetDarcLibVersion)" />
3637
<PackageVersion Include="Microsoft.DotNet.Installer.Windows.Security.TestData" Version="$(MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion)" />
3738
<PackageVersion Include="Microsoft.DotNet.SignCheck" Version="$(ArcadeSdkVersion)" />
3839
<PackageVersion Include="Microsoft.DotNet.XUnitExtensions" Version="$(MicrosoftDotNetXUnitExtensionsVersion)" />

NuGet.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<clear />
55
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
66
<!-- Begin: Package sources from dotnet-aspire -->
7-
<add key="darc-pub-dotnet-aspire-d304c5f" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-aspire-d304c5f6/nuget/v3/index.json" />
87
<!-- End: Package sources from dotnet-aspire -->
98
<!-- Begin: Package sources from dotnet-aspnetcore -->
109
<!-- End: Package sources from dotnet-aspnetcore -->

build/RunTestsOnHelix.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ set DOTNET_ROOT=%HELIX_CORRELATION_PAYLOAD%\d
99
set PATH=%DOTNET_ROOT%;%PATH%
1010
set DOTNET_MULTILEVEL_LOOKUP=0
1111
set TestFullMSBuild=%1
12-
set BuildWithNetFrameworkHostedCompiler=false
1312

1413
set TestExecutionDirectory=%CD%\testExecutionDirectory
1514
mkdir %TestExecutionDirectory%
@@ -38,6 +37,7 @@ REM We downloaded a special zip of files to the .nuget folder so add that as a s
3837
dotnet nuget list source --configfile %TestExecutionDirectory%\nuget.config
3938
PowerShell -ExecutionPolicy ByPass "dotnet nuget locals all -l | ForEach-Object { $_.Split(' ')[1]} | Where-Object{$_ -like '*cache'} | Get-ChildItem -Recurse -File -Filter '*.dat' | Measure"
4039
dotnet nuget add source %DOTNET_ROOT%\.nuget --configfile %TestExecutionDirectory%\nuget.config
40+
if exist %TestExecutionDirectory%\Testpackages dotnet nuget add source %TestExecutionDirectory%\Testpackages --name testpackages --configfile %TestExecutionDirectory%\nuget.config
4141

4242
dotnet nuget remove source dotnet6-transport --configfile %TestExecutionDirectory%\nuget.config
4343
dotnet nuget remove source dotnet6-internal-transport --configfile %TestExecutionDirectory%\nuget.config

0 commit comments

Comments
 (0)