UploadClient.csproj 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="..\..\packages\Costura.Fody.3.3.3\build\Costura.Fody.props" Condition="Exists('..\..\packages\Costura.Fody.3.3.3\build\Costura.Fody.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{0DECA493-5698-4249-9DF0-9B1C33E0720B}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>UploadClient</RootNamespace>
  11. <AssemblyName>UploadClient</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  15. <WarningLevel>4</WarningLevel>
  16. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  17. <Deterministic>true</Deterministic>
  18. <NuGetPackageImportStamp>
  19. </NuGetPackageImportStamp>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <PlatformTarget>AnyCPU</PlatformTarget>
  23. <DebugSymbols>true</DebugSymbols>
  24. <DebugType>full</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>..\..\bin\UploadClient\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <Prefer32Bit>false</Prefer32Bit>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  33. <PlatformTarget>AnyCPU</PlatformTarget>
  34. <DebugType>pdbonly</DebugType>
  35. <Optimize>true</Optimize>
  36. <OutputPath>..\..\Bin\UploadClient\</OutputPath>
  37. <DefineConstants>TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="Costura, Version=3.3.3.0, Culture=neutral, PublicKeyToken=9919ef960d84173d, processorArchitecture=MSIL">
  43. <HintPath>..\..\packages\Costura.Fody.3.3.3\lib\net40\Costura.dll</HintPath>
  44. </Reference>
  45. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  46. <HintPath>..\..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  47. </Reference>
  48. <Reference Include="SharpCompress, Version=0.24.0.0, Culture=neutral, PublicKeyToken=afb0a02973931d96, processorArchitecture=MSIL">
  49. <HintPath>..\..\packages\SharpCompress.0.24.0\lib\net45\SharpCompress.dll</HintPath>
  50. </Reference>
  51. <Reference Include="System" />
  52. <Reference Include="System.Data" />
  53. <Reference Include="System.Runtime.Serialization" />
  54. <Reference Include="System.Web" />
  55. <Reference Include="System.Xml" />
  56. <Reference Include="Microsoft.CSharp" />
  57. <Reference Include="System.Core" />
  58. <Reference Include="System.Xml.Linq" />
  59. <Reference Include="System.Data.DataSetExtensions" />
  60. <Reference Include="System.Net.Http" />
  61. <Reference Include="System.Xaml">
  62. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  63. </Reference>
  64. <Reference Include="WindowsBase" />
  65. <Reference Include="PresentationCore" />
  66. <Reference Include="PresentationFramework" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <ApplicationDefinition Include="App.xaml">
  70. <Generator>MSBuild:Compile</Generator>
  71. <SubType>Designer</SubType>
  72. </ApplicationDefinition>
  73. <Compile Include="Common\BaseWindow.cs" />
  74. <Compile Include="Common\Configuration\ConfigLoader.cs" />
  75. <Compile Include="Common\Configuration\ConfigManager.cs" />
  76. <Compile Include="Common\Configuration\ConfigSection.cs" />
  77. <Compile Include="Common\Configuration\IConfigUpdater.cs" />
  78. <Compile Include="Common\Configuration\LanguageItem.cs" />
  79. <Compile Include="Common\Configuration\TokenHelper.cs" />
  80. <Compile Include="Common\DesBuilder.cs" />
  81. <Compile Include="Common\Enums.cs" />
  82. <Compile Include="Common\FileHelper.cs" />
  83. <Compile Include="Common\InstallEntity.cs" />
  84. <Compile Include="Common\RegexHelper.cs" />
  85. <Compile Include="Common\SettingJsonGet.cs" />
  86. <Compile Include="Common\ThreadCallBackDelegate.cs" />
  87. <Compile Include="Common\TranslateHelper.cs" />
  88. <Compile Include="Common\TranslaterExtension.cs" />
  89. <Compile Include="Common\UpgradeFilePathReader.cs" />
  90. <Compile Include="Common\UpgradeHelper.cs" />
  91. <Compile Include="Common\UpgradePackage.cs" />
  92. <Compile Include="Common\UpgradePackageReader.cs" />
  93. <Compile Include="Common\UpgradePackageWriter.cs" />
  94. <Compile Include="RegexHelper.cs" />
  95. <Compile Include="UCWaitingProgress.xaml.cs">
  96. <DependentUpon>UCWaitingProgress.xaml</DependentUpon>
  97. </Compile>
  98. <Compile Include="WaitProcessWindow.xaml.cs">
  99. <DependentUpon>WaitProcessWindow.xaml</DependentUpon>
  100. </Compile>
  101. <Compile Include="WebOperate\WebHandle.cs" />
  102. <Page Include="MainWindow.xaml">
  103. <Generator>MSBuild:Compile</Generator>
  104. <SubType>Designer</SubType>
  105. </Page>
  106. <Compile Include="App.xaml.cs">
  107. <DependentUpon>App.xaml</DependentUpon>
  108. <SubType>Code</SubType>
  109. </Compile>
  110. <Compile Include="Cryptography.cs" />
  111. <Compile Include="FileHelper.cs" />
  112. <Compile Include="MainWindow.xaml.cs">
  113. <DependentUpon>MainWindow.xaml</DependentUpon>
  114. <SubType>Code</SubType>
  115. </Compile>
  116. <Page Include="UCWaitingProgress.xaml">
  117. <Generator>MSBuild:Compile</Generator>
  118. <SubType>Designer</SubType>
  119. </Page>
  120. <Page Include="WaitProcessWindow.xaml">
  121. <Generator>MSBuild:Compile</Generator>
  122. <SubType>Designer</SubType>
  123. </Page>
  124. </ItemGroup>
  125. <ItemGroup>
  126. <Compile Include="Properties\AssemblyInfo.cs">
  127. <SubType>Code</SubType>
  128. </Compile>
  129. <Compile Include="Properties\Resources.Designer.cs">
  130. <AutoGen>True</AutoGen>
  131. <DesignTime>True</DesignTime>
  132. <DependentUpon>Resources.resx</DependentUpon>
  133. </Compile>
  134. <Compile Include="Properties\Settings.Designer.cs">
  135. <AutoGen>True</AutoGen>
  136. <DependentUpon>Settings.settings</DependentUpon>
  137. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  138. </Compile>
  139. <EmbeddedResource Include="Properties\Resources.resx">
  140. <Generator>ResXFileCodeGenerator</Generator>
  141. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  142. </EmbeddedResource>
  143. <EmbeddedResource Include="Common\Languages\Chinese.json" />
  144. <EmbeddedResource Include="Common\Languages\English.json" />
  145. <None Include="packages.config" />
  146. <None Include="Properties\Settings.settings">
  147. <Generator>SettingsSingleFileGenerator</Generator>
  148. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  149. </None>
  150. <None Include="UFileConfig.conf">
  151. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  152. </None>
  153. </ItemGroup>
  154. <ItemGroup>
  155. <None Include="App.config" />
  156. </ItemGroup>
  157. <ItemGroup>
  158. <Resource Include="Loading.png" />
  159. </ItemGroup>
  160. <ItemGroup>
  161. <None Include="7z\7z.NET.dll">
  162. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  163. </None>
  164. <None Include="7z\7za.exe">
  165. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  166. </None>
  167. </ItemGroup>
  168. <ItemGroup>
  169. <None Include="OldAndroid\Readme.txt">
  170. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  171. </None>
  172. </ItemGroup>
  173. <ItemGroup>
  174. <ProjectReference Include="..\..\Common\Vinno.IUS.Common.Standard\Vinno.IUS.Common.csproj">
  175. <Project>{099CF965-2583-4B20-B849-B1302B579B0E}</Project>
  176. <Name>Vinno.IUS.Common</Name>
  177. </ProjectReference>
  178. <ProjectReference Include="..\..\Common\Vinno.vCloud.DiffPatch.Standard\Vinno.vCloud.DiffPatch.csproj">
  179. <Project>{0f5e1638-0e58-40d0-ad5e-8afc348ed300}</Project>
  180. <Name>Vinno.vCloud.DiffPatch</Name>
  181. </ProjectReference>
  182. <ProjectReference Include="..\..\Common\Vinno.vCloud.ObjectStorage.Authorization.Standard\Vinno.vCloud.ObjectStorage.Authorization.csproj">
  183. <Project>{EBAAA3A6-A0B3-45B0-8406-411F9BF99493}</Project>
  184. <Name>Vinno.vCloud.ObjectStorage.Authorization</Name>
  185. </ProjectReference>
  186. <ProjectReference Include="..\..\Common\Vinno.vCloud.ObjectStorage.Standard\Vinno.vCloud.ObjectStorage.csproj">
  187. <Project>{C06BD4C9-3EC6-4693-91FB-E5D6E1EDBE20}</Project>
  188. <Name>Vinno.vCloud.ObjectStorage</Name>
  189. </ProjectReference>
  190. <ProjectReference Include="..\..\Protocol\Vinno.vCloud.Protocol.Standard\Vinno.vCloud.Protocol.csproj">
  191. <Project>{1E3022D9-044F-4B71-BB04-466E75ED5870}</Project>
  192. <Name>Vinno.vCloud.Protocol</Name>
  193. </ProjectReference>
  194. </ItemGroup>
  195. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  196. <Import Project="..\..\packages\Fody.4.0.2\build\Fody.targets" Condition="Exists('..\..\packages\Fody.4.0.2\build\Fody.targets')" />
  197. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  198. <PropertyGroup>
  199. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  200. </PropertyGroup>
  201. <Error Condition="!Exists('..\..\packages\Fody.4.0.2\build\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Fody.4.0.2\build\Fody.targets'))" />
  202. <Error Condition="!Exists('..\..\packages\Costura.Fody.3.3.3\build\Costura.Fody.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Costura.Fody.3.3.3\build\Costura.Fody.props'))" />
  203. </Target>
  204. </Project>