Y.Test.csproj 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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>{E1897235-0E04-420D-B6D5-29BEA14DA1FD}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Y.Test</RootNamespace>
  11. <AssemblyName>Y.Test</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <NuGetPackageImportStamp>
  16. </NuGetPackageImportStamp>
  17. <PublishUrl>publish\</PublishUrl>
  18. <Install>true</Install>
  19. <InstallFrom>Disk</InstallFrom>
  20. <UpdateEnabled>false</UpdateEnabled>
  21. <UpdateMode>Foreground</UpdateMode>
  22. <UpdateInterval>7</UpdateInterval>
  23. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  24. <UpdatePeriodically>false</UpdatePeriodically>
  25. <UpdateRequired>false</UpdateRequired>
  26. <MapFileExtensions>true</MapFileExtensions>
  27. <ApplicationRevision>0</ApplicationRevision>
  28. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  29. <IsWebBootstrapper>false</IsWebBootstrapper>
  30. <UseApplicationTrust>false</UseApplicationTrust>
  31. <BootstrapperEnabled>true</BootstrapperEnabled>
  32. <TargetFrameworkProfile />
  33. </PropertyGroup>
  34. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  35. <PlatformTarget>AnyCPU</PlatformTarget>
  36. <DebugSymbols>true</DebugSymbols>
  37. <DebugType>full</DebugType>
  38. <Optimize>false</Optimize>
  39. <OutputPath>bin\Debug\</OutputPath>
  40. <DefineConstants>DEBUG;TRACE</DefineConstants>
  41. <ErrorReport>prompt</ErrorReport>
  42. <WarningLevel>4</WarningLevel>
  43. </PropertyGroup>
  44. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  45. <PlatformTarget>AnyCPU</PlatformTarget>
  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. <ItemGroup>
  54. <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  55. <HintPath>..\..\packages\EntityFramework.6.0.0\lib\net40\EntityFramework.dll</HintPath>
  56. <Private>True</Private>
  57. </Reference>
  58. <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  59. <HintPath>..\..\packages\EntityFramework.6.0.0\lib\net40\EntityFramework.SqlServer.dll</HintPath>
  60. <Private>True</Private>
  61. </Reference>
  62. <Reference Include="System" />
  63. <Reference Include="System.ComponentModel.DataAnnotations" />
  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">
  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.Linq">
  74. <HintPath>..\..\packages\System.Data.SQLite.Linq.1.0.105.2\lib\net40\System.Data.SQLite.Linq.dll</HintPath>
  75. <Private>True</Private>
  76. </Reference>
  77. <Reference Include="System.Xml.Linq" />
  78. <Reference Include="System.Data.DataSetExtensions" />
  79. <Reference Include="Microsoft.CSharp" />
  80. <Reference Include="System.Data" />
  81. <Reference Include="System.Deployment" />
  82. <Reference Include="System.Drawing" />
  83. <Reference Include="System.Windows.Forms" />
  84. <Reference Include="System.Xml" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <Compile Include="Commons\R.cs" />
  88. <Compile Include="Models\UpdateModel.cs" />
  89. <Compile Include="Models\WebAPIMessageModel.cs" />
  90. <Compile Include="Program.cs" />
  91. <Compile Include="Properties\AssemblyInfo.cs" />
  92. <Compile Include="Views\ChineseCalendarForm.cs">
  93. <SubType>Form</SubType>
  94. </Compile>
  95. <Compile Include="Views\ChineseCalendarForm.Designer.cs">
  96. <DependentUpon>ChineseCalendarForm.cs</DependentUpon>
  97. </Compile>
  98. <Compile Include="Views\Form1.cs">
  99. <SubType>Form</SubType>
  100. </Compile>
  101. <Compile Include="Views\Form1.Designer.cs">
  102. <DependentUpon>Form1.cs</DependentUpon>
  103. </Compile>
  104. <Compile Include="Views\MainForm.cs">
  105. <SubType>Form</SubType>
  106. </Compile>
  107. <Compile Include="Views\MainForm.Designer.cs">
  108. <DependentUpon>MainForm.cs</DependentUpon>
  109. </Compile>
  110. <Compile Include="Views\TestComputerInfoForm.cs">
  111. <SubType>Form</SubType>
  112. </Compile>
  113. <Compile Include="Views\TestComputerInfoForm.Designer.cs">
  114. <DependentUpon>TestComputerInfoForm.cs</DependentUpon>
  115. </Compile>
  116. <Compile Include="Views\TestCrossForm.cs">
  117. <SubType>Form</SubType>
  118. </Compile>
  119. <Compile Include="Views\TestCrossForm.Designer.cs">
  120. <DependentUpon>TestCrossForm.cs</DependentUpon>
  121. </Compile>
  122. <Compile Include="Views\TestIconGroupForm.cs">
  123. <SubType>Form</SubType>
  124. </Compile>
  125. <Compile Include="Views\TestIconGroupForm.Designer.cs">
  126. <DependentUpon>TestIconGroupForm.cs</DependentUpon>
  127. </Compile>
  128. <Compile Include="Views\TestInputForm.cs">
  129. <SubType>Form</SubType>
  130. </Compile>
  131. <Compile Include="Views\TestInputForm.Designer.cs">
  132. <DependentUpon>TestInputForm.cs</DependentUpon>
  133. </Compile>
  134. <Compile Include="Views\TestIrrForm.cs">
  135. <SubType>Form</SubType>
  136. </Compile>
  137. <Compile Include="Views\TestIrrForm.Designer.cs">
  138. <DependentUpon>TestIrrForm.cs</DependentUpon>
  139. </Compile>
  140. <Compile Include="Views\TestMove.cs">
  141. <SubType>Form</SubType>
  142. </Compile>
  143. <Compile Include="Views\TestMove.Designer.cs">
  144. <DependentUpon>TestMove.cs</DependentUpon>
  145. </Compile>
  146. <Compile Include="Views\TestPackForm.cs">
  147. <SubType>Form</SubType>
  148. </Compile>
  149. <Compile Include="Views\TestPackForm.Designer.cs">
  150. <DependentUpon>TestPackForm.cs</DependentUpon>
  151. </Compile>
  152. <Compile Include="Views\TestShadowForm.cs">
  153. <SubType>Form</SubType>
  154. </Compile>
  155. <Compile Include="Views\TestShadowForm.Designer.cs">
  156. <DependentUpon>TestShadowForm.cs</DependentUpon>
  157. </Compile>
  158. <Compile Include="Views\TestSimpleTitle.cs">
  159. <SubType>Form</SubType>
  160. </Compile>
  161. <Compile Include="Views\TestSimpleTitle.Designer.cs">
  162. <DependentUpon>TestSimpleTitle.cs</DependentUpon>
  163. </Compile>
  164. <Compile Include="Views\TestUpdateForm.cs">
  165. <SubType>Form</SubType>
  166. </Compile>
  167. <Compile Include="Views\TestUpdateForm.Designer.cs">
  168. <DependentUpon>TestUpdateForm.cs</DependentUpon>
  169. </Compile>
  170. <Compile Include="Views\TestWebForm.cs">
  171. <SubType>Form</SubType>
  172. </Compile>
  173. <Compile Include="Views\TestWebForm.Designer.cs">
  174. <DependentUpon>TestWebForm.cs</DependentUpon>
  175. </Compile>
  176. <EmbeddedResource Include="Properties\Resources.resx">
  177. <Generator>ResXFileCodeGenerator</Generator>
  178. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  179. <SubType>Designer</SubType>
  180. </EmbeddedResource>
  181. <Compile Include="Properties\Resources.Designer.cs">
  182. <AutoGen>True</AutoGen>
  183. <DependentUpon>Resources.resx</DependentUpon>
  184. <DesignTime>True</DesignTime>
  185. </Compile>
  186. <EmbeddedResource Include="Views\ChineseCalendarForm.resx">
  187. <DependentUpon>ChineseCalendarForm.cs</DependentUpon>
  188. </EmbeddedResource>
  189. <EmbeddedResource Include="Views\Form1.resx">
  190. <DependentUpon>Form1.cs</DependentUpon>
  191. </EmbeddedResource>
  192. <EmbeddedResource Include="Views\MainForm.resx">
  193. <DependentUpon>MainForm.cs</DependentUpon>
  194. </EmbeddedResource>
  195. <EmbeddedResource Include="Views\TestComputerInfoForm.resx">
  196. <DependentUpon>TestComputerInfoForm.cs</DependentUpon>
  197. </EmbeddedResource>
  198. <EmbeddedResource Include="Views\TestCrossForm.resx">
  199. <DependentUpon>TestCrossForm.cs</DependentUpon>
  200. </EmbeddedResource>
  201. <EmbeddedResource Include="Views\TestIconGroupForm.resx">
  202. <DependentUpon>TestIconGroupForm.cs</DependentUpon>
  203. </EmbeddedResource>
  204. <EmbeddedResource Include="Views\TestInputForm.resx">
  205. <DependentUpon>TestInputForm.cs</DependentUpon>
  206. </EmbeddedResource>
  207. <EmbeddedResource Include="Views\TestIrrForm.resx">
  208. <DependentUpon>TestIrrForm.cs</DependentUpon>
  209. </EmbeddedResource>
  210. <EmbeddedResource Include="Views\TestMove.resx">
  211. <DependentUpon>TestMove.cs</DependentUpon>
  212. </EmbeddedResource>
  213. <EmbeddedResource Include="Views\TestPackForm.resx">
  214. <DependentUpon>TestPackForm.cs</DependentUpon>
  215. </EmbeddedResource>
  216. <EmbeddedResource Include="Views\TestShadowForm.resx">
  217. <DependentUpon>TestShadowForm.cs</DependentUpon>
  218. </EmbeddedResource>
  219. <EmbeddedResource Include="Views\TestSimpleTitle.resx">
  220. <DependentUpon>TestSimpleTitle.cs</DependentUpon>
  221. </EmbeddedResource>
  222. <EmbeddedResource Include="Views\TestUpdateForm.resx">
  223. <DependentUpon>TestUpdateForm.cs</DependentUpon>
  224. </EmbeddedResource>
  225. <EmbeddedResource Include="Views\TestWebForm.resx">
  226. <DependentUpon>TestWebForm.cs</DependentUpon>
  227. </EmbeddedResource>
  228. <None Include="packages.config" />
  229. <None Include="Properties\Settings.settings">
  230. <Generator>SettingsSingleFileGenerator</Generator>
  231. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  232. </None>
  233. <Compile Include="Properties\Settings.Designer.cs">
  234. <AutoGen>True</AutoGen>
  235. <DependentUpon>Settings.settings</DependentUpon>
  236. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  237. </Compile>
  238. </ItemGroup>
  239. <ItemGroup>
  240. <None Include="App.config" />
  241. </ItemGroup>
  242. <ItemGroup>
  243. <BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
  244. <Visible>False</Visible>
  245. <ProductName>Microsoft .NET Framework 4.5.2 %28x86 和 x64%29</ProductName>
  246. <Install>true</Install>
  247. </BootstrapperPackage>
  248. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  249. <Visible>False</Visible>
  250. <ProductName>.NET Framework 3.5 SP1</ProductName>
  251. <Install>false</Install>
  252. </BootstrapperPackage>
  253. </ItemGroup>
  254. <ItemGroup>
  255. <Content Include="Images\IconGroup\icongroup_01.png" />
  256. <Content Include="Images\Temp\temp_01.png" />
  257. <Content Include="Images\Temp\temp_02.png" />
  258. <Content Include="Images\Temp\temp_03.png" />
  259. <None Include="FodyWeavers.xml" />
  260. <Content Include="Images\BackgroundImages\Rainbow.png" />
  261. </ItemGroup>
  262. <ItemGroup>
  263. <ProjectReference Include="..\..\Fork.Net.Tools\Y.Skin\Y.Skin.csproj">
  264. <Project>{e9a97673-3e27-4a49-90bc-8806411a2f57}</Project>
  265. <Name>Y.Skin</Name>
  266. </ProjectReference>
  267. <ProjectReference Include="..\..\Fork.Net.Tools\Y.Utils\Y.Utils.csproj">
  268. <Project>{5b8eeec7-aeb5-407d-9dc1-1c59e53f78d5}</Project>
  269. <Name>Y.Utils</Name>
  270. </ProjectReference>
  271. </ItemGroup>
  272. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  273. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  274. <PropertyGroup>
  275. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  276. </PropertyGroup>
  277. <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'))" />
  278. </Target>
  279. <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')" />
  280. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  281. Other similar extension points exist, see Microsoft.Common.targets.
  282. <Target Name="BeforeBuild">
  283. </Target>
  284. <Target Name="AfterBuild">
  285. </Target>
  286. -->
  287. </Project>