Skip to content

Commit 508bb66

Browse files
committed
Specifically, this merges [77f38d4 from that repo](AArnott/Library.Template@77f38d4).
2 parents aa48247 + 77f38d4 commit 508bb66

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
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
"powershell": {
6-
"version": "7.5.1",
6+
"version": "7.5.2",
77
"commands": [
88
"pwsh"
99
],

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Refer to https://hub.docker.com/_/microsoft-dotnet-sdk for available versions
2-
FROM mcr.microsoft.com/dotnet/sdk:9.0.301-noble@sha256:f353951d75cd99696c912ba7a29a1c6905fe0c1c7613e12e5318efed40d9b287
2+
FROM mcr.microsoft.com/dotnet/sdk:9.0.303-noble@sha256:af75742bd2f6fd148504951b57a983bc410191729bf543eae467528d1bc175e5
33

44
# Installing mono makes `dotnet test` work without errors even for net472.
55
# But installing it takes a long time, so it's excluded by default.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,6 @@ jobs:
295295
steps:
296296
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
297297
- name: 🔗 Markup Link Checker (mlc)
298-
uses: becheran/mlc@88c9db09b8dabab813a2edd13f955b36aa73657a # v0.22.0
298+
uses: becheran/mlc@18a06b3aa2901ca197de59c8b0b1f54fdba6b3fa # v1.0.0
299299
with:
300300
args: --do-not-warn-for-redirect-to https://learn.microsoft.com*,https://dotnet.microsoft.com/*,https://dev.azure.com/*,https://app.codecov.io/* -p docfx

Directory.Build.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
<EnableDynamicPlatformResolution>true</EnableDynamicPlatformResolution>
1919

2020
<!-- Opt in till https://github.com/NuGet/Home/issues/9803 makes this the default. -->
21-
<!-- Opt back out until an SDK with the fix for https://github.com/NuGet/Home/issues/12177 is generally available. -->
22-
<RestoreUseStaticGraphEvaluation>false</RestoreUseStaticGraphEvaluation>
21+
<RestoreUseStaticGraphEvaluation>true</RestoreUseStaticGraphEvaluation>
2322

2423
<!-- This entire repo has just one version.json file, so compute the version once and share with all projects in a large build. -->
2524
<GitVersionBaseDirectory>$(MSBuildThisFileDirectory)</GitVersionBaseDirectory>

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
</ItemGroup>
4444
<ItemGroup Label="Library.Template">
4545
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
46-
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.1" />
46+
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.3" />
4747
<PackageVersion Include="xunit" Version="2.9.3" />
4848
</ItemGroup>
4949
<ItemGroup>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.301",
3+
"version": "9.0.303",
44
"rollForward": "patch",
55
"allowPrerelease": false
66
}

0 commit comments

Comments
 (0)