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

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

rename category to Albums

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    <TargetFrameworkProfile>Client</TargetFrameworkProfile>
20  </PropertyGroup>
21  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22    <DebugSymbols>true</DebugSymbols>
23    <DebugType>full</DebugType>
24    <Optimize>false</Optimize>
25    <OutputPath>bin\Debug\</OutputPath>
26    <DefineConstants>DEBUG;TRACE</DefineConstants>
27    <ErrorReport>prompt</ErrorReport>
28    <WarningLevel>4</WarningLevel>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31    <DebugType>pdbonly</DebugType>
32    <Optimize>true</Optimize>
33    <OutputPath>bin\Release\</OutputPath>
34    <DefineConstants>TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37  </PropertyGroup>
38  <ItemGroup>
39    <Reference Include="System" />
40    <Reference Include="System.Core">
41      <RequiredTargetFramework>3.5</RequiredTargetFramework>
42    </Reference>
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\PwgAlbum.cs" />
54    <Compile Include="DTO\PwgConfidentLevelEnum.cs" />
55    <Compile Include="DTO\PwgFileTypeEnum.cs" />
56    <Compile Include="DTO\PwgAlbumPhotoDeletionModeEnum.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\PwgAlbumsProxy.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\PwgAlbumProxyResponse.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\IPwgAlbumsService.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\PwgAlbumsService.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.