Skip to content

Commit

Permalink
some references cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
chester89 committed Feb 17, 2013
1 parent 5731b3b commit b0d5314
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 16 deletions.
Expand Up @@ -40,10 +40,7 @@
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Component.cs" />
Expand Down
12 changes: 11 additions & 1 deletion src/FluentNHibernate.Testing/App.config
@@ -1,9 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="connectionString" value="a-connection-string" />
</appSettings>
<connectionStrings>
<add name="main" connectionString="connection string" />
<add name="Sqlite_InMemory" providerName="System.Data.SQLite" connectionString="Data Source=:memory:;Version=3;New=True" />
</connectionStrings>
<system.data>
<DbProviderFactories>
<remove invariant="System.Data.SQLite" />
<add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
</DbProviderFactories>
</system.data>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
</configuration>
12 changes: 2 additions & 10 deletions src/FluentNHibernate.Testing/FluentNHibernate.Testing.csproj
Expand Up @@ -84,21 +84,13 @@
<HintPath>..\packages\RhinoMocks.3.6\lib\Rhino.Mocks.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.SQLite, Version=1.0.51.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\tools\sqlite\System.Data.SQLite.dll</HintPath>
<Reference Include="System.Data.SQLite">
<HintPath>..\packages\System.Data.SQLite.1.0.66.1\lib\System.Data.SQLite.DLL</HintPath>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="System.Web.Extensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion src/FluentNHibernate.Testing/MappingModel/SortingTests.cs
Expand Up @@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using FluentNHibernate.MappingModel.Output.Sorting;
using NUnit.Framework;
using System.Xml;
Expand Down
1 change: 0 additions & 1 deletion src/FluentNHibernate.Testing/Xml/MappingXmlTestHelper.cs
Expand Up @@ -4,7 +4,6 @@
using System.Text;
using System.Xml;
using NUnit.Framework;
using System.Xml.Linq;

namespace FluentNHibernate.Testing.Xml
{
Expand Down
1 change: 1 addition & 0 deletions src/FluentNHibernate.Testing/packages.config
Expand Up @@ -5,4 +5,5 @@
<package id="NHibernate" version="3.3.1.4000" targetFramework="net35" />
<package id="NUnit" version="2.5.7.10213" targetFramework="net35" />
<package id="RhinoMocks" version="3.6" targetFramework="net35" />
<package id="System.Data.SQLite" version="1.0.66.1" targetFramework="net35" />
</packages>
Binary file removed tools/sqlite/System.Data.SQLite.dll
Binary file not shown.

0 comments on commit b0d5314

Please sign in to comment.