Skip to content

Commit 0db458b

Browse files
authored
Specifically, this merges [574886f from that repo](AArnott/Library.Template@574886f).
2 parents 21a83d3 + 574886f commit 0db458b

File tree

17 files changed

+37
-21
lines changed

17 files changed

+37
-21
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"powershell": {
6-
"version": "7.4.6",
6+
"version": "7.5.0",
77
"commands": [
88
"pwsh"
99
],
@@ -17,7 +17,7 @@
1717
"rollForward": false
1818
},
1919
"nbgv": {
20-
"version": "3.7.112",
20+
"version": "3.7.115",
2121
"commands": [
2222
"nbgv"
2323
],

.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.101-noble
2+
FROM mcr.microsoft.com/dotnet/sdk:9.0.102-noble
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/renovate.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
"matchDatasources": ["dotnet-version", "docker"],
1717
"matchDepNames": ["dotnet-sdk", "mcr.microsoft.com/dotnet/sdk"],
1818
"groupName": "Dockerfile and global.json updates"
19+
},
20+
{
21+
"matchPackageNames": ["*"],
22+
"allowedVersions": "!/-g[a-f0-9]+$/"
1923
}
2024
]
2125
}

.github/workflows/build.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,3 +288,13 @@ jobs:
288288
with:
289289
name: benchmarks-${{ matrix.os }}
290290
path: ${{ runner.temp }}/_artifacts/benchmarks
291+
292+
docs:
293+
name: 📃 Docs
294+
runs-on: ubuntu-latest
295+
steps:
296+
- uses: actions/checkout@v4
297+
- name: 🔗 Markup Link Checker (mlc)
298+
uses: becheran/[email protected]
299+
with:
300+
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

.github/workflows/libtemplate-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
4646
# Pushing commits that add or change files under .github/workflows will cause our workflow to fail.
4747
# But it usually isn't necessary because the target branch already has (or doesn't have) these changes.
48-
# So if the merged doesn't bring in any changes to these files, try the merge locally and push that
48+
# So if the merge doesn't bring in any changes to these files, try the merge locally and push that
4949
# to keep github happy.
5050
if ((git rev-list FETCH_HEAD ^HEAD --count -- .github/workflows) -eq 0) {
5151
# Indeed there are no changes in that area. So merge locally to try to appease GitHub.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This project is actively developed using the following software.
99
It is highly recommended that anyone contributing to this library use the same
1010
software.
1111

12-
1. [Visual Studio 2019][VS]
12+
1. [Visual Studio 2022][VS]
1313
2. [Node.js][NodeJs] v16 (v18 breaks our build)
1414

1515
### Optional additional software

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.12.0" />
46-
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.0" />
46+
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.2" />
4747
<PackageVersion Include="xunit" Version="2.9.2" />
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.101",
3+
"version": "9.0.102",
44
"rollForward": "patch",
55
"allowPrerelease": false
66
}

test/Cake.GitVersioning.Tests/app.config

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "https://xunit.net/schema/current/xunit.runner.schema.json",
3+
"shadowCopy": false
4+
}

0 commit comments

Comments
 (0)