Skip to content

Commit c338d64

Browse files
committed
feat: update dotnet-tools and project files for .NET 10 support
1 parent eb3589b commit c338d64

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
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
"tomware.releasy": {
6-
"version": "0.12.1",
6+
"version": "0.13.0",
77
"commands": [
88
"releasy"
99
],
@@ -17,4 +17,4 @@
1717
"rollForward": true
1818
}
1919
}
20-
}
20+
}

build/Targets.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@
6363
Run("dotnet", $"clean {solution} -c Release -v m --nologo");
6464
});
6565

66-
Target(Build, dependsOn: [Clean], () =>
66+
Target(Build, [Clean], () =>
6767
{
6868
Run("dotnet", $"build {solution} -c Release --nologo");
6969
});
7070

71-
Target(Test, dependsOn: [Build], () =>
71+
Target(Test, [Build], () =>
7272
{
7373
var projects = GetFiles(".", $"*.csproj");
7474
foreach (var project in projects.OrderBy(x => x))
@@ -80,7 +80,7 @@
8080
}
8181
});
8282

83-
Target(Release, dependsOn: [Test], () =>
83+
Target(Release, [Test], () =>
8484
{
8585
if (string.IsNullOrWhiteSpace(versionOption.Value()))
8686
{
@@ -118,7 +118,7 @@
118118
}
119119
});
120120

121-
Target(Pack, dependsOn: [Build, CleanArtifacts], () =>
121+
Target(Pack, [Build, CleanArtifacts], () =>
122122
{
123123
if (string.IsNullOrWhiteSpace(versionOption.Value()))
124124
{
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"Id": "e4c0cf1f-5cde-4e9b-80f8-9dcbdc5433e3",
3+
"IssueId": "",
4+
"Prefix": "Added",
5+
"Tag": "",
6+
"Message": "Added support for .NET 10",
7+
"CreatedAt": "2025-12-03T13:42:17.861799+00:00",
8+
"CreatedBy": "thomasduft"
9+
}

samples/WebApi/WebApi.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.11" />
1212
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="9.0.11" />
1313
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.11" />
14-
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="10.0.0" />
1514

1615
<PackageReference Include="Quartz.Extensions.Hosting" Version="3.15.1" />
1716
<PackageReference Include="OpenIddict.AspNetCore" Version="7.2.0" />

0 commit comments

Comments
 (0)