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

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

rename category to Albums

File size: 7.0 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.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{CDE32E6E-52FF-41C6-ACEB-A8D2F7DDC0E2}</ProjectGuid>
9    <OutputType>WinExe</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>Com.Piwigo.Uploader</RootNamespace>
12    <AssemblyName>PiwigoUpload</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <FileUpgradeFlags>
16    </FileUpgradeFlags>
17    <OldToolsVersion>3.5</OldToolsVersion>
18    <UpgradeBackupLocation />
19    <IsWebBootstrapper>false</IsWebBootstrapper>
20    <PublishUrl>publish\</PublishUrl>
21    <Install>true</Install>
22    <InstallFrom>Disk</InstallFrom>
23    <UpdateEnabled>false</UpdateEnabled>
24    <UpdateMode>Foreground</UpdateMode>
25    <UpdateInterval>7</UpdateInterval>
26    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
27    <UpdatePeriodically>false</UpdatePeriodically>
28    <UpdateRequired>false</UpdateRequired>
29    <MapFileExtensions>true</MapFileExtensions>
30    <ApplicationRevision>0</ApplicationRevision>
31    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
32    <UseApplicationTrust>false</UseApplicationTrust>
33    <BootstrapperEnabled>true</BootstrapperEnabled>
34    <TargetFrameworkProfile>Client</TargetFrameworkProfile>
35  </PropertyGroup>
36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
37    <DebugSymbols>true</DebugSymbols>
38    <DebugType>full</DebugType>
39    <Optimize>false</Optimize>
40    <OutputPath>bin\Debug\</OutputPath>
41    <DefineConstants>DEBUG;TRACE</DefineConstants>
42    <ErrorReport>prompt</ErrorReport>
43    <WarningLevel>4</WarningLevel>
44  </PropertyGroup>
45  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
46    <DebugType>pdbonly</DebugType>
47    <Optimize>true</Optimize>
48    <OutputPath>bin\Release\</OutputPath>
49    <DefineConstants>TRACE</DefineConstants>
50    <ErrorReport>prompt</ErrorReport>
51    <WarningLevel>4</WarningLevel>
52  </PropertyGroup>
53  <PropertyGroup>
54    <StartupObject>Com.Piwigo.Uploader.Program</StartupObject>
55  </PropertyGroup>
56  <ItemGroup>
57    <Reference Include="System" />
58    <Reference Include="System.Core">
59      <RequiredTargetFramework>3.5</RequiredTargetFramework>
60    </Reference>
61    <Reference Include="System.Xml.Linq">
62      <RequiredTargetFramework>3.5</RequiredTargetFramework>
63    </Reference>
64    <Reference Include="System.Data.DataSetExtensions">
65      <RequiredTargetFramework>3.5</RequiredTargetFramework>
66    </Reference>
67    <Reference Include="System.Data" />
68    <Reference Include="System.Deployment" />
69    <Reference Include="System.Drawing" />
70    <Reference Include="System.Windows.Forms" />
71    <Reference Include="System.Xml" />
72  </ItemGroup>
73  <ItemGroup>
74    <Compile Include="DTO\LocalAlbumList.cs" />
75    <Compile Include="DTO\LocalPwgImage.cs" />
76    <Compile Include="DTO\ModelManager.cs" />
77    <Compile Include="DTO\SelectedList.cs" />
78    <Compile Include="MainForm.cs">
79      <SubType>Form</SubType>
80    </Compile>
81    <Compile Include="MainForm.Designer.cs">
82      <DependentUpon>MainForm.cs</DependentUpon>
83    </Compile>
84    <Compile Include="Helper\MainAppHelper.cs" />
85    <Compile Include="Program.cs" />
86    <Compile Include="Properties\AssemblyInfo.cs" />
87    <Compile Include="Service\UploadToPiwigo.cs" />
88    <Compile Include="Service\Disconnect.cs" />
89    <Compile Include="Service\ServiceFactory.cs" />
90    <EmbeddedResource Include="MainForm.fr.resx">
91      <DependentUpon>MainForm.cs</DependentUpon>
92    </EmbeddedResource>
93    <EmbeddedResource Include="MainForm.resx">
94      <DependentUpon>MainForm.cs</DependentUpon>
95      <SubType>Designer</SubType>
96    </EmbeddedResource>
97    <EmbeddedResource Include="Properties\Resources.resx">
98      <Generator>ResXFileCodeGenerator</Generator>
99      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
100      <SubType>Designer</SubType>
101    </EmbeddedResource>
102    <Compile Include="Properties\Resources.Designer.cs">
103      <AutoGen>True</AutoGen>
104      <DependentUpon>Resources.resx</DependentUpon>
105      <DesignTime>True</DesignTime>
106    </Compile>
107    <None Include="app.config" />
108    <None Include="Properties\DataSources\Com.Piwigo.Uploader.DTO.ModelManager+ModelManagerBase.datasource" />
109    <None Include="Properties\DataSources\Com.Piwigo.Uploader.DTO.SelectedPwgAlbumList.datasource" />
110    <None Include="Properties\Settings.settings">
111      <Generator>SettingsSingleFileGenerator</Generator>
112      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
113    </None>
114    <Compile Include="Properties\Settings.Designer.cs">
115      <AutoGen>True</AutoGen>
116      <DependentUpon>Settings.settings</DependentUpon>
117      <DesignTimeSharedInput>True</DesignTimeSharedInput>
118    </Compile>
119    <Compile Include="Service\Connect.cs" />
120    <Compile Include="Service\IService.cs" />
121    <Compile Include="Service\LoadFromDirectory.cs" />
122    <Compile Include="Settings.cs" />
123  </ItemGroup>
124  <ItemGroup>
125    <ProjectReference Include="..\PiwigoLib\PiwigoLib.csproj">
126      <Project>{64C068C5-DBFE-4712-9081-B9100698F35C}</Project>
127      <Name>PiwigoLib</Name>
128    </ProjectReference>
129  </ItemGroup>
130  <ItemGroup>
131    <Content Include="Pics\folder_html.png" />
132    <Content Include="Pics\folder_images.png" />
133    <Content Include="Pics\image.png" />
134  </ItemGroup>
135  <ItemGroup />
136  <ItemGroup>
137    <BootstrapperPackage Include=".NETFramework,Version=v4.0,Profile=Client">
138      <Visible>False</Visible>
139      <ProductName>Microsoft .NET Framework 4 Client Profile %28x86 and x64%29</ProductName>
140      <Install>true</Install>
141    </BootstrapperPackage>
142    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
143      <Visible>False</Visible>
144      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
145      <Install>false</Install>
146    </BootstrapperPackage>
147    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
148      <Visible>False</Visible>
149      <ProductName>.NET Framework 3.5 SP1</ProductName>
150      <Install>false</Install>
151    </BootstrapperPackage>
152    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
153      <Visible>False</Visible>
154      <ProductName>Windows Installer 3.1</ProductName>
155      <Install>true</Install>
156    </BootstrapperPackage>
157  </ItemGroup>
158  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
159  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
160       Other similar extension points exist, see Microsoft.Common.targets.
161  <Target Name="BeforeBuild">
162  </Target>
163  <Target Name="AfterBuild">
164  </Target>
165  -->
166</Project>
Note: See TracBrowser for help on using the repository browser.