Skip to content

Commit 4e94b6d

Browse files
committed
Upgrade to .NET 10 deps
1 parent 5274a68 commit 4e94b6d

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

MyApp.ServiceInterface/MyApp.ServiceInterface.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore"
1515
Version="10.*" />
1616
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.*" />
17-
<PackageReference Include="ServiceStack" Version="8.*" />
18-
<PackageReference Include="ServiceStack.Extensions" Version="8.*" />
19-
<PackageReference Include="ServiceStack.Ormlite" Version="8.*" />
17+
<PackageReference Include="ServiceStack" Version="10.*" />
18+
<PackageReference Include="ServiceStack.Extensions" Version="10.*" />
19+
<PackageReference Include="ServiceStack.Ormlite" Version="10.*" />
2020
</ItemGroup>
2121

2222
</Project>

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
</Project>

MyApp.Tests/MyApp.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
<PackageReference Include="NUnit" Version="4.*" />
1919
<PackageReference Include="NUnit3TestAdapter" Version="5.*" />
2020
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.*" />
21-
<PackageReference Include="ServiceStack" Version="8.*" />
22-
<PackageReference Include="ServiceStack.Kestrel" Version="8.*" />
21+
<PackageReference Include="ServiceStack" Version="10.*" />
22+
<PackageReference Include="ServiceStack.Kestrel" Version="10.*" />
2323
</ItemGroup>
2424

2525
</Project>

MyApp/MyApp.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.*" />
2929
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.*" />
3030
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.*" />
31-
<PackageReference Include="ServiceStack" Version="8.*" />
32-
<PackageReference Include="ServiceStack.Mvc" Version="8.*" />
33-
<PackageReference Include="ServiceStack.Server" Version="8.*" />
34-
<PackageReference Include="ServiceStack.Extensions" Version="8.*" />
35-
<PackageReference Include="ServiceStack.Ormlite.Sqlite.Data" Version="8.*" />
36-
<PackageReference Include="ServiceStack.Jobs" Version="8.*" />
31+
<PackageReference Include="ServiceStack" Version="10.*" />
32+
<PackageReference Include="ServiceStack.Mvc" Version="10.*" />
33+
<PackageReference Include="ServiceStack.Server" Version="10.*" />
34+
<PackageReference Include="ServiceStack.Extensions" Version="10.*" />
35+
<PackageReference Include="ServiceStack.Ormlite.Sqlite.Data" Version="10.*" />
36+
<PackageReference Include="ServiceStack.Jobs" Version="10.*" />
3737
</ItemGroup>
3838

3939
<PropertyGroup>

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 next-static MyProject
1313
```
1414

15+
## Jumpstart with Copilot
16+
17+
Instantly [scaffold a new App with this template](https://github.com/new?template_name=next-static&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)