Skip to content

Commit bc39e90

Browse files
committed
Upgrade to .NET 10 deps
1 parent bee284f commit bc39e90

File tree

7 files changed

+19
-15
lines changed

7 files changed

+19
-15
lines changed

MyApp.Client/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
import "./.next/types/routes.d.ts";
3+
import "./dist/dev/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

MyApp.Client/package-lock.json

Whitespace-only changes.

MyApp.ServiceInterface/MyApp.ServiceInterface.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<ItemGroup>
1010
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.*" />
1111
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.*" />
12-
<PackageReference Include="ServiceStack" Version="8.*" />
13-
<PackageReference Include="ServiceStack.Ormlite" Version="8.*" />
14-
<PackageReference Include="ServiceStack.Extensions" Version="8.*" />
12+
<PackageReference Include="ServiceStack" Version="10.*" />
13+
<PackageReference Include="ServiceStack.Ormlite" Version="10.*" />
14+
<PackageReference Include="ServiceStack.Extensions" Version="10.*" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

MyApp.ServiceModel/MyApp.ServiceModel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="ServiceStack.Interfaces" Version="8.*" />
10+
<PackageReference Include="ServiceStack.Interfaces" Version="10.*" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

MyApp.Tests/MyApp.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<PackageReference Include="NUnit" Version="4.*" />
1717
<PackageReference Include="NUnit3TestAdapter" Version="5.*" />
1818
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.*" />
19-
<PackageReference Include="ServiceStack" Version="8.*" />
20-
<PackageReference Include="ServiceStack.Kestrel" Version="8.*" />
19+
<PackageReference Include="ServiceStack" Version="10.*" />
20+
<PackageReference Include="ServiceStack.Kestrel" Version="10.*" />
2121
</ItemGroup>
2222

2323
</Project>

MyApp/MyApp.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.*" />
2626
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.*" />
2727
<PackageReference Include="Scalar.AspNetCore" Version="2.11.0" />
28-
<PackageReference Include="ServiceStack" Version="8.*" />
29-
<PackageReference Include="ServiceStack.Mvc" Version="8.*" />
30-
<PackageReference Include="ServiceStack.OpenApi.Microsoft" Version="8.10.1" />
31-
<PackageReference Include="ServiceStack.Server" Version="8.*" />
32-
<PackageReference Include="ServiceStack.Extensions" Version="8.*" />
33-
<PackageReference Include="ServiceStack.Ormlite.Sqlite.Data" Version="8.*" />
34-
<PackageReference Include="ServiceStack.Jobs" Version="8.*" />
35-
<PackageReference Include="ServiceStack.AI.Chat" Version="8.*" />
28+
<PackageReference Include="ServiceStack" Version="10.*" />
29+
<PackageReference Include="ServiceStack.Mvc" Version="10.*" />
30+
<PackageReference Include="ServiceStack.OpenApi.Microsoft" Version="10.*" />
31+
<PackageReference Include="ServiceStack.Server" Version="10.*" />
32+
<PackageReference Include="ServiceStack.Extensions" Version="10.*" />
33+
<PackageReference Include="ServiceStack.Ormlite.Sqlite.Data" Version="10.*" />
34+
<PackageReference Include="ServiceStack.Jobs" Version="10.*" />
35+
<PackageReference Include="ServiceStack.AI.Chat" Version="10.*" />
3636
</ItemGroup>
3737

3838
<ItemGroup>

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ A modern full-stack .NET 10.0 + Next.js 16 project template that combines the po
1212
npx create-net nextjs MyProject
1313
```
1414

15+
## Jumpstart with Copilot
16+
17+
Instantly [scaffold a new App with this template](https://github.com/new?template_name=nextjs&template_owner=NetCoreTemplates) using GitHub Copilot, just describe the features you want and watch Copilot build it!
18+
1519
## Getting Started
1620

1721
Run Server .NET Project (automatically starts both .NET and Next.js dev servers):

0 commit comments

Comments
 (0)