source: extensions/PiwigoLib/PiwigoLib/PiwigoLib.csproj @ 11890

Last change on this file since 11890 was 11890, checked in by bayral, 13 years ago

First draw of pwg.image.add and pwg.imae.addtrunck.
addtrunck seem to be ok, but image.add return server error 500.

File size: 4.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{64C068C5-DBFE-4712-9081-B9100698F35C}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>Com.Piwigo.Lib</RootNamespace>
12    <AssemblyName>PiwigoLib</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <FileUpgradeFlags>
16    </FileUpgradeFlags>
17    <OldToolsVersion>3.5</OldToolsVersion>
18    <UpgradeBackupLocation />
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>bin\Debug\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
28  </PropertyGroup>
29  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30    <DebugType>pdbonly</DebugType>
31    <Optimize>true</Optimize>
32    <OutputPath>bin\Release\</OutputPath>
33    <DefineConstants>TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36  </PropertyGroup>
37  <ItemGroup>
38    <Reference Include="System" />
39    <Reference Include="System.Core">
40      <RequiredTargetFramework>3.5</RequiredTargetFramework>
41    </Reference>
42    <Reference Include="System.Web" />
43    <Reference Include="System.Xml.Linq">
44      <RequiredTargetFramework>3.5</RequiredTargetFramework>
45    </Reference>
46    <Reference Include="System.Data.DataSetExtensions">
47      <RequiredTargetFramework>3.5</RequiredTargetFramework>
48    </Reference>
49    <Reference Include="System.Data" />
50    <Reference Include="System.Xml" />
51  </ItemGroup>
52  <ItemGroup>
53    <Compile Include="DTO\PwgConfidentLevelEnum.cs" />
54    <Compile Include="DTO\PwgFileTypeEnum.cs" />
55    <Compile Include="DTO\PwgCategoryPhotoDeletionModeEnum.cs" />
56    <Compile Include="DTO\PwgCategory.cs" />
57    <Compile Include="DTO\PwgImage.cs" />
58    <Compile Include="DTO\Helper\PwgEnumHelper.cs" />
59    <Compile Include="DTO\PwgSessionStatusEnum.cs" />
60    <Compile Include="DTO\PwgTag.cs" />
61    <Compile Include="DTO\PwgSession.cs" />
62    <Compile Include="Properties\AssemblyInfo.cs" />
63    <Compile Include="Proxy\Helper\PwgBase64Helper.cs" />
64    <Compile Include="Proxy\PwgImagesProxy.cs" />
65    <Compile Include="Proxy\PwgCategoriesProxy.cs" />
66    <Compile Include="Proxy\Helper\PwgProxyReponseHelper.cs" />
67    <Compile Include="Proxy\PwgTagsProxy.cs" />
68    <Compile Include="Proxy\Response\PwgAddRequestProxyResponse.cs" />
69    <Compile Include="Proxy\Response\PwgCategoriesProxyResponse.cs" />
70    <Compile Include="Proxy\Response\PwgImagesProxyResponse.cs" />
71    <Compile Include="Proxy\Response\PwgSessionProxyResponse.cs" />
72    <Compile Include="Proxy\Response\PwgBaseProxyReponse.cs" />
73    <Compile Include="Proxy\Response\PwgBaseProxyReponseRetourEnum.cs" />
74    <Compile Include="Proxy\Response\PwgTagsProxyResponse.cs" />
75    <Compile Include="Proxy\PwgConfigProxy.cs" />
76    <Compile Include="Proxy\PwgGenericProxy.cs" />
77    <Compile Include="Proxy\PwgProxyException.cs" />
78    <Compile Include="Proxy\PwgSessionProxy.cs" />
79    <Compile Include="IService\IPwgCategoriesService.cs" />
80    <Compile Include="IService\IPwgImagesService.cs" />
81    <Compile Include="IService\IPwgSessionService.cs" />
82    <Compile Include="IService\IPwgSetupService.cs" />
83    <Compile Include="IService\IPwgTagsService.cs" />
84    <Compile Include="Service\PwgSetupService.cs" />
85    <Compile Include="IService\PwgServiceProvider.cs" />
86    <Compile Include="Service\PwgCategoriesService.cs" />
87    <Compile Include="Service\PwgImagesService.cs" />
88    <Compile Include="Service\PwgTagsService.cs" />
89    <Compile Include="DTO\PwgServiceException.cs" />
90    <Compile Include="Service\PwgSessionService.cs" />
91  </ItemGroup>
92  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
93  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
94       Other similar extension points exist, see Microsoft.Common.targets.
95  <Target Name="BeforeBuild">
96  </Target>
97  <Target Name="AfterBuild">
98  </Target>
99  -->
100</Project>
Note: See TracBrowser for help on using the repository browser.