Npgsql package upgrade

This commit is contained in:
Paul Schneider 2015-10-01 21:30:05 +02:00
commit 82de63a0ba
17 changed files with 53 additions and 23 deletions

View file

@ -1,3 +1,8 @@
2015-10-01 Paul Schneider <paul@pschneider.fr>
* packages.config:
* ITContentProvider.csproj:
2015-07-15 Paul Schneider <paul@pschneider.fr>
* ITContentProvider.csproj: Moves to Mono framework

View file

@ -40,7 +40,7 @@
<Reference Include="System.Web.Http.WebHost" />
<Reference Include="System.Web" />
<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>
</ItemGroup>
<ItemGroup>

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Npgsql" version="2.2.5" targetFramework="net451" />
<package id="Npgsql" version="3.0.3" targetFramework="net45" />
</packages>

View file

@ -1,3 +1,8 @@
2015-10-01 Paul Schneider <paul@pschneider.fr>
* packages.config:
* NpgsqlBlogProvider.csproj:
2015-09-27 Paul Schneider <paul@pschneider.fr>
* NpgsqlBlogProvider.cs: Fixes the sql command preparation

View file

@ -43,10 +43,10 @@
<Reference Include="System.Data" />
<Reference Include="System.Configuration" />
<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="Npgsql">
<HintPath>..\packages\Npgsql.3.0.3\lib\net45\Npgsql.dll</HintPath>
</Reference>
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Npgsql" version="2.2.5" targetFramework="net451" />
<package id="Npgsql" version="3.0.3" targetFramework="net45" />
</packages>

View file

@ -1,3 +1,8 @@
2015-10-01 Paul Schneider <paul@pschneider.fr>
* packages.config:
* NpgsqlContentProvider.csproj:
2015-09-27 Paul Schneider <paul@pschneider.fr>
* NpgsqlCircleProvider.cs: Fixes the sql command preparation

View file

@ -41,7 +41,7 @@
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml" />
<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>
</ItemGroup>
<ItemGroup>

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Npgsql" version="2.2.5" targetFramework="net451" />
<package id="Npgsql" version="3.0.3" targetFramework="net45" />
</packages>

View file

@ -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>
* NpgsqlMRPProviders.csproj: new NpgsqlUserName provider

View file

@ -48,7 +48,7 @@
<Reference Include="System.Data.Linq" />
<Reference Include="System.Core" />
<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>
</ItemGroup>
<ProjectExtensions>

View file

@ -358,7 +358,10 @@ namespace Npgsql.Web
}
MembershipUser u = GetUser (username, false);
if (passwordQuestion == null)
passwordQuestion = "";
if (passwordAnswer == null)
passwordAnswer = "";
if (u == null) {
DateTime createDate = DateTime.Now;

View file

@ -202,7 +202,7 @@ namespace Npgsql.Web
return c;
using (NpgsqlConnection cnx = new NpgsqlConnection (connectionString))
using (NpgsqlCommand cmd = cnx.CreateCommand ()) {
cmd.CommandText = "SELECT * from profiledata,profiles where " +
cmd.CommandText = "SELECT * from profiledata, profiles where " +
"profiledata.uniqueid = profiles.uniqueid " +
"and profiles.username = @username " +
"and profiles.applicationname = @appname";

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Npgsql" version="2.2.5" targetFramework="net451" />
<package id="Npgsql" version="3.0.3" targetFramework="net45" />
</packages>

View file

@ -1,3 +1,8 @@
2015-10-01 Paul Schneider <paul@pschneider.fr>
* TestAPI.csproj:
* packages.config:
2015-07-17 Paul Schneider <paul@pschneider.fr>
* TestAPI.csproj:

View file

@ -40,21 +40,21 @@
<Reference Include="Machine.Specifications.Runner.Utility">
<HintPath>..\packages\Machine.Specifications.Runner.Utility.0.9.0\lib\net45\Machine.Specifications.Runner.Utility.dll</HintPath>
</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">
<Package>nunit</Package>
</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>
<Compile Include="Properties\AssemblyInfo.cs" />

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<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.Should" version="0.7.2" targetFramework="net45" />
<package id="Spark" version="1.7.5.3" targetFramework="net45" />
<package id="Machine.Specifications.Should" version="0.8.0" targetFramework="net45" />
<package id="Spark" version="1.8.1.0" targetFramework="net45" />
</packages>