Optimizer.csproj 15 KB

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