Optimizer.csproj 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  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>{96563750-9265-4ACC-8E9E-61930A208A4D}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Optimizer</RootNamespace>
  11. <AssemblyName>Optimizer</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <IsWebBootstrapper>false</IsWebBootstrapper>
  16. <TargetFrameworkProfile />
  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. <UseApplicationTrust>false</UseApplicationTrust>
  30. <BootstrapperEnabled>true</BootstrapperEnabled>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  33. <PlatformTarget>AnyCPU</PlatformTarget>
  34. <DebugSymbols>true</DebugSymbols>
  35. <DebugType>full</DebugType>
  36. <Optimize>false</Optimize>
  37. <OutputPath>..\bin\debug\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. <Prefer32Bit>false</Prefer32Bit>
  42. </PropertyGroup>
  43. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  44. <PlatformTarget>AnyCPU</PlatformTarget>
  45. <DebugType>pdbonly</DebugType>
  46. <Optimize>true</Optimize>
  47. <OutputPath>..\bin\release\</OutputPath>
  48. <DefineConstants>TRACE</DefineConstants>
  49. <ErrorReport>prompt</ErrorReport>
  50. <WarningLevel>4</WarningLevel>
  51. <Prefer32Bit>false</Prefer32Bit>
  52. </PropertyGroup>
  53. <PropertyGroup>
  54. <ApplicationManifest>app.manifest</ApplicationManifest>
  55. </PropertyGroup>
  56. <PropertyGroup>
  57. <ApplicationIcon>optimizer.ico</ApplicationIcon>
  58. </PropertyGroup>
  59. <PropertyGroup>
  60. <SignAssembly>false</SignAssembly>
  61. </PropertyGroup>
  62. <ItemGroup>
  63. <Reference Include="Microsoft.VisualBasic" />
  64. <Reference Include="Newtonsoft.Json">
  65. <HintPath>.\Newtonsoft.Json.dll</HintPath>
  66. </Reference>
  67. <Reference Include="System" />
  68. <Reference Include="System.Core" />
  69. <Reference Include="System.IO.Compression" />
  70. <Reference Include="System.Management" />
  71. <Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  72. <SpecificVersion>False</SpecificVersion>
  73. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Management.Automation\1.0.0.0__31bf3856ad364e35\System.Management.Automation.dll</HintPath>
  74. <Private>False</Private>
  75. </Reference>
  76. <Reference Include="System.ServiceProcess" />
  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.Net.Http" />
  84. <Reference Include="System.Windows.Forms" />
  85. <Reference Include="System.Xml" />
  86. </ItemGroup>
  87. <ItemGroup>
  88. <Compile Include="Controls\MoonList.cs">
  89. <SubType>Component</SubType>
  90. </Compile>
  91. <Compile Include="Controls\MoonTabs.cs">
  92. <SubType>Component</SubType>
  93. </Compile>
  94. <Compile Include="Controls\ColorOverrider.cs" />
  95. <Compile Include="Controls\MoonTip.cs">
  96. <SubType>Component</SubType>
  97. </Compile>
  98. <Compile Include="Controls\MoonToggle.cs">
  99. <SubType>Component</SubType>
  100. </Compile>
  101. <Compile Include="Controls\MoonTree.cs">
  102. <SubType>Component</SubType>
  103. </Compile>
  104. <Compile Include="Controls\ToggleCard.cs">
  105. <SubType>UserControl</SubType>
  106. </Compile>
  107. <Compile Include="Controls\ToggleCard.Designer.cs">
  108. <DependentUpon>ToggleCard.cs</DependentUpon>
  109. </Compile>
  110. <Compile Include="Forms\AboutForm.cs">
  111. <SubType>Form</SubType>
  112. </Compile>
  113. <Compile Include="Forms\AboutForm.Designer.cs">
  114. <DependentUpon>AboutForm.cs</DependentUpon>
  115. </Compile>
  116. <Compile Include="Controls\AppCard.cs">
  117. <SubType>UserControl</SubType>
  118. </Compile>
  119. <Compile Include="Controls\AppCard.Designer.cs">
  120. <DependentUpon>AppCard.cs</DependentUpon>
  121. </Compile>
  122. <Compile Include="Controls\MoonCheckList.cs">
  123. <SubType>Component</SubType>
  124. </Compile>
  125. <Compile Include="Controls\MoonProgress.cs">
  126. <SubType>Component</SubType>
  127. </Compile>
  128. <Compile Include="Controls\MoonMenuRenderer.cs" />
  129. <Compile Include="ErrorLogger.cs" />
  130. <Compile Include="FeedApp.cs" />
  131. <Compile Include="ByteSize\BinaryByteSize.cs" />
  132. <Compile Include="ByteSize\ByteSize.cs" />
  133. <Compile Include="ByteSize\DecimalByteSize.cs" />
  134. <Compile Include="CleanHelper.cs" />
  135. <Compile Include="Controls\MoonCheck.cs">
  136. <SubType>Component</SubType>
  137. </Compile>
  138. <Compile Include="Controls\MoonRadio.cs">
  139. <SubType>Component</SubType>
  140. </Compile>
  141. <Compile Include="EmbeddedAssembly.cs" />
  142. <Compile Include="Enums.cs" />
  143. <Compile Include="Forms\FirstRunForm.cs">
  144. <SubType>Form</SubType>
  145. </Compile>
  146. <Compile Include="Forms\FirstRunForm.Designer.cs">
  147. <DependentUpon>FirstRunForm.cs</DependentUpon>
  148. </Compile>
  149. <Compile Include="Forms\CleanPreviewForm.cs">
  150. <SubType>Form</SubType>
  151. </Compile>
  152. <Compile Include="Forms\CleanPreviewForm.Designer.cs">
  153. <DependentUpon>CleanPreviewForm.cs</DependentUpon>
  154. </Compile>
  155. <Compile Include="Hardware.cs" />
  156. <Compile Include="Forms\HostsEditorForm.cs">
  157. <SubType>Form</SubType>
  158. </Compile>
  159. <Compile Include="Forms\HostsEditorForm.Designer.cs">
  160. <DependentUpon>HostsEditorForm.cs</DependentUpon>
  161. </Compile>
  162. <Compile Include="HostsHelper.cs" />
  163. <Compile Include="IndiciumHelper.cs" />
  164. <Compile Include="Forms\InfoForm.cs">
  165. <SubType>Form</SubType>
  166. </Compile>
  167. <Compile Include="Forms\InfoForm.Designer.cs">
  168. <DependentUpon>InfoForm.cs</DependentUpon>
  169. </Compile>
  170. <Compile Include="Integrator.cs" />
  171. <Compile Include="Controls\ListViewColumnSorter.cs" />
  172. <Compile Include="Forms\MainForm.cs">
  173. <SubType>Form</SubType>
  174. </Compile>
  175. <Compile Include="Forms\MainForm.Designer.cs">
  176. <DependentUpon>MainForm.cs</DependentUpon>
  177. </Compile>
  178. <Compile Include="NetworkAdapter.cs" />
  179. <Compile Include="NetworkMonitor.cs" />
  180. <Compile Include="Optimize.cs" />
  181. <Compile Include="Options.cs" />
  182. <Compile Include="Program.cs" />
  183. <Compile Include="Properties\AssemblyInfo.cs" />
  184. <Compile Include="Forms\HelperForm.cs">
  185. <SubType>Form</SubType>
  186. </Compile>
  187. <Compile Include="Forms\HelperForm.Designer.cs">
  188. <DependentUpon>HelperForm.cs</DependentUpon>
  189. </Compile>
  190. <Compile Include="Required.cs" />
  191. <Compile Include="SilentConfig.cs" />
  192. <Compile Include="SilentOps.cs" />
  193. <Compile Include="Forms\SplashForm.cs">
  194. <SubType>Form</SubType>
  195. </Compile>
  196. <Compile Include="Forms\SplashForm.Designer.cs">
  197. <DependentUpon>SplashForm.cs</DependentUpon>
  198. </Compile>
  199. <Compile Include="Forms\StartupPreviewForm.cs">
  200. <SubType>Form</SubType>
  201. </Compile>
  202. <Compile Include="Forms\StartupPreviewForm.Designer.cs">
  203. <DependentUpon>StartupPreviewForm.cs</DependentUpon>
  204. </Compile>
  205. <Compile Include="Forms\StartupRestoreForm.cs">
  206. <SubType>Form</SubType>
  207. </Compile>
  208. <Compile Include="Forms\StartupRestoreForm.Designer.cs">
  209. <DependentUpon>StartupRestoreForm.cs</DependentUpon>
  210. </Compile>
  211. <Compile Include="StartupBackupItem.cs" />
  212. <Compile Include="StartupItem.cs" />
  213. <Compile Include="TokenPrivilege.cs" />
  214. <Compile Include="Utilities.cs" />
  215. <EmbeddedResource Include="Controls\ToggleCard.resx">
  216. <DependentUpon>ToggleCard.cs</DependentUpon>
  217. </EmbeddedResource>
  218. <EmbeddedResource Include="Forms\AboutForm.resx">
  219. <DependentUpon>AboutForm.cs</DependentUpon>
  220. <SubType>Designer</SubType>
  221. </EmbeddedResource>
  222. <EmbeddedResource Include="Controls\AppCard.resx">
  223. <DependentUpon>AppCard.cs</DependentUpon>
  224. </EmbeddedResource>
  225. <EmbeddedResource Include="Forms\FirstRunForm.resx">
  226. <DependentUpon>FirstRunForm.cs</DependentUpon>
  227. </EmbeddedResource>
  228. <EmbeddedResource Include="Forms\CleanPreviewForm.resx">
  229. <DependentUpon>CleanPreviewForm.cs</DependentUpon>
  230. </EmbeddedResource>
  231. <EmbeddedResource Include="Forms\HostsEditorForm.resx">
  232. <DependentUpon>HostsEditorForm.cs</DependentUpon>
  233. </EmbeddedResource>
  234. <EmbeddedResource Include="Forms\InfoForm.resx">
  235. <DependentUpon>InfoForm.cs</DependentUpon>
  236. </EmbeddedResource>
  237. <EmbeddedResource Include="Forms\MainForm.resx">
  238. <DependentUpon>MainForm.cs</DependentUpon>
  239. </EmbeddedResource>
  240. <EmbeddedResource Include="Properties\Resources.resx">
  241. <Generator>ResXFileCodeGenerator</Generator>
  242. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  243. <SubType>Designer</SubType>
  244. </EmbeddedResource>
  245. <Compile Include="Properties\Resources.Designer.cs">
  246. <AutoGen>True</AutoGen>
  247. <DependentUpon>Resources.resx</DependentUpon>
  248. <DesignTime>True</DesignTime>
  249. </Compile>
  250. <EmbeddedResource Include="Forms\HelperForm.resx">
  251. <DependentUpon>HelperForm.cs</DependentUpon>
  252. </EmbeddedResource>
  253. <EmbeddedResource Include="Forms\SplashForm.resx">
  254. <DependentUpon>SplashForm.cs</DependentUpon>
  255. </EmbeddedResource>
  256. <EmbeddedResource Include="Forms\StartupPreviewForm.resx">
  257. <DependentUpon>StartupPreviewForm.cs</DependentUpon>
  258. </EmbeddedResource>
  259. <EmbeddedResource Include="Forms\StartupRestoreForm.resx">
  260. <DependentUpon>StartupRestoreForm.cs</DependentUpon>
  261. </EmbeddedResource>
  262. <None Include="app.manifest">
  263. <SubType>Designer</SubType>
  264. </None>
  265. <None Include="packages.config" />
  266. <None Include="Properties\Settings.settings">
  267. <Generator>SettingsSingleFileGenerator</Generator>
  268. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  269. </None>
  270. <Compile Include="Properties\Settings.Designer.cs">
  271. <AutoGen>True</AutoGen>
  272. <DependentUpon>Settings.settings</DependentUpon>
  273. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  274. </Compile>
  275. <None Include="Resources\AddOpenWithCMD.reg" />
  276. <None Include="Resources\CN.json" />
  277. <None Include="Resources\CZ.json" />
  278. <None Include="Resources\DE.json" />
  279. <None Include="Resources\DesktopShortcuts.reg" />
  280. <None Include="Resources\DisableDefenderSafeMode1903Plus.bat" />
  281. <None Include="Resources\DisableOfficeTelemetry.reg" />
  282. <None Include="Resources\EN.json" />
  283. <None Include="Resources\EnableOfficeTelemetry.reg" />
  284. <None Include="Resources\EnableOfficeTelemetryTasks.bat" />
  285. <None Include="Resources\EnableTelemetryTasks.bat" />
  286. <None Include="Resources\EnableXboxTasks.bat" />
  287. <None Include="Resources\EL.json" />
  288. <None Include="Resources\ES.json" />
  289. <None Include="Resources\FlushDNSCache.bat" />
  290. <None Include="Resources\FR.json" />
  291. <None Include="Resources\GPEditEnablerInHome.bat" />
  292. <None Include="Resources\hosts" />
  293. <None Include="Resources\InstallTakeOwnership.reg" />
  294. <None Include="Resources\IT.json" />
  295. <None Include="Resources\KO.json" />
  296. <None Include="Resources\PowerMenu.reg" />
  297. <None Include="Resources\PT.json" />
  298. <None Include="Resources\RemoveTakeOwnership.reg" />
  299. <None Include="Resources\RU.json" />
  300. <None Include="Resources\SystemShortcuts.reg" />
  301. <None Include="Resources\SystemTools.reg" />
  302. <None Include="Resources\TR.json" />
  303. <None Include="Resources\TW.json" />
  304. <None Include="Resources\WindowsApps.reg" />
  305. </ItemGroup>
  306. <ItemGroup>
  307. <None Include="App.config" />
  308. </ItemGroup>
  309. <ItemGroup>
  310. <None Include="Resources\DisableOfficeTelemetryTasks.bat" />
  311. <None Include="Resources\DisableTelemetryTasks.bat" />
  312. <None Include="Resources\DisableXboxTasks.bat" />
  313. <None Include="Resources\OneDrive_Uninstaller.bin" />
  314. </ItemGroup>
  315. <ItemGroup>
  316. <BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
  317. <Visible>False</Visible>
  318. <ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
  319. <Install>true</Install>
  320. </BootstrapperPackage>
  321. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  322. <Visible>False</Visible>
  323. <ProductName>.NET Framework 3.5 SP1</ProductName>
  324. <Install>false</Install>
  325. </BootstrapperPackage>
  326. </ItemGroup>
  327. <ItemGroup>
  328. <COMReference Include="Shell32">
  329. <Guid>{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}</Guid>
  330. <VersionMajor>1</VersionMajor>
  331. <VersionMinor>0</VersionMinor>
  332. <Lcid>0</Lcid>
  333. <WrapperTool>tlbimp</WrapperTool>
  334. <Isolated>False</Isolated>
  335. <EmbedInteropTypes>True</EmbedInteropTypes>
  336. </COMReference>
  337. </ItemGroup>
  338. <ItemGroup>
  339. <None Include="Resources\korea.png" />
  340. <None Include="Resources\taiwan.png" />
  341. <None Include="Resources\united-kingdom.png" />
  342. <None Include="Resources\turkey.png" />
  343. <None Include="Resources\spain.png" />
  344. <None Include="Resources\russia.png" />
  345. <None Include="Resources\italy.png" />
  346. <None Include="Resources\greece.png" />
  347. <None Include="Resources\germany.png" />
  348. <None Include="Resources\france.png" />
  349. <None Include="Resources\czech.png" />
  350. <None Include="Resources\china.png" />
  351. <None Include="Resources\brazil.png" />
  352. <None Include="Resources\optimiz.png" />
  353. <None Include="Resources\logo.png" />
  354. <EmbeddedResource Include="Newtonsoft.Json.dll" />
  355. <Content Include="optimizer.ico" />
  356. </ItemGroup>
  357. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  358. <PropertyGroup>
  359. <PreBuildEvent>
  360. </PreBuildEvent>
  361. </PropertyGroup>
  362. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  363. Other similar extension points exist, see Microsoft.Common.targets.
  364. <Target Name="BeforeBuild">
  365. </Target>
  366. <Target Name="AfterBuild">
  367. </Target>
  368. -->
  369. </Project>