Oreo.VersionUpdate.csproj 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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>{B48DFBE0-C3D0-4FE7-9F9F-1663FBFC7482}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Oreo.VersionUpdate</RootNamespace>
  11. <AssemblyName>Oreo.VersionUpdate</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <NuGetPackageImportStamp>
  16. </NuGetPackageImportStamp>
  17. <TargetFrameworkProfile />
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>3</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <PlatformTarget>AnyCPU</PlatformTarget>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <PropertyGroup>
  39. <ApplicationIcon>Images\Icons\app.ico</ApplicationIcon>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="Costura, Version=1.6.0.0, Culture=neutral, processorArchitecture=MSIL">
  43. <HintPath>..\packages\Costura.Fody.1.6.0\lib\dotnet\Costura.dll</HintPath>
  44. <Private>False</Private>
  45. </Reference>
  46. <Reference Include="Newtonsoft.Json">
  47. <HintPath>..\Dlls\Fork.Net\Newtonsoft.Json.dll</HintPath>
  48. </Reference>
  49. <Reference Include="System" />
  50. <Reference Include="System.Core" />
  51. <Reference Include="System.Xml.Linq" />
  52. <Reference Include="System.Data.DataSetExtensions" />
  53. <Reference Include="Microsoft.CSharp" />
  54. <Reference Include="System.Data" />
  55. <Reference Include="System.Deployment" />
  56. <Reference Include="System.Drawing" />
  57. <Reference Include="System.Net.Http" />
  58. <Reference Include="System.Windows.Forms" />
  59. <Reference Include="System.Xml" />
  60. <Reference Include="Y.Skin">
  61. <HintPath>..\Dlls\Fork.Net\Y.Skin.dll</HintPath>
  62. </Reference>
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Compile Include="Commons\P.cs" />
  66. <Compile Include="Commons\R.cs" />
  67. <Compile Include="Helpers\DataHelper.cs" />
  68. <Compile Include="Helpers\FileHelper.cs" />
  69. <Compile Include="Models\PluginModel.cs" />
  70. <Compile Include="Models\VersionModel.cs" />
  71. <Compile Include="Program.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <Compile Include="Views\MainForm.cs">
  74. <SubType>Form</SubType>
  75. </Compile>
  76. <Compile Include="Views\MainForm.Designer.cs">
  77. <DependentUpon>MainForm.cs</DependentUpon>
  78. </Compile>
  79. <EmbeddedResource Include="Properties\Resources.resx">
  80. <Generator>ResXFileCodeGenerator</Generator>
  81. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  82. <SubType>Designer</SubType>
  83. </EmbeddedResource>
  84. <Compile Include="Properties\Resources.Designer.cs">
  85. <AutoGen>True</AutoGen>
  86. <DependentUpon>Resources.resx</DependentUpon>
  87. <DesignTime>True</DesignTime>
  88. </Compile>
  89. <EmbeddedResource Include="Views\MainForm.resx">
  90. <DependentUpon>MainForm.cs</DependentUpon>
  91. </EmbeddedResource>
  92. <None Include="packages.config" />
  93. <None Include="Properties\Settings.settings">
  94. <Generator>SettingsSingleFileGenerator</Generator>
  95. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  96. </None>
  97. <Compile Include="Properties\Settings.Designer.cs">
  98. <AutoGen>True</AutoGen>
  99. <DependentUpon>Settings.settings</DependentUpon>
  100. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  101. </Compile>
  102. </ItemGroup>
  103. <ItemGroup>
  104. <None Include="App.config" />
  105. </ItemGroup>
  106. <ItemGroup>
  107. <ProjectReference Include="..\Y.Utils\Y.Utils.csproj">
  108. <Project>{5b8eeec7-aeb5-407d-9dc1-1c59e53f78d5}</Project>
  109. <Name>Y.Utils</Name>
  110. </ProjectReference>
  111. </ItemGroup>
  112. <ItemGroup>
  113. <None Include="FodyWeavers.xml" />
  114. <Content Include="Images\Icons\app.ico" />
  115. </ItemGroup>
  116. <ItemGroup>
  117. <Folder Include="Images\Backgrounds\" />
  118. </ItemGroup>
  119. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  120. <Import Project="..\packages\Fody.2.0.0\build\dotnet\Fody.targets" Condition="Exists('..\packages\Fody.2.0.0\build\dotnet\Fody.targets')" />
  121. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  122. <PropertyGroup>
  123. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  124. </PropertyGroup>
  125. <Error Condition="!Exists('..\packages\Fody.2.0.0\build\dotnet\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.2.0.0\build\dotnet\Fody.targets'))" />
  126. <Error Condition="!Exists('..\packages\Costura.Fody.1.6.0\build\dotnet\Costura.Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Costura.Fody.1.6.0\build\dotnet\Costura.Fody.targets'))" />
  127. </Target>
  128. <Import Project="..\packages\Costura.Fody.1.6.0\build\dotnet\Costura.Fody.targets" Condition="Exists('..\packages\Costura.Fody.1.6.0\build\dotnet\Costura.Fody.targets')" />
  129. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  130. Other similar extension points exist, see Microsoft.Common.targets.
  131. <Target Name="BeforeBuild">
  132. </Target>
  133. <Target Name="AfterBuild">
  134. </Target>
  135. -->
  136. </Project>