Oreo.FileMan.csproj 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" 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>{44A1823B-EA31-4BAF-B264-0471C149D703}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Oreo.FileMan</RootNamespace>
  11. <AssemblyName>Oreo.FileMan</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <NuGetPackageImportStamp>
  16. </NuGetPackageImportStamp>
  17. <TargetFrameworkProfile>
  18. </TargetFrameworkProfile>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  21. <PlatformTarget>AnyCPU</PlatformTarget>
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>bin\Debug\</OutputPath>
  26. <DefineConstants>DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <UseVSHostingProcess>true</UseVSHostingProcess>
  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\Release\</OutputPath>
  37. <DefineConstants>TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. <Prefer32Bit>false</Prefer32Bit>
  41. </PropertyGroup>
  42. <PropertyGroup>
  43. <ApplicationIcon>Images\Icon\Icon.ico</ApplicationIcon>
  44. </PropertyGroup>
  45. <PropertyGroup>
  46. <ApplicationManifest>Properties\app.manifest</ApplicationManifest>
  47. </PropertyGroup>
  48. <ItemGroup>
  49. <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  50. <HintPath>..\..\packages\EntityFramework.6.1.3\lib\net40\EntityFramework.dll</HintPath>
  51. <Private>True</Private>
  52. </Reference>
  53. <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  54. <HintPath>..\..\packages\EntityFramework.6.1.3\lib\net40\EntityFramework.SqlServer.dll</HintPath>
  55. <Private>True</Private>
  56. </Reference>
  57. <Reference Include="SQLite.CodeFirst, Version=1.3.1.18, Culture=neutral, PublicKeyToken=eb96ba0a78d831a7, processorArchitecture=MSIL">
  58. <HintPath>..\..\packages\SQLite.CodeFirst.1.3.1.18\lib\net40\SQLite.CodeFirst.dll</HintPath>
  59. <Private>True</Private>
  60. </Reference>
  61. <Reference Include="System" />
  62. <Reference Include="System.ComponentModel.DataAnnotations" />
  63. <Reference Include="System.Configuration" />
  64. <Reference Include="System.Core" />
  65. <Reference Include="System.Data.SQLite, Version=1.0.105.2, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
  66. <HintPath>..\..\packages\System.Data.SQLite.Core.1.0.105.2\lib\net40\System.Data.SQLite.dll</HintPath>
  67. <Private>True</Private>
  68. </Reference>
  69. <Reference Include="System.Data.SQLite.EF6, Version=1.0.105.2, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
  70. <HintPath>..\..\packages\System.Data.SQLite.EF6.1.0.105.2\lib\net40\System.Data.SQLite.EF6.dll</HintPath>
  71. <Private>True</Private>
  72. </Reference>
  73. <Reference Include="System.Data.SQLite.EF6.Migrations, Version=1.0.104.0, Culture=neutral, processorArchitecture=MSIL">
  74. <HintPath>..\..\packages\System.Data.SQLite.EF6.Migrations.1.0.104\lib\System.Data.SQLite.EF6.Migrations.dll</HintPath>
  75. <Private>True</Private>
  76. </Reference>
  77. <Reference Include="System.Data.SQLite.Linq, Version=1.0.105.2, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
  78. <HintPath>..\..\packages\System.Data.SQLite.Linq.1.0.105.2\lib\net40\System.Data.SQLite.Linq.dll</HintPath>
  79. <Private>True</Private>
  80. </Reference>
  81. <Reference Include="System.Xml.Linq" />
  82. <Reference Include="System.Data.DataSetExtensions" />
  83. <Reference Include="Microsoft.CSharp" />
  84. <Reference Include="System.Data" />
  85. <Reference Include="System.Deployment" />
  86. <Reference Include="System.Drawing" />
  87. <Reference Include="System.Windows.Forms" />
  88. <Reference Include="System.Xml" />
  89. <Reference Include="WindowsBase" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <Compile Include="Commons\R.cs" />
  93. <Compile Include="DatabaseEngine\Configuration.cs" />
  94. <Compile Include="DatabaseEngine\Mapping.cs" />
  95. <Compile Include="DatabaseEngine\Muse.cs" />
  96. <Compile Include="DatabaseEngine\SuperDb.cs" />
  97. <Compile Include="Models\BackupFiles.cs" />
  98. <Compile Include="Models\BackupPaths.cs" />
  99. <Compile Include="Models\UsnDrives.cs" />
  100. <Compile Include="Models\UsnFiles.cs" />
  101. <Compile Include="Partials\FileBackupPartial.cs">
  102. <SubType>UserControl</SubType>
  103. </Compile>
  104. <Compile Include="Partials\FileBackupPartial.Designer.cs">
  105. <DependentUpon>FileBackupPartial.cs</DependentUpon>
  106. </Compile>
  107. <Compile Include="Partials\FileDecryptPartial.cs">
  108. <SubType>UserControl</SubType>
  109. </Compile>
  110. <Compile Include="Partials\FileDecryptPartial.Designer.cs">
  111. <DependentUpon>FileDecryptPartial.cs</DependentUpon>
  112. </Compile>
  113. <Compile Include="Partials\FileEncryptPartial.cs">
  114. <SubType>UserControl</SubType>
  115. </Compile>
  116. <Compile Include="Partials\FileEncryptPartial.Designer.cs">
  117. <DependentUpon>FileEncryptPartial.cs</DependentUpon>
  118. </Compile>
  119. <Compile Include="Partials\FileTypePartial.cs">
  120. <SubType>UserControl</SubType>
  121. </Compile>
  122. <Compile Include="Partials\FileTypePartial.Designer.cs">
  123. <DependentUpon>FileTypePartial.cs</DependentUpon>
  124. </Compile>
  125. <Compile Include="Program.cs" />
  126. <Compile Include="Properties\AssemblyInfo.cs" />
  127. <Compile Include="Services\FileBackupService.cs" />
  128. <Compile Include="Views\FileRestoreForm.cs">
  129. <SubType>Form</SubType>
  130. </Compile>
  131. <Compile Include="Views\FileRestoreForm.Designer.cs">
  132. <DependentUpon>FileRestoreForm.cs</DependentUpon>
  133. </Compile>
  134. <Compile Include="Views\MainForm.cs">
  135. <SubType>Form</SubType>
  136. </Compile>
  137. <Compile Include="Views\MainForm.Designer.cs">
  138. <DependentUpon>MainForm.cs</DependentUpon>
  139. </Compile>
  140. <Compile Include="Views\SettingsForm.cs">
  141. <SubType>Form</SubType>
  142. </Compile>
  143. <Compile Include="Views\SettingsForm.Designer.cs">
  144. <DependentUpon>SettingsForm.cs</DependentUpon>
  145. </Compile>
  146. <EmbeddedResource Include="Partials\FileBackupPartial.resx">
  147. <DependentUpon>FileBackupPartial.cs</DependentUpon>
  148. </EmbeddedResource>
  149. <EmbeddedResource Include="Partials\FileDecryptPartial.resx">
  150. <DependentUpon>FileDecryptPartial.cs</DependentUpon>
  151. </EmbeddedResource>
  152. <EmbeddedResource Include="Partials\FileEncryptPartial.resx">
  153. <DependentUpon>FileEncryptPartial.cs</DependentUpon>
  154. </EmbeddedResource>
  155. <EmbeddedResource Include="Partials\FileTypePartial.resx">
  156. <DependentUpon>FileTypePartial.cs</DependentUpon>
  157. </EmbeddedResource>
  158. <EmbeddedResource Include="Properties\Resources.resx">
  159. <Generator>ResXFileCodeGenerator</Generator>
  160. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  161. <SubType>Designer</SubType>
  162. </EmbeddedResource>
  163. <Compile Include="Properties\Resources.Designer.cs">
  164. <AutoGen>True</AutoGen>
  165. <DependentUpon>Resources.resx</DependentUpon>
  166. <DesignTime>True</DesignTime>
  167. </Compile>
  168. <EmbeddedResource Include="Views\FileRestoreForm.resx">
  169. <DependentUpon>FileRestoreForm.cs</DependentUpon>
  170. </EmbeddedResource>
  171. <EmbeddedResource Include="Views\MainForm.resx">
  172. <DependentUpon>MainForm.cs</DependentUpon>
  173. </EmbeddedResource>
  174. <EmbeddedResource Include="Views\SettingsForm.resx">
  175. <DependentUpon>SettingsForm.cs</DependentUpon>
  176. </EmbeddedResource>
  177. <None Include="packages.config" />
  178. <None Include="Properties\app.manifest">
  179. <SubType>Designer</SubType>
  180. </None>
  181. <None Include="Properties\Settings.settings">
  182. <Generator>SettingsSingleFileGenerator</Generator>
  183. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  184. </None>
  185. <Compile Include="Properties\Settings.Designer.cs">
  186. <AutoGen>True</AutoGen>
  187. <DependentUpon>Settings.settings</DependentUpon>
  188. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  189. </Compile>
  190. </ItemGroup>
  191. <ItemGroup>
  192. <None Include="App.config" />
  193. </ItemGroup>
  194. <ItemGroup>
  195. <Folder Include="Helpers\" />
  196. </ItemGroup>
  197. <ItemGroup>
  198. <Content Include="Images\FileType\File-Collect-Press.png" />
  199. <Content Include="Images\FileType\File-Collect.png" />
  200. <Content Include="Images\FileType\File-Doc-Press.png" />
  201. <Content Include="Images\FileType\File-Doc.png" />
  202. <Content Include="Images\FileType\File-Download-Press.png" />
  203. <Content Include="Images\FileType\File-Download.png" />
  204. <Content Include="Images\FileType\File-Music-Press.png" />
  205. <Content Include="Images\FileType\File-Music.png" />
  206. <Content Include="Images\FileType\File-Picture-Press.png" />
  207. <Content Include="Images\FileType\File-Picture.png" />
  208. <Content Include="Images\FileType\File-Setup-Press.png" />
  209. <Content Include="Images\FileType\File-Setup.png" />
  210. <Content Include="Images\FileType\File-Video-Press.png" />
  211. <Content Include="Images\FileType\File-Video.png" />
  212. <Content Include="Images\FileType\File-Zip-Press.png" />
  213. <Content Include="Images\FileType\File-Zip.png" />
  214. <Content Include="Images\Icon\Logo.png" />
  215. <Content Include="Images\Icon\Icon.ico" />
  216. <Content Include="Images\WaitingGif\Wait-Hor.gif" />
  217. </ItemGroup>
  218. <ItemGroup>
  219. <ProjectReference Include="..\..\Fork.Net.Tools\Y.Skin\Y.Skin.csproj">
  220. <Project>{e9a97673-3e27-4a49-90bc-8806411a2f57}</Project>
  221. <Name>Y.Skin</Name>
  222. </ProjectReference>
  223. <ProjectReference Include="..\..\Fork.Net.Tools\Y.Utils\Y.Utils.csproj">
  224. <Project>{5b8eeec7-aeb5-407d-9dc1-1c59e53f78d5}</Project>
  225. <Name>Y.Utils</Name>
  226. </ProjectReference>
  227. </ItemGroup>
  228. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  229. <Import Project="..\..\packages\System.Data.SQLite.Core.1.0.105.2\build\net40\System.Data.SQLite.Core.targets" Condition="Exists('..\..\packages\System.Data.SQLite.Core.1.0.105.2\build\net40\System.Data.SQLite.Core.targets')" />
  230. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  231. <PropertyGroup>
  232. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  233. </PropertyGroup>
  234. <Error Condition="!Exists('..\..\packages\System.Data.SQLite.Core.1.0.105.2\build\net40\System.Data.SQLite.Core.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\System.Data.SQLite.Core.1.0.105.2\build\net40\System.Data.SQLite.Core.targets'))" />
  235. </Target>
  236. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  237. Other similar extension points exist, see Microsoft.Common.targets.
  238. <Target Name="BeforeBuild">
  239. </Target>
  240. <Target Name="AfterBuild">
  241. </Target>
  242. -->
  243. </Project>