Skip to content

Commit

Permalink
Updated packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
NimaAra committed May 25, 2019
1 parent 20971a1 commit 765bbef
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions Easy.Storage.Common/Easy.Storage.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.5.0"/>
<PackageReference Include="Dapper" Version="1.50.5" />
<PackageReference Include="Easy.Common" Version="2.9.9" />
<PackageReference Include="Microsoft.CSharp" Version="4.5.0" />
<PackageReference Include="Dapper" Version="1.60.6" />
<PackageReference Include="Easy.Common" Version="3.4.0" />
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Expand Down
2 changes: 1 addition & 1 deletion Easy.Storage.SQLServer/Easy.Storage.SqlServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Easy.Common" Version="2.9.9" />
<PackageReference Include="Easy.Common" Version="3.4.0" />
<PackageReference Include="Easy.Storage.Common" Version="0.9.2" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions Easy.Storage.SQLite/Easy.Storage.Sqlite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Easy.Common" Version="2.9.9" />
<PackageReference Include="Easy.Common" Version="3.4.0" />
<PackageReference Include="Easy.Storage.Common" Version="0.9.2" />
<PackageReference Include="System.Data.SQLite.Core.MSIL" Version="1.0.109" />
<PackageReference Include="System.Data.SQLite.Core.MSIL" Version="1.0.110" />
</ItemGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Expand Down
8 changes: 4 additions & 4 deletions Easy.Storage.Tests.Unit/Easy.Storage.Tests.Unit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.1.0" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
<PackageReference Include="Shouldly" Version="3.0.2" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.109.2" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.110" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public async Task When_creating_connection()
conn.ConnectionTimeout.ShouldBe(15);
conn.DataSource.ShouldBeNull();
conn.Database.ShouldBe("main");
conn.ServerVersion.ShouldBe("3.24.0");
conn.ServerVersion.ShouldBe("3.27.2");
conn.State.ShouldBe(ConnectionState.Closed);

var attachedDbs = await conn.GetAttachedDatabases();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void When_creating_connection()
conn.ConnectionTimeout.ShouldBe(15);
conn.DataSource.ShouldBeNull();
conn.Database.ShouldBe("main");
conn.ServerVersion.ShouldBe("3.24.0");
conn.ServerVersion.ShouldBe("3.27.2");
conn.State.ShouldBe(ConnectionState.Closed);
}
}
Expand All @@ -36,7 +36,7 @@ public void When_creating_connection_with_valid_connection_string()
conn.ConnectionTimeout.ShouldBe(15);
conn.DataSource.ShouldBeNull();
conn.Database.ShouldBe("main");
conn.ServerVersion.ShouldBe("3.24.0");
conn.ServerVersion.ShouldBe("3.27.2");
conn.State.ShouldBe(ConnectionState.Closed);
}
}
Expand All @@ -51,7 +51,7 @@ public void When_creating_connection_with_valid_connection_string_with_parameter
conn.ConnectionTimeout.ShouldBe(15);
conn.DataSource.ShouldBeNull();
conn.Database.ShouldBe("main");
conn.ServerVersion.ShouldBe("3.24.0");
conn.ServerVersion.ShouldBe("3.27.2");
conn.State.ShouldBe(ConnectionState.Closed);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void When_creating_connection()
conn.ConnectionTimeout.ShouldBe(15);
conn.DataSource.ShouldBeNull();
conn.Database.ShouldBe("main");
conn.ServerVersion.ShouldBe("3.24.0");
conn.ServerVersion.ShouldBe("3.27.2");
conn.State.ShouldBe(ConnectionState.Closed);
}
}
Expand All @@ -34,7 +34,7 @@ public void When_creating_connection_with_valid_connection_string()
conn.ConnectionTimeout.ShouldBe(15);
conn.DataSource.ShouldBeNull();
conn.Database.ShouldBe("main");
conn.ServerVersion.ShouldBe("3.24.0");
conn.ServerVersion.ShouldBe("3.27.2");
conn.State.ShouldBe(ConnectionState.Closed);
}
}
Expand Down

0 comments on commit 765bbef

Please sign in to comment.