Skip to content

Commit 9a3a977

Browse files
authored
Merge pull request #25 from vivarni/net10
Upgrade to NET10
2 parents c0ba596 + 08416c6 commit 9a3a977

File tree

7 files changed

+27
-27
lines changed

7 files changed

+27
-27
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup .NET
1616
uses: actions/setup-dotnet@v1
1717
with:
18-
dotnet-version: 9.0.x
18+
dotnet-version: 10.0.x
1919

2020
# dotnet restore
2121
- name: Restore dependencies

Vivarni.DDD.sln

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio Version 17
3-
VisualStudioVersion = 17.0.32014.148
2+
# Visual Studio Version 18
3+
VisualStudioVersion = 18.0.11205.157 d18.0
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vivarni.Example.API", "sample\Vivarni.Example.API\Vivarni.Example.API.csproj", "{0576691B-8F65-4024-B301-0EA7AA3B828B}"
66
ProjectSection(ProjectDependencies) = postProject
@@ -23,6 +23,10 @@ Global
2323
Release|Any CPU = Release|Any CPU
2424
EndGlobalSection
2525
GlobalSection(ProjectConfigurationPlatforms) = postSolution
26+
{0576691B-8F65-4024-B301-0EA7AA3B828B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{0576691B-8F65-4024-B301-0EA7AA3B828B}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{0576691B-8F65-4024-B301-0EA7AA3B828B}.Release|Any CPU.ActiveCfg = Release|Any CPU
29+
{0576691B-8F65-4024-B301-0EA7AA3B828B}.Release|Any CPU.Build.0 = Release|Any CPU
2630
{14636973-4861-4654-AE07-C57EAABD34D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2731
{14636973-4861-4654-AE07-C57EAABD34D0}.Debug|Any CPU.Build.0 = Debug|Any CPU
2832
{14636973-4861-4654-AE07-C57EAABD34D0}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -39,18 +43,14 @@ Global
3943
{4A9D4053-EDBC-4223-A2ED-2591B16EEEB3}.Debug|Any CPU.Build.0 = Debug|Any CPU
4044
{4A9D4053-EDBC-4223-A2ED-2591B16EEEB3}.Release|Any CPU.ActiveCfg = Release|Any CPU
4145
{4A9D4053-EDBC-4223-A2ED-2591B16EEEB3}.Release|Any CPU.Build.0 = Release|Any CPU
42-
{0576691B-8F65-4024-B301-0EA7AA3B828B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
43-
{0576691B-8F65-4024-B301-0EA7AA3B828B}.Debug|Any CPU.Build.0 = Debug|Any CPU
44-
{0576691B-8F65-4024-B301-0EA7AA3B828B}.Release|Any CPU.ActiveCfg = Release|Any CPU
45-
{0576691B-8F65-4024-B301-0EA7AA3B828B}.Release|Any CPU.Build.0 = Release|Any CPU
4646
EndGlobalSection
4747
GlobalSection(SolutionProperties) = preSolution
4848
HideSolutionNode = FALSE
4949
EndGlobalSection
5050
GlobalSection(NestedProjects) = preSolution
51+
{0576691B-8F65-4024-B301-0EA7AA3B828B} = {289B6E20-0100-42F5-A41B-DEBFEEE156F7}
5152
{347DD870-4F17-4A92-812D-931B433A5E90} = {289B6E20-0100-42F5-A41B-DEBFEEE156F7}
5253
{4A9D4053-EDBC-4223-A2ED-2591B16EEEB3} = {289B6E20-0100-42F5-A41B-DEBFEEE156F7}
53-
{0576691B-8F65-4024-B301-0EA7AA3B828B} = {289B6E20-0100-42F5-A41B-DEBFEEE156F7}
5454
EndGlobalSection
5555
GlobalSection(ExtensibilityGlobals) = postSolution
5656
SolutionGuid = {6D195989-3704-4AE1-B21B-12D5A768B8A3}

sample/Vivarni.Example.API/Vivarni.Example.API.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.4" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.4">
10+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0">
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>
15-
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.1" />
15+
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.0.1" />
1616
</ItemGroup>
1717

1818
<ItemGroup>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
@@ -10,8 +10,8 @@
1010
<ProjectReference Include="..\..\src\Vivarni.DDD.Core\Vivarni.DDD.Core.csproj" />
1111
</ItemGroup>
1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.4" />
14-
<PackageReference Include="Scrutor" Version="6.0.1" />
13+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
14+
<PackageReference Include="Scrutor" Version="6.1.0" />
1515
</ItemGroup>
1616

1717
</Project>

sample/Vivarni.Example.Infrastructure/Vivarni.Example.Infrastructure.SQLite.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.4" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.4" />
12-
<PackageReference Include="Scrutor" Version="6.0.1" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0" />
12+
<PackageReference Include="Scrutor" Version="6.1.0" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

src/Vivarni.DDD.Core/Vivarni.DDD.Core.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>netstandard2.0</TargetFrameworks>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
7-
<Version>2.1.1</Version>
7+
<Version>10.0.0</Version>
88
<Authors>Michaël Vittorelli; Anthony Van Dooren</Authors>
99
<RepositoryUrl>https://github.com/vivarni/vivarni.domain</RepositoryUrl>
1010
<PackageProjectUrl>https://github.com/vivarni/vivarni.domain</PackageProjectUrl>
@@ -16,7 +16,7 @@
1616
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1717
<Description>Fundamental building blocks for creating the domain layer in a DDD software design approach.</Description>
1818
<PackageTags>ddd;domain driven design;specification;aggregate</PackageTags>
19-
<LangVersion>11.0</LangVersion>
19+
<LangVersion>latest</LangVersion>
2020
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2121
<Nullable>enable</Nullable>
2222
</PropertyGroup>
@@ -26,7 +26,7 @@
2626
</PropertyGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="Ardalis.Specification" Version="9.0.1" />
29+
<PackageReference Include="Ardalis.Specification" Version="9.3.1" />
3030
</ItemGroup>
3131

3232
<ItemGroup>

src/Vivarni.DDD.Infrastructure/Vivarni.DDD.Infrastructure.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
7-
<Version>2.1.1</Version>
7+
<Version>10.0.0</Version>
88
<Authors>Michaël Vittorelli; Anthony Van Dooren</Authors>
99
<RepositoryUrl>https://github.com/vivarni/vivarni.domain</RepositoryUrl>
1010
<PackageProjectUrl>https://github.com/vivarni/vivarni.domain</PackageProjectUrl>
@@ -16,14 +16,14 @@
1616
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1717
<Description>Fundamental building blocks for creating the domain layer in a DDD software design approach.</Description>
1818
<PackageTags>ddd;domain driven design;specification;aggregate</PackageTags>
19-
<LangVersion>8.0</LangVersion>
19+
<LangVersion>latest</LangVersion>
2020
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2121
<Nullable>enable</Nullable>
2222
</PropertyGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Ardalis.Specification.EntityFrameworkCore" Version="9.0.1" />
26-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.4" />
25+
<PackageReference Include="Ardalis.Specification.EntityFrameworkCore" Version="9.3.1" />
26+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
2727
</ItemGroup>
2828

2929
<ItemGroup>

0 commit comments

Comments
 (0)