Skip to content
This repository was archived by the owner on May 7, 2020. It is now read-only.

Commit 1b31dfc

Browse files
committed
Stove.NHibernate targeted to netstandard2.0 fix for #139
1 parent e97d348 commit 1b31dfc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Stove.NHibernate/NHibernate/Interceptors/StoveNHibernateInterceptors.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
using Stove.Commands;
1313
using Stove.Domain.Entities;
1414
using Stove.Domain.Entities.Auditing;
15-
using Stove.Events;
1615
using Stove.Events.Bus;
1716
using Stove.Extensions;
1817
using Stove.Runtime.Session;

src/Stove.NHibernate/Stove.NHibernate.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\..\common.props"></Import>
44

55
<PropertyGroup>
6-
<TargetFramework>net461</TargetFramework>
6+
<TargetFramework>netstandard2.0</TargetFramework>
77
<RootNamespace>Stove</RootNamespace>
88
<AssemblyName>Stove.NHibernate</AssemblyName>
99
<PackageId>Stove.NHibernate</PackageId>
@@ -13,11 +13,12 @@
1313
</PropertyGroup>
1414

1515
<PropertyGroup>
16-
<DocumentationFile>bin\Release\net461\Stove.NHibernate.xml</DocumentationFile>
16+
<DocumentationFile>bin\Release\netstandard2.0\Stove.NHibernate.xml</DocumentationFile>
1717
</PropertyGroup>
1818

1919
<ItemGroup>
2020
<PackageReference Include="FluentNHibernate" Version="2.1.2" />
21+
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
2122
<PackageReference Include="NHibernate" Version="5.1.2" />
2223
</ItemGroup>
2324

@@ -30,8 +31,8 @@
3031
</ItemGroup>
3132

3233
<ItemGroup>
33-
<None Include="bin\Release\net461\Stove.NHibernate.pdb">
34-
<PackagePath>lib/net461/</PackagePath>
34+
<None Include="bin\Release\netstandard2.0\Stove.NHibernate.pdb">
35+
<PackagePath>lib/netstandard2.0/</PackagePath>
3536
<Pack>true</Pack>
3637
</None>
3738
</ItemGroup>

test/Stove.Tests.SampleApplication/Stove.Tests.SampleApplication.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Effort.EF6" Version="1.3.3" />
23+
<PackageReference Include="Effort.EF6" Version="1.3.4" />
2424
</ItemGroup>
2525

2626
</Project>

0 commit comments

Comments
 (0)