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

Last change on this file since 9484 was 7149, checked in by bayral, 14 years ago

Piwigolib is now modify for mask the implementation of proxy.
Add start version of piwigo WPF

File size: 4.4 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\PwgCategory.cs" />
54    <Compile Include="DTO\PwgImage.cs" />
55    <Compile Include="DTO\Helper\PwgEnumHelper.cs" />
56    <Compile Include="DTO\PwgSessionStatusEnum.cs" />
57    <Compile Include="DTO\PwgTag.cs" />
58    <Compile Include="DTO\PwgSession.cs" />
59    <Compile Include="Properties\AssemblyInfo.cs" />
60    <Compile Include="Proxy\PwgImagesProxy.cs" />
61    <Compile Include="Proxy\PwgCategoriesProxy.cs" />
62    <Compile Include="Proxy\Helper\PwgProxyReponseHelper.cs" />
63    <Compile Include="Proxy\PwgTagsProxy.cs" />
64    <Compile Include="Proxy\Response\PwgAddRequestProxyResponse.cs" />
65    <Compile Include="Proxy\Response\PwgCategoriesProxyResponse.cs" />
66    <Compile Include="Proxy\Response\PwgImagesProxyResponse.cs" />
67    <Compile Include="Proxy\Response\PwgSessionProxyResponse.cs" />
68    <Compile Include="Proxy\Response\PwgBaseProxyReponse.cs" />
69    <Compile Include="Proxy\Response\PwgBaseProxyReponseRetourEnum.cs" />
70    <Compile Include="Proxy\Response\PwgTagsProxyResponse.cs" />
71    <Compile Include="Proxy\PwgConfigProxy.cs" />
72    <Compile Include="Proxy\PwgGenericProxy.cs" />
73    <Compile Include="Proxy\PwgProxyException.cs" />
74    <Compile Include="Proxy\PwgSessionProxy.cs" />
75    <Compile Include="IService\IPwgCategoriesService.cs" />
76    <Compile Include="IService\IPwgImagesService.cs" />
77    <Compile Include="IService\IPwgSessionService.cs" />
78    <Compile Include="IService\IPwgSetupService.cs" />
79    <Compile Include="IService\IPwgTagsService.cs" />
80    <Compile Include="Service\PwgSetupService.cs" />
81    <Compile Include="IService\PwgServiceProvider.cs" />
82    <Compile Include="Service\PwgCategoriesService.cs" />
83    <Compile Include="Service\PwgImagesService.cs" />
84    <Compile Include="Service\PwgTagsService.cs" />
85    <Compile Include="DTO\PwgServiceException.cs" />
86    <Compile Include="Service\PwgSessionService.cs" />
87  </ItemGroup>
88  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
89  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
90       Other similar extension points exist, see Microsoft.Common.targets.
91  <Target Name="BeforeBuild">
92  </Target>
93  <Target Name="AfterBuild">
94  </Target>
95  -->
96</Project>
Note: See TracBrowser for help on using the repository browser.