M$ AspNet.WebApi 2.2
Testé avec mono current sous Debian Sid: l'import AspNet.WebApi 2.2
This commit is contained in:
parent
d40679cdf4
commit
1f64b48966
97 changed files with 7890 additions and 9323 deletions
|
|
@ -1,86 +0,0 @@
|
|||
2015-12-24 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.csproj: ajout d'une configuration de
|
||||
debuggage pour Lua
|
||||
|
||||
2015-12-23 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.cs: stocke la classe de commande
|
||||
|
||||
* packages.config:
|
||||
* NpgsqlContentProvider.csproj: mise à niveau Npgsql
|
||||
|
||||
2015-12-15 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.cs: bug fix
|
||||
|
||||
2015-12-09 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlCircleProvider.cs: liste les cercles auquels
|
||||
appartient un utilisateur.
|
||||
|
||||
* NpgsqlContentProvider.cs: Les commandes sont fortement
|
||||
typée.
|
||||
|
||||
2015-11-30 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.csproj: ...
|
||||
|
||||
2015-11-30 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.cs: Renseigne le code APE et la côte
|
||||
au profile préstataire
|
||||
|
||||
* NpgsqlSkillProvider.cs: refabrication
|
||||
|
||||
2015-11-28 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.cs: implemente un listing des
|
||||
prestataire du code APE en base.
|
||||
|
||||
* NpgsqlSkillProvider.cs: implemente un listing des domaines
|
||||
de compétence du préstataire en base.
|
||||
|
||||
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.csproj: nouvelles configurations de
|
||||
déploiement
|
||||
|
||||
2015-11-26 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.cs: reccupère la photo activité en
|
||||
base de données
|
||||
|
||||
2015-11-25 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.cs: implemente la gestion des
|
||||
activités côté base de donnée Npgsql
|
||||
|
||||
2015-11-23 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlSkillProvider.cs: refactorisation (-Skill+SkillEntity)
|
||||
|
||||
2015-11-19 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlContentProvider.csproj: adds a build target named
|
||||
"Lua"
|
||||
|
||||
2015-11-17 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlSkillProvider.cs: User's skills profile object now
|
||||
implements an `Id` property,
|
||||
in order to be rated, perhaps ranked in a near future. It's
|
||||
implemented as the legay profile id.
|
||||
|
||||
2015-11-17 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* NpgsqlSkillProvider.cs: implements a skill provider
|
||||
|
||||
* NpgsqlContentProvider.csproj: Imports the
|
||||
`NpgsqlSkillProvider` class
|
||||
|
||||
2015-11-08 Paul Schneider <paul@pschneider.fr>
|
||||
|
||||
* ChangeLog: this file should not be maintained as a git
|
||||
respository legacy file
|
||||
|
||||
|
|
@ -22,7 +22,6 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using System.Collections.Specialized;
|
||||
using System.Configuration;
|
||||
using System.Web.Mvc;
|
||||
using System.Web.Security;
|
||||
using Npgsql;
|
||||
using NpgsqlTypes;
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>WorkFlowProvider</RootNamespace>
|
||||
<AssemblyName>NpgsqlContentProvider</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
|
|
@ -64,14 +64,15 @@
|
|||
<Reference Include="System" />
|
||||
<Reference Include="System.Configuration" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Web.Mvc" />
|
||||
<Reference Include="System.Net.Http.Formatting" />
|
||||
<Reference Include="System.Web" />
|
||||
<Reference Include="System.Web.ApplicationServices" />
|
||||
<Reference Include="System.Runtime.Serialization" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="Npgsql">
|
||||
<HintPath>..\packages\Npgsql.3.0.4\lib\net45\Npgsql.dll</HintPath>
|
||||
<HintPath>..\packages\Npgsql.3.0.5\lib\net45\Npgsql.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json">
|
||||
<HintPath>..\packages\Newtonsoft.Json.8.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Npgsql" version="3.0.4" targetFramework="net45" />
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net451" />
|
||||
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net451" />
|
||||
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net451" />
|
||||
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net451" />
|
||||
<package id="Newtonsoft.Json" version="8.0.1" targetFramework="net451" />
|
||||
<package id="Npgsql" version="3.0.5" targetFramework="net451" />
|
||||
</packages>
|
||||
Loading…
Add table
Add a link
Reference in a new issue