Skip to content

Commit 3e9d4b4

Browse files
committed
.netstandard 2.0 project
1 parent eebcbb4 commit 3e9d4b4

File tree

7 files changed

+11
-133
lines changed

7 files changed

+11
-133
lines changed

src/NHibernate/AssemblyInfo.cs

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/NHibernate/Cfg/ConfigurationSectionHandler.cs

Lines changed: 0 additions & 22 deletions
This file was deleted.

src/NHibernate/Context/CallSessionContext.cs

Lines changed: 0 additions & 39 deletions
This file was deleted.

src/NHibernate/Context/WcfOperationSessionContext.cs

Lines changed: 0 additions & 52 deletions
This file was deleted.

src/NHibernate/Impl/SessionFactoryImpl.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1224,14 +1224,10 @@ private ICurrentSessionContext BuildCurrentSessionContext()
12241224
{
12251225
case null:
12261226
return null;
1227-
case "call":
1228-
return new CallSessionContext(this);
12291227
case "thread_static":
12301228
return new ThreadStaticSessionContext(this);
12311229
case "web":
12321230
return new WebSessionContext(this);
1233-
case "wcf_operation":
1234-
return new WcfOperationSessionContext(this);
12351231
}
12361232

12371233
try

src/NHibernate/NHibernate.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,13 @@
77
<Company>NHibernate.info</Company>
88
</PropertyGroup>
99

10+
<ItemGroup>
11+
<PackageReference Include="Antlr3.Runtime" Version="3.5.1" />
12+
<PackageReference Include="Remotion.Linq" Version="2.1.1" />
13+
<PackageReference Include="Remotion.Linq.EagerFetching" Version="2.0.1" />
14+
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
15+
<PackageReference Include="System.Reflection.Emit.ILGeneration" Version="4.3.0" />
16+
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
17+
</ItemGroup>
18+
1019
</Project>

src/NHibernate/Type/GenericOrderedSetType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3-
using Iesi.Collections.Generic;
3+
//using Iesi.Collections.Generic;
44

55
namespace NHibernate.Type
66
{
@@ -26,7 +26,7 @@ public GenericOrderedSetType(string role, string propertyRef)
2626

2727
public override object Instantiate(int anticipatedSize)
2828
{
29-
return new LinkedHashSet<T>();
29+
throw new NotImplementedException();
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)