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

Last change on this file since 3861 was 3861, checked in by bayral, 15 years ago

support for pwg.images.rate

File size: 3.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="System" />
35    <Reference Include="System.Core">
36      <RequiredTargetFramework>3.5</RequiredTargetFramework>
37    </Reference>
38    <Reference Include="System.Web" />
39    <Reference Include="System.Xml.Linq">
40      <RequiredTargetFramework>3.5</RequiredTargetFramework>
41    </Reference>
42    <Reference Include="System.Data.DataSetExtensions">
43      <RequiredTargetFramework>3.5</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.Data" />
46    <Reference Include="System.Xml" />
47  </ItemGroup>
48  <ItemGroup>
49    <Compile Include="DTO\PwgCategory.cs" />
50    <Compile Include="DTO\PwgImage.cs" />
51    <Compile Include="DTO\Helper\PwgEnumHelper.cs" />
52    <Compile Include="DTO\PwgSessionStatusEnum.cs" />
53    <Compile Include="DTO\PwgTag.cs" />
54    <Compile Include="DTO\PwgSession.cs" />
55    <Compile Include="Properties\AssemblyInfo.cs" />
56    <Compile Include="Proxy\PwgImagesProxy.cs" />
57    <Compile Include="Proxy\PwgCategoriesProxy.cs" />
58    <Compile Include="Proxy\Helper\PwgProxyReponseHelper.cs" />
59    <Compile Include="Proxy\PwgTagsProxy.cs" />
60    <Compile Include="Proxy\Response\PwgAddRequestProxyResponse.cs" />
61    <Compile Include="Proxy\Response\PwgCategoriesProxyResponse.cs" />
62    <Compile Include="Proxy\Response\PwgImagesProxyResponse.cs" />
63    <Compile Include="Proxy\Response\PwgSessionProxyResponse.cs" />
64    <Compile Include="Proxy\Response\PwgBaseProxyReponse.cs" />
65    <Compile Include="Proxy\Response\PwgBaseProxyReponseRetourEnum.cs" />
66    <Compile Include="Proxy\Response\PwgTagsProxyResponse.cs" />
67    <Compile Include="Proxy\PwgConfigProxy.cs" />
68    <Compile Include="Proxy\PwgGenericProxy.cs" />
69    <Compile Include="Proxy\PwgProxyException.cs" />
70    <Compile Include="Proxy\PwgSessionProxy.cs" />
71    <Compile Include="Service\PwgCategoriesService.cs" />
72    <Compile Include="Service\PwgImagesService.cs" />
73    <Compile Include="Service\PwgTagsService.cs" />
74    <Compile Include="Service\PwgServiceException.cs" />
75    <Compile Include="Service\PwgSessionService.cs" />
76  </ItemGroup>
77  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
78  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
79       Other similar extension points exist, see Microsoft.Common.targets.
80  <Target Name="BeforeBuild">
81  </Target>
82  <Target Name="AfterBuild">
83  </Target>
84  -->
85</Project>
Note: See TracBrowser for help on using the repository browser.