Npgsql package upgrade
This commit is contained in:
parent
501199ed70
commit
82de63a0ba
17 changed files with 53 additions and 23 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-10-01 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* packages.config:
|
||||||
|
* ITContentProvider.csproj:
|
||||||
|
|
||||||
2015-07-15 Paul Schneider <paul@pschneider.fr>
|
2015-07-15 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* ITContentProvider.csproj: Moves to Mono framework
|
* ITContentProvider.csproj: Moves to Mono framework
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
<Reference Include="System.Web.Http.WebHost" />
|
<Reference Include="System.Web.Http.WebHost" />
|
||||||
<Reference Include="System.Web" />
|
<Reference Include="System.Web" />
|
||||||
<Reference Include="Npgsql">
|
<Reference Include="Npgsql">
|
||||||
<HintPath>..\packages\Npgsql.2.2.5\lib\net45\Npgsql.dll</HintPath>
|
<HintPath>..\packages\Npgsql.3.0.3\lib\net45\Npgsql.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Npgsql" version="2.2.5" targetFramework="net451" />
|
<package id="Npgsql" version="3.0.3" targetFramework="net45" />
|
||||||
</packages>
|
</packages>
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-10-01 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* packages.config:
|
||||||
|
* NpgsqlBlogProvider.csproj:
|
||||||
|
|
||||||
2015-09-27 Paul Schneider <paul@pschneider.fr>
|
2015-09-27 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* NpgsqlBlogProvider.cs: Fixes the sql command preparation
|
* NpgsqlBlogProvider.cs: Fixes the sql command preparation
|
||||||
|
|
|
||||||
|
|
@ -43,10 +43,10 @@
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
<Reference Include="System.Configuration" />
|
<Reference Include="System.Configuration" />
|
||||||
<Reference Include="System.ComponentModel.DataAnnotations" />
|
<Reference Include="System.ComponentModel.DataAnnotations" />
|
||||||
<Reference Include="Npgsql">
|
|
||||||
<HintPath>..\packages\Npgsql.2.2.5\lib\net45\Npgsql.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="System.Web.Mvc" />
|
<Reference Include="System.Web.Mvc" />
|
||||||
|
<Reference Include="Npgsql">
|
||||||
|
<HintPath>..\packages\Npgsql.3.0.3\lib\net45\Npgsql.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ProjectExtensions>
|
<ProjectExtensions>
|
||||||
<MonoDevelop>
|
<MonoDevelop>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Npgsql" version="2.2.5" targetFramework="net451" />
|
<package id="Npgsql" version="3.0.3" targetFramework="net45" />
|
||||||
</packages>
|
</packages>
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-10-01 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* packages.config:
|
||||||
|
* NpgsqlContentProvider.csproj:
|
||||||
|
|
||||||
2015-09-27 Paul Schneider <paul@pschneider.fr>
|
2015-09-27 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* NpgsqlCircleProvider.cs: Fixes the sql command preparation
|
* NpgsqlCircleProvider.cs: Fixes the sql command preparation
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@
|
||||||
<Reference Include="System.Runtime.Serialization" />
|
<Reference Include="System.Runtime.Serialization" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="Npgsql">
|
<Reference Include="Npgsql">
|
||||||
<HintPath>..\packages\Npgsql.2.2.5\lib\net45\Npgsql.dll</HintPath>
|
<HintPath>..\packages\Npgsql.3.0.3\lib\net45\Npgsql.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Npgsql" version="2.2.5" targetFramework="net451" />
|
<package id="Npgsql" version="3.0.3" targetFramework="net45" />
|
||||||
</packages>
|
</packages>
|
||||||
|
|
@ -1,3 +1,10 @@
|
||||||
|
2015-10-01 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* packages.config:
|
||||||
|
* NpgsqlProfileProvider.cs:
|
||||||
|
* NpgsqlMRPProviders.csproj:
|
||||||
|
* NpgsqlMembershipProvider.cs:
|
||||||
|
|
||||||
2015-08-04 Paul Schneider <paul@pschneider.fr>
|
2015-08-04 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* NpgsqlMRPProviders.csproj: new NpgsqlUserName provider
|
* NpgsqlMRPProviders.csproj: new NpgsqlUserName provider
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@
|
||||||
<Reference Include="System.Data.Linq" />
|
<Reference Include="System.Data.Linq" />
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="Npgsql">
|
<Reference Include="Npgsql">
|
||||||
<HintPath>..\packages\Npgsql.2.2.5\lib\net45\Npgsql.dll</HintPath>
|
<HintPath>..\packages\Npgsql.3.0.3\lib\net45\Npgsql.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ProjectExtensions>
|
<ProjectExtensions>
|
||||||
|
|
|
||||||
|
|
@ -358,7 +358,10 @@ namespace Npgsql.Web
|
||||||
}
|
}
|
||||||
|
|
||||||
MembershipUser u = GetUser (username, false);
|
MembershipUser u = GetUser (username, false);
|
||||||
|
if (passwordQuestion == null)
|
||||||
|
passwordQuestion = "";
|
||||||
|
if (passwordAnswer == null)
|
||||||
|
passwordAnswer = "";
|
||||||
if (u == null) {
|
if (u == null) {
|
||||||
DateTime createDate = DateTime.Now;
|
DateTime createDate = DateTime.Now;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -202,7 +202,7 @@ namespace Npgsql.Web
|
||||||
return c;
|
return c;
|
||||||
using (NpgsqlConnection cnx = new NpgsqlConnection (connectionString))
|
using (NpgsqlConnection cnx = new NpgsqlConnection (connectionString))
|
||||||
using (NpgsqlCommand cmd = cnx.CreateCommand ()) {
|
using (NpgsqlCommand cmd = cnx.CreateCommand ()) {
|
||||||
cmd.CommandText = "SELECT * from profiledata,profiles where " +
|
cmd.CommandText = "SELECT * from profiledata, profiles where " +
|
||||||
"profiledata.uniqueid = profiles.uniqueid " +
|
"profiledata.uniqueid = profiles.uniqueid " +
|
||||||
"and profiles.username = @username " +
|
"and profiles.username = @username " +
|
||||||
"and profiles.applicationname = @appname";
|
"and profiles.applicationname = @appname";
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Npgsql" version="2.2.5" targetFramework="net451" />
|
<package id="Npgsql" version="3.0.3" targetFramework="net45" />
|
||||||
</packages>
|
</packages>
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
2015-10-01 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
|
* TestAPI.csproj:
|
||||||
|
* packages.config:
|
||||||
|
|
||||||
2015-07-17 Paul Schneider <paul@pschneider.fr>
|
2015-07-17 Paul Schneider <paul@pschneider.fr>
|
||||||
|
|
||||||
* TestAPI.csproj:
|
* TestAPI.csproj:
|
||||||
|
|
|
||||||
|
|
@ -40,21 +40,21 @@
|
||||||
<Reference Include="Machine.Specifications.Runner.Utility">
|
<Reference Include="Machine.Specifications.Runner.Utility">
|
||||||
<HintPath>..\packages\Machine.Specifications.Runner.Utility.0.9.0\lib\net45\Machine.Specifications.Runner.Utility.dll</HintPath>
|
<HintPath>..\packages\Machine.Specifications.Runner.Utility.0.9.0\lib\net45\Machine.Specifications.Runner.Utility.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Spark">
|
|
||||||
<HintPath>..\packages\Spark.1.7.5.3\lib\NET45\Spark.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Machine.Specifications.Reporting">
|
|
||||||
<HintPath>..\packages\Machine.Specifications.Reporting.0.9.0\lib\net45\Machine.Specifications.Reporting.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Machine.Specifications.Reporting.Templates">
|
|
||||||
<HintPath>..\packages\Machine.Specifications.Reporting.0.9.0\lib\net45\Machine.Specifications.Reporting.Templates.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="Machine.Specifications.Should">
|
|
||||||
<HintPath>..\packages\Machine.Specifications.Should.0.7.2\lib\net45\Machine.Specifications.Should.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="nunit.framework, Version=2.6.3.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
|
<Reference Include="nunit.framework, Version=2.6.3.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
|
||||||
<Package>nunit</Package>
|
<Package>nunit</Package>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="Machine.Specifications.Should">
|
||||||
|
<HintPath>..\packages\Machine.Specifications.Should.0.8.0\lib\net45\Machine.Specifications.Should.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Machine.Specifications.Reporting">
|
||||||
|
<HintPath>..\packages\Machine.Specifications.Reporting.0.9.1\lib\net45\Machine.Specifications.Reporting.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Machine.Specifications.Reporting.Templates">
|
||||||
|
<HintPath>..\packages\Machine.Specifications.Reporting.0.9.1\lib\net45\Machine.Specifications.Reporting.Templates.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Spark">
|
||||||
|
<HintPath>..\packages\Spark.1.8.1.0\lib\NET45\Spark.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Machine.Specifications" version="0.9.3" targetFramework="net45" />
|
<package id="Machine.Specifications" version="0.9.3" targetFramework="net45" />
|
||||||
<package id="Machine.Specifications.Reporting" version="0.9.0" targetFramework="net45" />
|
<package id="Machine.Specifications.Reporting" version="0.9.1" targetFramework="net45" />
|
||||||
<package id="Machine.Specifications.Runner.Utility" version="0.9.0" targetFramework="net45" />
|
<package id="Machine.Specifications.Runner.Utility" version="0.9.0" targetFramework="net45" />
|
||||||
<package id="Machine.Specifications.Should" version="0.7.2" targetFramework="net45" />
|
<package id="Machine.Specifications.Should" version="0.8.0" targetFramework="net45" />
|
||||||
<package id="Spark" version="1.7.5.3" targetFramework="net45" />
|
<package id="Spark" version="1.8.1.0" targetFramework="net45" />
|
||||||
</packages>
|
</packages>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue