Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated to latest MiniProfiler.
  • Loading branch information
danielwertheim committed Mar 11, 2013
1 parent aecd476 commit 0c8b955
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Expand Up @@ -14,12 +14,12 @@ public ProfiledConnectionWrapper(DbConnection connection, IDbProfiler profiler)

public IDbConnection GetInnerConnection()
{
return _conn;
return _connection;
}

protected override DbTransaction BeginDbTransaction(IsolationLevel isolationLevel)
{
return new ProfiledTransactionWrapper(_conn.BeginTransaction(isolationLevel), this);
return new ProfiledTransactionWrapper(_connection.BeginTransaction(isolationLevel), this);
}
}
}
Expand Up @@ -33,8 +33,9 @@
<NoWarn>1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Reference Include="MiniProfiler">
<HintPath>..\..\packages\MiniProfiler.2.0.2\lib\net40\MiniProfiler.dll</HintPath>
<Reference Include="MiniProfiler, Version=2.1.0.0, Culture=neutral, PublicKeyToken=b44f9351044011a3, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\MiniProfiler.2.1.0\lib\net40\MiniProfiler.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
2 changes: 1 addition & 1 deletion Source/Projects/SisoDb.MiniProfiler/packages.config
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="MiniProfiler" version="2.0.2" targetFramework="net40" />
<package id="MiniProfiler" version="2.1.0" targetFramework="net40" />
</packages>

0 comments on commit 0c8b955

Please sign in to comment.