Skip to content

Commit

Permalink
Merge b27c86d into cc89ea6
Browse files Browse the repository at this point in the history
  • Loading branch information
shawndube authored Feb 18, 2018
2 parents cc89ea6 + b27c86d commit 884e23d
Show file tree
Hide file tree
Showing 19 changed files with 972 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ _ReSharper*
*.log
packages
*.ncrunch*
*.DotSettings
*.DotSettings
/.vs/NHibernate.SqlAzure/v15/Server/sqlite3
17 changes: 15 additions & 2 deletions NHibernate.SqlAzure.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22512.0
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2010
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NHibernate.SqlAzure", "NHibernate.SqlAzure\NHibernate.SqlAzure.csproj", "{C51908DF-FAEA-4EAA-8F75-096346537C33}"
EndProject
Expand All @@ -19,6 +19,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NHibernate4.SqlAzure", "NHi
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NHibernate4.SqlAzure.Tests", "NHibernate4.SqlAzure.Tests\NHibernate4.SqlAzure.Tests.csproj", "{4864689E-5B40-4EA2-A797-63B2AEBFE5DC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NHibernate5.SqlAzure", "NHibernate5.SqlAzure\NHibernate5.SqlAzure.csproj", "{895B6F59-B5BE-4796-847D-C3FF2C7EED66}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NHibernate5.SqlAzure.Tests", "NHibernate5.SqlAzure.Tests\NHibernate5.SqlAzure.Tests.csproj", "{BF71D707-D321-40DB-97CB-3A3A02F345D5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -41,11 +45,20 @@ Global
{4864689E-5B40-4EA2-A797-63B2AEBFE5DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4864689E-5B40-4EA2-A797-63B2AEBFE5DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4864689E-5B40-4EA2-A797-63B2AEBFE5DC}.Release|Any CPU.Build.0 = Release|Any CPU
{895B6F59-B5BE-4796-847D-C3FF2C7EED66}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{895B6F59-B5BE-4796-847D-C3FF2C7EED66}.Debug|Any CPU.Build.0 = Debug|Any CPU
{895B6F59-B5BE-4796-847D-C3FF2C7EED66}.Release|Any CPU.ActiveCfg = Release|Any CPU
{895B6F59-B5BE-4796-847D-C3FF2C7EED66}.Release|Any CPU.Build.0 = Release|Any CPU
{BF71D707-D321-40DB-97CB-3A3A02F345D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BF71D707-D321-40DB-97CB-3A3A02F345D5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BF71D707-D321-40DB-97CB-3A3A02F345D5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BF71D707-D321-40DB-97CB-3A3A02F345D5}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A2187D5F-03DE-4CF8-A458-16694FC9F9D6}
EnterpriseLibraryConfigurationToolBinariesPathV6 = packages\EnterpriseLibrary.TransientFaultHandling.6.0.1304.0\lib\portable-net45+win+wp8;packages\EnterpriseLibrary.TransientFaultHandling.Data.6.0.1304.1\lib\NET45
EndGlobalSection
EndGlobal
10 changes: 10 additions & 0 deletions NHibernate5.SqlAzure.Tests/App.Release.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<add key="SqlServerServiceName" value="MSSQL$SQL2008R2SP2" xdt:Locator="Match(key)" xdt:Transform="SetAttributes" />
</appSettings>
<connectionStrings>
<add name="PooledDatabase" connectionString="Server=(local)\SQL2008R2SP2;Database=master;User ID=sa;Password=Password12!;Initial Catalog=NHibernateSqlAzureTests" xdt:Locator="Match(name)" xdt:Transform="SetAttributes" />
<add name="NonPooledDatabase" connectionString="Server=(local)\SQL2008R2SP2;Database=master;User ID=sa;Password=Password12!;Initial Catalog=NHibernateSqlAzureTests;Pooling=false" xdt:Locator="Match(name)" xdt:Transform="SetAttributes" />
</connectionStrings>
</configuration>
21 changes: 21 additions & 0 deletions NHibernate5.SqlAzure.Tests/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="SqlServerServiceName" value="MSSQL$SQLEXPRESS" />
</appSettings>
<connectionStrings>
<add name="PooledDatabase" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=True;Initial Catalog=NHibernateSqlAzureTests" />
<add name="NonPooledDatabase" connectionString="Data Source=.\SQLEXPRESS;Integrated Security=True;Initial Catalog=NHibernateSqlAzureTests;Pooling=false" />
</connectionStrings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="NHibernate" publicKeyToken="aa95f207798dfdb4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using HibernatingRhinos.Profiler.Appender.NHibernate;

// If you're using .NET Core please remove this line and call NHibernateProfiler.Initialize(); on the very beginning of your application.
[assembly: WebActivatorEx.PreApplicationStartMethod(typeof(NHibernate5.SqlAzure.Tests.App_Start.NHibernateProfilerBootstrapper), "PreStart")]
namespace NHibernate5.SqlAzure.Tests.App_Start
{
public static class NHibernateProfilerBootstrapper
{
public static void PreStart()
{
// Initialize the profiler
NHibernateProfiler.Initialize();

// You can also use the profiler in an offline manner.
// This will generate a file with a snapshot of all the NHibernate activity in the application,
// which you can use for later analysis by loading the file into the profiler.
// var filename = @"c:\profiler-log";
// NHibernateProfiler.InitializeOfflineProfiling(filename);

// You can use the following for production profiling.
// NHibernateProfiler.InitializeForProduction(11234, "A strong password like: ze38r/b2ulve2HLQB8NK5AYig");
}
}
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Imports HibernatingRhinos.Profiler.Appender.NHibernate

' If you're using .NET Core please remove this line and call NHibernateProfiler.Initialize() on the very beginning of your application.
<assembly: WebActivatorEx.PreApplicationStartMethod(GetType(Global.NHibernate5.SqlAzure.Tests.App_Start.NHibernateProfilerBootstrapper), "PreStart")>
Namespace App_Start
Public Class NHibernateProfilerBootstrapper
Public Shared Sub PreStart()
' Initialize the profiler
NHibernateProfiler.Initialize()

' You can also use the profiler in an offline manner.
' This will generate a file with a snapshot of all the NHibernate activity in the application,
' which you can use for later analysis by loading the file into the profiler.
' Dim FileName as String = @"c:\profiler-log";
' NHibernateProfiler.InitializeOfflineProfiling(FileName)

' You can use the following for production profiling.
' NHibernateProfiler.InitializeForProduction(11234, "A strong password like: ze38r/b2ulve2HLQB8NK5AYig");
End Sub
End Class
End Namespace

171 changes: 171 additions & 0 deletions NHibernate5.SqlAzure.Tests/NHibernate5.SqlAzure.Tests.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{BF71D707-D321-40DB-97CB-3A3A02F345D5}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NHibernate5.SqlAzure.Tests</RootNamespace>
<AssemblyName>NHibernate5.SqlAzure.Tests</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">15.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
<IsCodedUITest>False</IsCodedUITest>
<TestProjectType>UnitTest</TestProjectType>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Antlr3.Runtime, Version=3.5.0.2, Culture=neutral, PublicKeyToken=eb42632606e9261f, processorArchitecture=MSIL">
<HintPath>..\packages\Antlr3.Runtime.3.5.1\lib\net40-client\Antlr3.Runtime.dll</HintPath>
</Reference>
<Reference Include="FizzWare.NBuilder, Version=3.0.1.0, Culture=neutral, PublicKeyToken=5651b03e12e42c12, processorArchitecture=MSIL">
<HintPath>..\packages\NBuilder.3.0.1.1\lib\FizzWare.NBuilder.dll</HintPath>
</Reference>
<Reference Include="FluentMigrator, Version=1.1.2.1, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL">
<HintPath>..\packages\FluentMigrator.1.1.2.1\lib\40\FluentMigrator.dll</HintPath>
</Reference>
<Reference Include="FluentMigrator.Runner, Version=1.1.2.1, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL">
<HintPath>..\packages\FluentMigrator.Runner.1.1.1.26\lib\NET40\FluentMigrator.Runner.dll</HintPath>
</Reference>
<Reference Include="FluentNHibernate, Version=2.0.3.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\FluentNHibernate.2.0.3.0\lib\net40\FluentNHibernate.dll</HintPath>
</Reference>
<Reference Include="HibernatingRhinos.Profiler.Appender, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0774796e73ebf640, processorArchitecture=MSIL">
<HintPath>..\packages\NHibernateProfiler.4.0.4049\lib\net46\HibernatingRhinos.Profiler.Appender.dll</HintPath>
</Reference>
<Reference Include="Iesi.Collections, Version=4.0.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
<HintPath>..\packages\Iesi.Collections.4.0.2\lib\net461\Iesi.Collections.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\EnterpriseLibrary.TransientFaultHandling.6.0.1304.0\lib\portable-net45+win+wp8\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Data, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\EnterpriseLibrary.TransientFaultHandling.Data.6.0.1304.1\lib\NET45\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.Data.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
</Reference>
<Reference Include="NHibernate, Version=5.0.0.0, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
<HintPath>..\packages\NHibernate.5.0.3\lib\net461\NHibernate.dll</HintPath>
</Reference>
<Reference Include="nunit.framework, Version=2.6.2.12296, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<HintPath>..\packages\NUnit.2.6.2\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="Remotion.Linq, Version=2.1.0.0, Culture=neutral, PublicKeyToken=fee00910d6e5f53b, processorArchitecture=MSIL">
<HintPath>..\packages\Remotion.Linq.2.1.2\lib\net45\Remotion.Linq.dll</HintPath>
</Reference>
<Reference Include="Remotion.Linq.EagerFetching, Version=2.1.0.0, Culture=neutral, PublicKeyToken=fee00910d6e5f53b, processorArchitecture=MSIL">
<HintPath>..\packages\Remotion.Linq.EagerFetching.2.1.0\lib\net45\Remotion.Linq.EagerFetching.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Diagnostics.DiagnosticSource, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Diagnostics.DiagnosticSource.4.4.0\lib\net46\System.Diagnostics.DiagnosticSource.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel" />
<Reference Include="System.ServiceProcess" />
<Reference Include="System.Transactions" />
<Reference Include="WebActivator, Version=1.4.4.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\WebActivator.1.4.4\lib\net40\WebActivator.dll</HintPath>
</Reference>
<Reference Include="WebActivatorEx, Version=2.0.0.0, Culture=neutral, PublicKeyToken=7b26dc2a43f6a0d4, processorArchitecture=MSIL">
<HintPath>..\packages\WebActivatorEx.2.0.5\lib\net40\WebActivatorEx.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\NHibernate.SqlAzure.Tests\Config\FluentRunner.cs">
<Link>FluentRunner.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\Config\LocalTestingReliableSql2008ClientDriver.cs">
<Link>LocalTestingReliableSql2008ClientDriver.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\Config\NHibernateConfiguration.cs">
<Link>NHibernateConfiguration.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\Config\NHibernateTestBase.cs">
<Link>NHibernateTestBase.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\Config\SqlExpressTransientErrorDetectionStrategy.cs">
<Link>SqlExpressTransientErrorDetectionStrategy.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\ConnectionTests.cs">
<Link>ConnectionTests.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\Entities\User.cs">
<Link>User.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\Entities\UserProperty.cs">
<Link>UserProperty.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\Migrations\20120801141148_CreateUserTable.cs">
<Link>20120801141148_CreateUserTable.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\Migrations\20120809201500_CreateUserPropertyTable.cs">
<Link>20120809201500_CreateUserPropertyTable.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\SqlClientDriverTests.cs">
<Link>SqlClientDriverTests.cs</Link>
</Compile>
<Compile Include="..\NHibernate.SqlAzure.Tests\TransientErrorDetectionTests.cs">
<Link>TransientErrorDetectionTests.cs</Link>
</Compile>
<Compile Include="App_Start\NHibernateProfilerBootstrapper.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config">
<SubType>Designer</SubType>
<TransformOnBuild>true</TransformOnBuild>
</None>
<None Include="App.Release.config">
<DependentUpon>App.config</DependentUpon>
<IsTransformFile>True</IsTransformFile>
</None>
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NHibernate5.SqlAzure\NHibernate5.SqlAzure.csproj">
<Project>{895b6f59-b5be-4796-847d-c3ff2c7eed66}</Project>
<Name>NHibernate5.SqlAzure</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="App_Start\NHibernateProfilerBootstrapper.vb" />
</ItemGroup>
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Microsoft.VisualStudio.SlowCheetah.3.0.61\build\Microsoft.VisualStudio.SlowCheetah.targets" Condition="Exists('..\packages\Microsoft.VisualStudio.SlowCheetah.3.0.61\build\Microsoft.VisualStudio.SlowCheetah.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Microsoft.VisualStudio.SlowCheetah.3.0.61\build\Microsoft.VisualStudio.SlowCheetah.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.VisualStudio.SlowCheetah.3.0.61\build\Microsoft.VisualStudio.SlowCheetah.targets'))" />
</Target>
</Project>
20 changes: 20 additions & 0 deletions NHibernate5.SqlAzure.Tests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("NHibernate5.SqlAzure.Tests")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("NHibernate5.SqlAzure.Tests")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: ComVisible(false)]

[assembly: Guid("bf71d707-d321-40db-97cb-3a3a02f345d5")]

// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
21 changes: 21 additions & 0 deletions NHibernate5.SqlAzure.Tests/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Antlr3.Runtime" version="3.5.1" targetFramework="net461" />
<package id="EnterpriseLibrary.TransientFaultHandling" version="6.0.1304.0" targetFramework="net461" />
<package id="EnterpriseLibrary.TransientFaultHandling.Data" version="6.0.1304.1" targetFramework="net461" />
<package id="FluentMigrator" version="1.1.2.1" targetFramework="net461" />
<package id="FluentMigrator.Runner" version="1.1.1.26" targetFramework="net461" />
<package id="FluentNHibernate" version="2.0.3.0" targetFramework="net461" />
<package id="Iesi.Collections" version="4.0.2" targetFramework="net461" />
<package id="Microsoft.VisualStudio.SlowCheetah" version="3.0.61" targetFramework="net461" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
<package id="NBuilder" version="3.0.1.1" targetFramework="net461" />
<package id="NHibernate" version="5.0.3" targetFramework="net461" />
<package id="NHibernateProfiler" version="4.0.4049" targetFramework="net461" />
<package id="NUnit" version="2.6.2" targetFramework="net461" />
<package id="Remotion.Linq" version="2.1.2" targetFramework="net461" />
<package id="Remotion.Linq.EagerFetching" version="2.1.0" targetFramework="net461" />
<package id="System.Diagnostics.DiagnosticSource" version="4.4.0" targetFramework="net461" />
<package id="WebActivator" version="1.4.4" targetFramework="net461" />
<package id="WebActivatorEx" version="2.0.5" targetFramework="net461" />
</packages>
Loading

0 comments on commit 884e23d

Please sign in to comment.