PackageUploader.csproj 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{B01D2D18-A517-42DB-A454-6F477BC9C592}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>PackageUploader</RootNamespace>
  10. <AssemblyName>PackageUploader</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <WarningLevel>4</WarningLevel>
  15. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\OutputDll\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>..\OutputDll\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <PropertyGroup>
  37. <ApplicationIcon>Icon\YouTubeIcon.ico</ApplicationIcon>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="Aliyun.OSS, Version=2.9.0.0, Culture=neutral, PublicKeyToken=0ad4175f0dac0b9b, processorArchitecture=MSIL">
  41. <HintPath>..\packages\Aliyun.OSS.SDK.2.9.0\lib\Aliyun.OSS.dll</HintPath>
  42. </Reference>
  43. <Reference Include="ICSharpCode.SharpZipLib, Version=1.1.0.145, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
  44. <HintPath>..\packages\SharpZipLib.1.1.0\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
  45. </Reference>
  46. <Reference Include="INIFileParser, Version=2.5.2.0, Culture=neutral, PublicKeyToken=79af7b307b65cf3c, processorArchitecture=MSIL">
  47. <HintPath>..\packages\ini-parser.2.5.2\lib\net20\INIFileParser.dll</HintPath>
  48. </Reference>
  49. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  50. <HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  51. </Reference>
  52. <Reference Include="SAGA.DotNetUtils, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  53. <SpecificVersion>False</SpecificVersion>
  54. <HintPath>Dlls\SAGA.DotNetUtils.dll</HintPath>
  55. </Reference>
  56. <Reference Include="System" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.Xml" />
  59. <Reference Include="Microsoft.CSharp" />
  60. <Reference Include="System.Core" />
  61. <Reference Include="System.Xml.Linq" />
  62. <Reference Include="System.Data.DataSetExtensions" />
  63. <Reference Include="System.Net.Http" />
  64. <Reference Include="System.Xaml">
  65. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  66. </Reference>
  67. <Reference Include="WindowsBase" />
  68. <Reference Include="PresentationCore" />
  69. <Reference Include="PresentationFramework" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <ApplicationDefinition Include="App.xaml">
  73. <Generator>MSBuild:Compile</Generator>
  74. <SubType>Designer</SubType>
  75. </ApplicationDefinition>
  76. <Compile Include="Compress\CompressT.cs" />
  77. <Compile Include="Compress\CompressArgs.cs" />
  78. <Compile Include="Http\FileContent.cs" />
  79. <Compile Include="Http\PutFlieContent.cs" />
  80. <Compile Include="Http\StreamProgressArgs.cs" />
  81. <Compile Include="Utils\Untility.cs" />
  82. <Compile Include="Utils\Extend.cs" />
  83. <Compile Include="Utils\FileStoreHandler.cs" />
  84. <Page Include="MainWindow.xaml">
  85. <Generator>MSBuild:Compile</Generator>
  86. <SubType>Designer</SubType>
  87. </Page>
  88. <Compile Include="App.xaml.cs">
  89. <DependentUpon>App.xaml</DependentUpon>
  90. <SubType>Code</SubType>
  91. </Compile>
  92. <Compile Include="MainWindow.xaml.cs">
  93. <DependentUpon>MainWindow.xaml</DependentUpon>
  94. <SubType>Code</SubType>
  95. </Compile>
  96. </ItemGroup>
  97. <ItemGroup>
  98. <Compile Include="Properties\AssemblyInfo.cs">
  99. <SubType>Code</SubType>
  100. </Compile>
  101. <Compile Include="Properties\Resources.Designer.cs">
  102. <AutoGen>True</AutoGen>
  103. <DesignTime>True</DesignTime>
  104. <DependentUpon>Resources.resx</DependentUpon>
  105. </Compile>
  106. <Compile Include="Properties\Settings.Designer.cs">
  107. <AutoGen>True</AutoGen>
  108. <DependentUpon>Settings.settings</DependentUpon>
  109. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  110. </Compile>
  111. <EmbeddedResource Include="Properties\Resources.resx">
  112. <Generator>ResXFileCodeGenerator</Generator>
  113. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  114. </EmbeddedResource>
  115. <None Include="packages.config" />
  116. <None Include="Properties\Settings.settings">
  117. <Generator>SettingsSingleFileGenerator</Generator>
  118. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  119. </None>
  120. </ItemGroup>
  121. <ItemGroup>
  122. <None Include="App.config" />
  123. </ItemGroup>
  124. <ItemGroup>
  125. <Resource Include="Readme.txt" />
  126. </ItemGroup>
  127. <ItemGroup>
  128. <Resource Include="Image\folder.png">
  129. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  130. </Resource>
  131. </ItemGroup>
  132. <ItemGroup>
  133. <ProjectReference Include="..\Update\Update.csproj">
  134. <Project>{62a86c88-5741-4261-94a1-254bc86331d4}</Project>
  135. <Name>Update</Name>
  136. </ProjectReference>
  137. </ItemGroup>
  138. <ItemGroup>
  139. <Resource Include="Icon\YouTubeIcon.ico" />
  140. </ItemGroup>
  141. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  142. </Project>