source: extensions/PiwigoLib/PiwigoUpload/PiwigoUpload.csproj

Last change on this file was 13520, checked in by bayral, 12 years ago

new project for windows live publish plugin
Well advance single uploader

File size: 7.5 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\PwgUploadOption.cs" />
78    <Compile Include="DTO\SelectedList.cs" />
79    <Compile Include="Helper\LocalDataHelper.cs" />
80    <Compile Include="MainForm.cs">
81      <SubType>Form</SubType>
82    </Compile>
83    <Compile Include="MainForm.Designer.cs">
84      <DependentUpon>MainForm.cs</DependentUpon>
85    </Compile>
86    <Compile Include="Helper\MainAppHelper.cs" />
87    <Compile Include="Program.cs" />
88    <Compile Include="Properties\AssemblyInfo.cs" />
89    <Compile Include="Service\UploadToPiwigo.cs" />
90    <Compile Include="Service\Disconnect.cs" />
91    <Compile Include="Service\ServiceFactory.cs" />
92    <EmbeddedResource Include="MainForm.fr.resx">
93      <DependentUpon>MainForm.cs</DependentUpon>
94    </EmbeddedResource>
95    <EmbeddedResource Include="MainForm.resx">
96      <DependentUpon>MainForm.cs</DependentUpon>
97      <SubType>Designer</SubType>
98    </EmbeddedResource>
99    <EmbeddedResource Include="Properties\Resources.resx">
100      <Generator>ResXFileCodeGenerator</Generator>
101      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
102      <SubType>Designer</SubType>
103    </EmbeddedResource>
104    <Compile Include="Properties\Resources.Designer.cs">
105      <AutoGen>True</AutoGen>
106      <DependentUpon>Resources.resx</DependentUpon>
107      <DesignTime>True</DesignTime>
108    </Compile>
109    <None Include="app.config" />
110    <None Include="Properties\DataSources\Com.Piwigo.Uploader.DTO.ModelManager+ModelManagerBase.datasource" />
111    <None Include="Properties\Settings.settings">
112      <Generator>SettingsSingleFileGenerator</Generator>
113      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
114    </None>
115    <Compile Include="Properties\Settings.Designer.cs">
116      <AutoGen>True</AutoGen>
117      <DependentUpon>Settings.settings</DependentUpon>
118      <DesignTimeSharedInput>True</DesignTimeSharedInput>
119    </Compile>
120    <Compile Include="Service\Connect.cs" />
121    <Compile Include="Service\IService.cs" />
122    <Compile Include="Service\LoadFromDirectory.cs" />
123    <Compile Include="Settings.cs" />
124  </ItemGroup>
125  <ItemGroup>
126    <ProjectReference Include="..\PiwigoLib\PiwigoLib.csproj">
127      <Project>{64C068C5-DBFE-4712-9081-B9100698F35C}</Project>
128      <Name>PiwigoLib</Name>
129    </ProjectReference>
130  </ItemGroup>
131  <ItemGroup>
132    <Content Include="Pics\folder_html.png" />
133    <Content Include="Pics\folder_images.png" />
134    <Content Include="Pics\image.png" />
135    <Content Include="Resources\agt_update-product.png" />
136    <Content Include="Resources\cancel.png" />
137    <Content Include="Resources\cnrdelete-all.png" />
138    <Content Include="Resources\folder_new.png" />
139    <Content Include="Resources\folder_sent_mail.png" />
140    <Content Include="Resources\lin_agt_wrench.png" />
141    <None Include="Resources\image.png" />
142    <None Include="Resources\file_broken.png" />
143    <None Include="Resources\no.png" />
144    <None Include="Resources\ok.png" />
145  </ItemGroup>
146  <ItemGroup />
147  <ItemGroup>
148    <BootstrapperPackage Include=".NETFramework,Version=v4.0,Profile=Client">
149      <Visible>False</Visible>
150      <ProductName>Microsoft .NET Framework 4 Client Profile %28x86 and x64%29</ProductName>
151      <Install>true</Install>
152    </BootstrapperPackage>
153    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
154      <Visible>False</Visible>
155      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
156      <Install>false</Install>
157    </BootstrapperPackage>
158    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
159      <Visible>False</Visible>
160      <ProductName>.NET Framework 3.5 SP1</ProductName>
161      <Install>false</Install>
162    </BootstrapperPackage>
163    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
164      <Visible>False</Visible>
165      <ProductName>Windows Installer 3.1</ProductName>
166      <Install>true</Install>
167    </BootstrapperPackage>
168  </ItemGroup>
169  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
170  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
171       Other similar extension points exist, see Microsoft.Common.targets.
172  <Target Name="BeforeBuild">
173  </Target>
174  <Target Name="AfterBuild">
175  </Target>
176  -->
177</Project>
Note: See TracBrowser for help on using the repository browser.