Skip to content

Commit 32c9788

Browse files
authored
Use .NET 8 SDK to build project (#655)
+semver:patch
1 parent f6a633e commit 32c9788

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "6.0.403",
3+
"version": "8.0.100",
44
"rollForward": "latestFeature"
55
}
66
}

src/FluentNHibernate.sln

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{83F176
66
ProjectSection(SolutionItems) = preProject
77
Directory.Build.props = Directory.Build.props
88
FluentKey.snk = FluentKey.snk
9+
..\global.json = ..\global.json
10+
..\appveyor.yml = ..\appveyor.yml
911
EndProjectSection
1012
EndProject
1113
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{3D285AE0-E5CF-4923-B543-0D70E5C6DE18}"

src/FluentNHibernate/FluentNHibernate.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
<SignAssembly>true</SignAssembly>
1010
<AssemblyOriginatorKeyFile>../FluentKey.snk</AssemblyOriginatorKeyFile>
1111
</PropertyGroup>
12+
13+
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
14+
<RuntimeFrameworkVersion>2.0.9</RuntimeFrameworkVersion>
15+
</PropertyGroup>
1216

1317
<ItemGroup>
1418
<PackageReference Include="NHibernate" Version="5.3.3" />

0 commit comments

Comments
 (0)