Skip to content

Commit 528ff4c

Browse files
authored
Run tests using .NET Framework 4.8 (#638)
+semver:patch
1 parent 689ac8b commit 528ff4c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Task("Test")
8585
{
8686
DotNetTest(project.ToString(), new DotNetTestSettings
8787
{
88-
Framework = "net461",
88+
Framework = "net48",
8989
NoBuild = true,
9090
NoRestore = true,
9191
Configuration = parameters.Configuration

src/Examples.FirstAutomappedProject/Examples.FirstAutomappedProject.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-
<TargetFramework>net461</TargetFramework>
4+
<TargetFramework>net48</TargetFramework>
55
<OutputType>Exe</OutputType>
66
<PlatformTarget>AnyCpu</PlatformTarget>
77
<IsPackable>false</IsPackable>
@@ -15,7 +15,7 @@
1515
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
1616
</ItemGroup>
1717

18-
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
18+
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
1919
<Reference Include="System.ComponentModel.DataAnnotations" />
2020
<Reference Include="System.Configuration" />
2121
<Reference Include="System.ServiceModel" />

src/Examples.FirstProject/Examples.FirstProject.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-
<TargetFramework>net461</TargetFramework>
4+
<TargetFramework>net48</TargetFramework>
55
<OutputType>Exe</OutputType>
66
<PlatformTarget>AnyCpu</PlatformTarget>
77
<IsPackable>false</IsPackable>
@@ -15,7 +15,7 @@
1515
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
1616
</ItemGroup>
1717

18-
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
18+
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
1919
<Reference Include="System.ComponentModel.DataAnnotations" />
2020
<Reference Include="System.Configuration" />
2121
<Reference Include="System.ServiceModel" />

src/FluentNHibernate.Specs.ExternalFixtures/FluentNHibernate.Specs.ExternalFixtures.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
3+
<TargetFrameworks>net48;netstandard2.0</TargetFrameworks>
44
<IsPackable>false</IsPackable>
55
</PropertyGroup>
66

src/FluentNHibernate.Specs/FluentNHibernate.Specs.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net461;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net48;net6.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

src/FluentNHibernate.Testing/FluentNHibernate.Testing.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net461;net6.0</TargetFrameworks>
3+
<TargetFrameworks>net48;net6.0</TargetFrameworks>
44
</PropertyGroup>
55

66
<ItemGroup>

0 commit comments

Comments
 (0)