Skip to content

Commit 2d23d19

Browse files
committed
added .NET 8.0 support with extra build targets, bumped version to 1.35.0
1 parent e2cd704 commit 2d23d19

File tree

32 files changed

+109
-85
lines changed

32 files changed

+109
-85
lines changed

Common.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project>
22

33
<PropertyGroup>
4-
<VersionPrefix>1.34.1</VersionPrefix>
4+
<VersionPrefix>1.35.0</VersionPrefix>
55
</PropertyGroup>
66

77
<PropertyGroup>
88
<Authors>Revo Framework</Authors>
9-
<Copyright>Copyright (c) 2017-2023 Martin Zima</Copyright>
9+
<Copyright>Copyright (c) 2017-2024 Martin Zima</Copyright>
1010
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1111
<IncludeSymbols>true</IncludeSymbols>
1212
<LangVersion>11</LangVersion>

Examples/Todos/Revo.Examples.Todos.Tests/Revo.Examples.Todos.Tests.csproj

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-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<Configurations>Debug;Release</Configurations>
66
</PropertyGroup>
77

@@ -10,8 +10,8 @@
1010
<PrivateAssets>all</PrivateAssets>
1111
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1212
</PackageReference>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
14+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>

Examples/Todos/Revo.Examples.Todos/Revo.Examples.Todos.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<UserSecretsId>7b56d8f9-dff4-4c46-a824-b2d13b604ad4</UserSecretsId>
66
</PropertyGroup>
77

@@ -16,10 +16,10 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0" />
20-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
21-
<PackageReference Include="Npgsql" Version="7.0.0" />
22-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.0" />
19+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.1" />
20+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.1" />
21+
<PackageReference Include="Npgsql" Version="8.0.0" />
22+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
2323
</ItemGroup>
2424

2525
<ItemGroup>

Extensions/Revo.Extensions.AutoMapper/Revo.Extensions.AutoMapper.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Common.props))\Common.props" />
44

55
<PropertyGroup>
6-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
6+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
77
<Configurations>Debug;Release</Configurations>
88
<Description>Event Sourcing, CQRS and DDD framework for modern C#/.NET applications.
99
Extension for automatic discovery and registration of AutoMapper profiles.</Description>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="AutoMapper" Version="12.0.0" />
14-
<PackageReference Include="AutoMapper.Extensions.ExpressionMapping" Version="6.0.1" />
13+
<PackageReference Include="AutoMapper" Version="12.0.1" />
14+
<PackageReference Include="AutoMapper.Extensions.ExpressionMapping" Version="6.0.4" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

Extensions/Revo.Extensions.History/Revo.Extensions.History.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Common.props))\Common.props" />
44

55
<PropertyGroup>
6-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
6+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
77
<Configurations>Debug;Release</Configurations>
88
<Description>Event Sourcing, CQRS and DDD framework for modern C#/.NET applications.
99
History-tracking extension package.</Description>
@@ -20,8 +20,8 @@ History-tracking extension package.</Description>
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="AutoMapper" Version="12.0.0" />
24-
<PackageReference Include="AutoMapper.Extensions.ExpressionMapping" Version="6.0.1" />
23+
<PackageReference Include="AutoMapper" Version="12.0.1" />
24+
<PackageReference Include="AutoMapper.Extensions.ExpressionMapping" Version="6.0.4" />
2525
</ItemGroup>
2626

2727
<ItemGroup>

Extensions/Revo.Extensions.Notifications/Revo.Extensions.Notifications.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Common.props))\Common.props" />
44

55
<PropertyGroup>
6-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
6+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
77
<Configurations>Debug;Release</Configurations>
88
<Description>Event Sourcing, CQRS and DDD framework for modern C#/.NET applications.
99
Configurable user notifications extension package.</Description>

Extensions/Tests/Revo.Extensions.History.Tests/Revo.Extensions.History.Tests.csproj

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-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<Authors>Revo Framework</Authors>
66
</PropertyGroup>
77

@@ -10,8 +10,8 @@
1010
<PrivateAssets>all</PrivateAssets>
1111
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1212
</PackageReference>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
14+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>

Extensions/Tests/Revo.Extensions.Notifications.Tests/Revo.Extensions.Notifications.Tests.csproj

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-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<Authors>Revo Framework</Authors>
66
</PropertyGroup>
77

@@ -10,8 +10,8 @@
1010
<PrivateAssets>all</PrivateAssets>
1111
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1212
</PackageReference>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
14+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>

Providers/AspNetCore/Revo.AspNetCore/Revo.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), Common.props))\Common.props" />
44

55
<PropertyGroup>
6-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
6+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
77
<Configurations>Debug;Release</Configurations>
88
<Description>Event Sourcing, CQRS and DDD framework for modern C#/.NET applications.
99
Entity Framework (EF) Core data-access layer implementation.</Description>

Providers/AspNetCore/Tests/Revo.AspNetCore.Tests/Revo.AspNetCore.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<Configurations>Debug;Release</Configurations>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
@@ -11,7 +11,7 @@
1111
<PrivateAssets>all</PrivateAssets>
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1313
</PackageReference>
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
1515
<FrameworkReference Include="Microsoft.AspNetCore.App" />
1616
</ItemGroup>
1717

0 commit comments

Comments
 (0)