Skip to content

Commit 84aebcb

Browse files
[main] Update dependencies from devdiv/DevDiv/vs-code-coverage, dotnet/arcade (#7154)
[main] Update dependencies from devdiv/DevDiv/vs-code-coverage, dotnet/arcade - Fix warning - Add dotnet11 feed - dotnet11 - Fix analyzer warning - Fix warning - dotnet11 - Combine consecutive Path.Combine - Fix test - Fix test - Update to 11.0.100-alpha.1.26062.101 - Fix warnings - Fix more warnings - Disable annoying analyzer - Merge branch 'main' into darc-main-e5b7fb88-ffc6-4df2-9bbc-7a22a08ca40a - Merge branch 'main' into darc-main-e5b7fb88-ffc6-4df2-9bbc-7a22a08ca40a - Latest main
1 parent f2ca2cf commit 84aebcb

File tree

32 files changed

+64
-56
lines changed

32 files changed

+64
-56
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ dotnet_diagnostic.IDE0270.severity = warning
343343
dotnet_diagnostic.IDE0280.severity = warning
344344

345345
# IDE0370: Remove unnecessary suppression
346-
dotnet_diagnostic.IDE0370.severity = warning
346+
dotnet_diagnostic.IDE0370.severity = none
347347

348348
# IDE1005: Use conditional delegate call
349349
dotnet_diagnostic.IDE1005.severity = warning

NuGet.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
1818
<add key="dotnet9" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json" />
1919
<add key="dotnet10" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10/nuget/v3/index.json" />
20+
<add key="dotnet11" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet11/nuget/v3/index.json" />
2021
</packageSources>
2122
<activePackageSource>
2223
<add key="All" value="(Aggregate source)" />
@@ -47,5 +48,8 @@
4748
<packageSource key="dotnet10">
4849
<package pattern="*" />
4950
</packageSource>
51+
<packageSource key="dotnet11">
52+
<package pattern="*" />
53+
</packageSource>
5054
</packageSourceMapping>
5155
</configuration>

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Dependencies>
33
<ToolsetDependencies>
4-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="11.0.0-beta.25617.1">
4+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="11.0.0-beta.26064.2">
55
<Uri>https://github.com/dotnet/arcade</Uri>
6-
<Sha>47a8a69721dfea57b82121ac1458d2f5bba6abd2</Sha>
6+
<Sha>24b29186c16793fff7079515483f26585e5b2881</Sha>
77
</Dependency>
8-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="11.0.0-beta.25617.1">
8+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="11.0.0-beta.26064.2">
99
<Uri>https://github.com/dotnet/arcade</Uri>
10-
<Sha>47a8a69721dfea57b82121ac1458d2f5bba6abd2</Sha>
10+
<Sha>24b29186c16793fff7079515483f26585e5b2881</Sha>
1111
</Dependency>
12-
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="11.0.0-beta.25617.1">
12+
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="11.0.0-beta.26064.2">
1313
<Uri>https://github.com/dotnet/arcade</Uri>
14-
<Sha>47a8a69721dfea57b82121ac1458d2f5bba6abd2</Sha>
14+
<Sha>24b29186c16793fff7079515483f26585e5b2881</Sha>
1515
</Dependency>
16-
<Dependency Name="Microsoft.Testing.Extensions.CodeCoverage" Version="18.4.0-preview.26062.2">
16+
<Dependency Name="Microsoft.Testing.Extensions.CodeCoverage" Version="18.4.0-preview.26064.4">
1717
<Uri>https://dev.azure.com/devdiv/DevDiv/_git/vs-code-coverage</Uri>
18-
<Sha>74ce4948abff2b900d035bf7fd3a09f4b76f4e62</Sha>
18+
<Sha>227c65aeacd58d1e2549c990f78d185fa811e879</Sha>
1919
</Dependency>
2020
<Dependency Name="MSTest" Version="4.1.0-preview.26064.3">
2121
<Uri>https://github.com/microsoft/testfx</Uri>

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
88
</PropertyGroup>
99
<PropertyGroup Label="MSTest prod dependencies - darc updated">
10-
<MicrosoftDotNetBuildTasksTemplatingPackageVersion>11.0.0-beta.25617.1</MicrosoftDotNetBuildTasksTemplatingPackageVersion>
11-
<MicrosoftTestingExtensionsCodeCoverageVersion>18.4.0-preview.26062.2</MicrosoftTestingExtensionsCodeCoverageVersion>
10+
<MicrosoftDotNetBuildTasksTemplatingPackageVersion>11.0.0-beta.26064.2</MicrosoftDotNetBuildTasksTemplatingPackageVersion>
11+
<MicrosoftTestingExtensionsCodeCoverageVersion>18.4.0-preview.26064.4</MicrosoftTestingExtensionsCodeCoverageVersion>
1212
<!-- empty line to avoid merge conflicts for darc PRs to update CC and MSTest+MTP -->
1313
<MSTestVersion>4.1.0-preview.26064.3</MSTestVersion>
1414
<MicrosoftTestingPlatformVersion>2.1.0-preview.26064.3</MicrosoftTestingPlatformVersion>

eng/common/core-templates/job/publish-build-assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# If it's not devdiv, it's dnceng
8181
${{ if ne(variables['System.TeamProject'], 'DevDiv') }}:
8282
name: NetCore1ESPool-Publishing-Internal
83-
image: windows.vs2019.amd64
83+
image: windows.vs2022.amd64
8484
os: windows
8585
steps:
8686
- ${{ if eq(parameters.is1ESPipeline, '') }}:

eng/common/core-templates/post-build/post-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,11 +293,11 @@ stages:
293293
${{ else }}:
294294
${{ if eq(parameters.is1ESPipeline, true) }}:
295295
name: NetCore1ESPool-Publishing-Internal
296-
image: windows.vs2019.amd64
296+
image: windows.vs2022.amd64
297297
os: windows
298298
${{ else }}:
299299
name: NetCore1ESPool-Publishing-Internal
300-
demands: ImageOverride -equals windows.vs2019.amd64
300+
demands: ImageOverride -equals windows.vs2022.amd64
301301
steps:
302302
- template: /eng/common/core-templates/post-build/setup-maestro-vars.yml
303303
parameters:

eng/common/core-templates/steps/install-microbuild-impl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ parameters:
1818
type: boolean
1919

2020
steps:
21-
- ${{ if eq(parameters.enablePreviewMicrobuild, 'true') }}:
21+
- ${{ if eq(parameters.enablePreviewMicrobuild, true) }}:
2222
- task: MicroBuildSigningPluginPreview@4
2323
displayName: Install Preview MicroBuild plugin
2424
inputs: ${{ parameters.microbuildTaskInputs }}

eng/common/core-templates/steps/source-index-stage1-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ steps:
1414
workingDirectory: $(Agent.TempDirectory)
1515

1616
- script: |
17-
$(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version ${{parameters.sourceIndexProcessBinlogPackageVersion}} --source ${{parameters.SourceIndexPackageSource}} --tool-path $(Agent.TempDirectory)/.source-index/tools
18-
$(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version ${{parameters.sourceIndexUploadPackageVersion}} --source ${{parameters.SourceIndexPackageSource}} --tool-path $(Agent.TempDirectory)/.source-index/tools
17+
$(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version ${{parameters.sourceIndexProcessBinlogPackageVersion}} --source ${{parameters.sourceIndexPackageSource}} --tool-path $(Agent.TempDirectory)/.source-index/tools
18+
$(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version ${{parameters.sourceIndexUploadPackageVersion}} --source ${{parameters.sourceIndexPackageSource}} --tool-path $(Agent.TempDirectory)/.source-index/tools
1919
displayName: "Source Index: Download netsourceindex Tools"
2020
# Set working directory to temp directory so 'dotnet' doesn't try to use global.json and use the repo's sdk.
2121
workingDirectory: $(Agent.TempDirectory)

eng/common/native/install-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ case "$os" in
2727
libssl-dev libkrb5-dev pigz cpio
2828

2929
localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
30-
elif [ "$ID" = "fedora" ] || [ "$ID" = "rhel" ] || [ "$ID" = "azurelinux" ] || [ "$ID" = "centos"]; then
30+
elif [ "$ID" = "fedora" ] || [ "$ID" = "rhel" ] || [ "$ID" = "azurelinux" ] || [ "$ID" = "centos" ]; then
3131
pkg_mgr="$(command -v tdnf 2>/dev/null || command -v dnf)"
3232
$pkg_mgr install -y cmake llvm lld lldb clang python curl libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio
3333
elif [ "$ID" = "amzn" ]; then

eng/common/templates/variables/pool-providers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#
2424
# pool:
2525
# name: $(DncEngInternalBuildPool)
26-
# demands: ImageOverride -equals windows.vs2019.amd64
26+
# demands: ImageOverride -equals windows.vs2022.amd64
2727
variables:
2828
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
2929
- template: /eng/common/templates-official/variables/pool-providers.yml

0 commit comments

Comments
 (0)