Skip to content

Commit 1b44b07

Browse files
committed
Update sample app paths to .NET 10
1 parent e058fe4 commit 1b44b07

89 files changed

Lines changed: 15 additions & 16 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/dotnet-core-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET
1414
uses: actions/setup-dotnet@v3
1515
with:
16-
dotnet-version: 8.0.x
16+
dotnet-version: 10.0.x
1717
- name: Install dependencies
1818
run: dotnet restore
1919
- name: Build

.github/workflows/dotnet-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET
1414
uses: actions/setup-dotnet@v3
1515
with:
16-
dotnet-version: 8.0.x
16+
dotnet-version: 10.0.x
1717
- name: Install dependencies
1818
run: dotnet restore
1919
- name: Build

.github/workflows/master_core-admin-demo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
- name: Setup .NET
1919
uses: actions/setup-dotnet@v3
2020
with:
21-
dotnet-version: 8.0.x
21+
dotnet-version: 10.0.x
2222

2323
- name: dotnet publish
24-
run: dotnet publish src\DotNetEd.CoreAdmin.DemoAppDotNet8\DotNetEd.CoreAdmin.DemoAppDotNet8.csproj -c Release -o "${{env.DOTNET_ROOT}}\myapp" --framework net8.0
24+
run: dotnet publish src\DotNetEd.CoreAdmin.DemoAppDotNet10\DotNetEd.CoreAdmin.DemoAppDotNet10.csproj -c Release -o "${{env.DOTNET_ROOT}}\myapp" --framework net10.0
2525

2626
- name: Upload artifact for deployment job
2727
uses: actions/upload-artifact@v2

DotNetEd.CoreAdmin.sln

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 17
4-
VisualStudioVersion = 17.0.31912.275
3+
# Visual Studio Version 18
4+
VisualStudioVersion = 18.0.11222.15 d18.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNetEd.CoreAdmin", "src\DotNetEd.CoreAdmin\DotNetEd.CoreAdmin.csproj", "{44822078-CB19-4FE8-BC1D-141F067D6FF1}"
77
EndProject
@@ -18,7 +18,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1818
README.md = README.md
1919
EndProjectSection
2020
EndProject
21-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotNetEd.CoreAdmin.DemoAppDotNet8", "src\DotNetEd.CoreAdmin.DemoAppDotNet8\DotNetEd.CoreAdmin.DemoAppDotNet8.csproj", "{6C4638AD-33BA-4FFD-8608-45F081F17467}"
21+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetEd.CoreAdmin.DemoAppDotNet10", "src\DotNetEd.CoreAdmin.DemoAppDotNet10\DotNetEd.CoreAdmin.DemoAppDotNet10.csproj", "{AE69C4AA-FD6F-7D99-4AD7-C671C7A2266A}"
2222
EndProject
2323
Global
2424
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -38,10 +38,10 @@ Global
3838
{DEFCA510-EDB9-4D6C-8DF6-D006504C2046}.Debug|Any CPU.Build.0 = Debug|Any CPU
3939
{DEFCA510-EDB9-4D6C-8DF6-D006504C2046}.Release|Any CPU.ActiveCfg = Release|Any CPU
4040
{DEFCA510-EDB9-4D6C-8DF6-D006504C2046}.Release|Any CPU.Build.0 = Release|Any CPU
41-
{6C4638AD-33BA-4FFD-8608-45F081F17467}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
42-
{6C4638AD-33BA-4FFD-8608-45F081F17467}.Debug|Any CPU.Build.0 = Debug|Any CPU
43-
{6C4638AD-33BA-4FFD-8608-45F081F17467}.Release|Any CPU.ActiveCfg = Release|Any CPU
44-
{6C4638AD-33BA-4FFD-8608-45F081F17467}.Release|Any CPU.Build.0 = Release|Any CPU
41+
{AE69C4AA-FD6F-7D99-4AD7-C671C7A2266A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
42+
{AE69C4AA-FD6F-7D99-4AD7-C671C7A2266A}.Debug|Any CPU.Build.0 = Debug|Any CPU
43+
{AE69C4AA-FD6F-7D99-4AD7-C671C7A2266A}.Release|Any CPU.ActiveCfg = Release|Any CPU
44+
{AE69C4AA-FD6F-7D99-4AD7-C671C7A2266A}.Release|Any CPU.Build.0 = Release|Any CPU
4545
EndGlobalSection
4646
GlobalSection(SolutionProperties) = preSolution
4747
HideSolutionNode = FALSE

src/DotNetEd.CoreAdmin.DemoAppDotNet8/DemoAssets/ed-100.png renamed to src/DotNetEd.CoreAdmin.DemoAppDotNet10/DemoAssets/ed-100.png

File renamed without changes.

src/DotNetEd.CoreAdmin.DemoAppDotNet8/DotNetEd.CoreAdmin.DemoAppDotNet8.csproj renamed to src/DotNetEd.CoreAdmin.DemoAppDotNet10/DotNetEd.CoreAdmin.DemoAppDotNet10.csproj

File renamed without changes.

src/DotNetEd.CoreAdmin.DemoAppDotNet8/Models/ErrorViewModel.cs renamed to src/DotNetEd.CoreAdmin.DemoAppDotNet10/Models/ErrorViewModel.cs

File renamed without changes.

src/DotNetEd.CoreAdmin.DemoAppDotNet8/Models/TestAutogeneratedKeyEntity.cs renamed to src/DotNetEd.CoreAdmin.DemoAppDotNet10/Models/TestAutogeneratedKeyEntity.cs

File renamed without changes.

src/DotNetEd.CoreAdmin.DemoAppDotNet8/Models/TestChildEntity.cs renamed to src/DotNetEd.CoreAdmin.DemoAppDotNet10/Models/TestChildEntity.cs

File renamed without changes.

src/DotNetEd.CoreAdmin.DemoAppDotNet8/Models/TestDbContext.cs renamed to src/DotNetEd.CoreAdmin.DemoAppDotNet10/Models/TestDbContext.cs

File renamed without changes.

0 commit comments

Comments
 (0)