Optimizer.csproj 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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="AboutForm.cs">
  89. <SubType>Form</SubType>
  90. </Compile>
  91. <Compile Include="AboutForm.Designer.cs">
  92. <DependentUpon>AboutForm.cs</DependentUpon>
  93. </Compile>
  94. <Compile Include="AppCard.cs">
  95. <SubType>UserControl</SubType>
  96. </Compile>
  97. <Compile Include="AppCard.Designer.cs">
  98. <DependentUpon>AppCard.cs</DependentUpon>
  99. </Compile>
  100. <Compile Include="ColoredControls\ColoredProgress.cs">
  101. <SubType>Component</SubType>
  102. </Compile>
  103. <Compile Include="ColoredControls\ToolStripRendererMaterial.cs" />
  104. <Compile Include="ErrorLogger.cs" />
  105. <Compile Include="FeedApp.cs" />
  106. <Compile Include="ByteSize\BinaryByteSize.cs" />
  107. <Compile Include="ByteSize\ByteSize.cs" />
  108. <Compile Include="ByteSize\DecimalByteSize.cs" />
  109. <Compile Include="CleanHelper.cs" />
  110. <Compile Include="ColoredControls\ColoredCheckBox.cs">
  111. <SubType>Component</SubType>
  112. </Compile>
  113. <Compile Include="ColoredControls\ColoredRadioButton.cs">
  114. <SubType>Component</SubType>
  115. </Compile>
  116. <Compile Include="EmbeddedAssembly.cs" />
  117. <Compile Include="Enums.cs" />
  118. <Compile Include="FirstRunForm.cs">
  119. <SubType>Form</SubType>
  120. </Compile>
  121. <Compile Include="FirstRunForm.Designer.cs">
  122. <DependentUpon>FirstRunForm.cs</DependentUpon>
  123. </Compile>
  124. <Compile Include="Hardware.cs" />
  125. <Compile Include="HostsEditorForm.cs">
  126. <SubType>Form</SubType>
  127. </Compile>
  128. <Compile Include="HostsEditorForm.Designer.cs">
  129. <DependentUpon>HostsEditorForm.cs</DependentUpon>
  130. </Compile>
  131. <Compile Include="HostsHelper.cs" />
  132. <Compile Include="IndiciumHelper.cs" />
  133. <Compile Include="InfoForm.cs">
  134. <SubType>Form</SubType>
  135. </Compile>
  136. <Compile Include="InfoForm.Designer.cs">
  137. <DependentUpon>InfoForm.cs</DependentUpon>
  138. </Compile>
  139. <Compile Include="Integrator.cs" />
  140. <Compile Include="ListViewColumnSorter.cs" />
  141. <Compile Include="MainForm.cs">
  142. <SubType>Form</SubType>
  143. </Compile>
  144. <Compile Include="MainForm.Designer.cs">
  145. <DependentUpon>MainForm.cs</DependentUpon>
  146. </Compile>
  147. <Compile Include="NetworkAdapter.cs" />
  148. <Compile Include="NetworkMonitor.cs" />
  149. <Compile Include="Optimize.cs" />
  150. <Compile Include="Options.cs" />
  151. <Compile Include="Program.cs" />
  152. <Compile Include="Properties\AssemblyInfo.cs" />
  153. <Compile Include="HelperForm.cs">
  154. <SubType>Form</SubType>
  155. </Compile>
  156. <Compile Include="HelperForm.Designer.cs">
  157. <DependentUpon>HelperForm.cs</DependentUpon>
  158. </Compile>
  159. <Compile Include="Required.cs" />
  160. <Compile Include="SilentConfig.cs" />
  161. <Compile Include="SilentOps.cs" />
  162. <Compile Include="StartupPreviewForm.cs">
  163. <SubType>Form</SubType>
  164. </Compile>
  165. <Compile Include="StartupPreviewForm.Designer.cs">
  166. <DependentUpon>StartupPreviewForm.cs</DependentUpon>
  167. </Compile>
  168. <Compile Include="StartupRestoreForm.cs">
  169. <SubType>Form</SubType>
  170. </Compile>
  171. <Compile Include="StartupRestoreForm.Designer.cs">
  172. <DependentUpon>StartupRestoreForm.cs</DependentUpon>
  173. </Compile>
  174. <Compile Include="StartupBackupItem.cs" />
  175. <Compile Include="StartupItem.cs" />
  176. <Compile Include="ToggleSwitch\ImageHelper.cs" />
  177. <Compile Include="ToggleSwitch\ToggleSwitch.cs">
  178. <SubType>Component</SubType>
  179. </Compile>
  180. <Compile Include="ToggleSwitch\ToggleSwitchRenderer.cs" />
  181. <Compile Include="ToggleSwitch\ToggleSwitchRendererBase.cs" />
  182. <Compile Include="Utilities.cs" />
  183. <EmbeddedResource Include="AboutForm.resx">
  184. <DependentUpon>AboutForm.cs</DependentUpon>
  185. <SubType>Designer</SubType>
  186. </EmbeddedResource>
  187. <EmbeddedResource Include="AppCard.resx">
  188. <DependentUpon>AppCard.cs</DependentUpon>
  189. </EmbeddedResource>
  190. <EmbeddedResource Include="FirstRunForm.resx">
  191. <DependentUpon>FirstRunForm.cs</DependentUpon>
  192. </EmbeddedResource>
  193. <EmbeddedResource Include="HostsEditorForm.resx">
  194. <DependentUpon>HostsEditorForm.cs</DependentUpon>
  195. </EmbeddedResource>
  196. <EmbeddedResource Include="InfoForm.resx">
  197. <DependentUpon>InfoForm.cs</DependentUpon>
  198. </EmbeddedResource>
  199. <EmbeddedResource Include="MainForm.resx">
  200. <DependentUpon>MainForm.cs</DependentUpon>
  201. </EmbeddedResource>
  202. <EmbeddedResource Include="Properties\Resources.resx">
  203. <Generator>ResXFileCodeGenerator</Generator>
  204. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  205. <SubType>Designer</SubType>
  206. </EmbeddedResource>
  207. <Compile Include="Properties\Resources.Designer.cs">
  208. <AutoGen>True</AutoGen>
  209. <DependentUpon>Resources.resx</DependentUpon>
  210. <DesignTime>True</DesignTime>
  211. </Compile>
  212. <EmbeddedResource Include="HelperForm.resx">
  213. <DependentUpon>HelperForm.cs</DependentUpon>
  214. </EmbeddedResource>
  215. <EmbeddedResource Include="StartupPreviewForm.resx">
  216. <DependentUpon>StartupPreviewForm.cs</DependentUpon>
  217. </EmbeddedResource>
  218. <EmbeddedResource Include="StartupRestoreForm.resx">
  219. <DependentUpon>StartupRestoreForm.cs</DependentUpon>
  220. </EmbeddedResource>
  221. <None Include="app.manifest">
  222. <SubType>Designer</SubType>
  223. </None>
  224. <None Include="packages.config" />
  225. <None Include="Properties\Settings.settings">
  226. <Generator>SettingsSingleFileGenerator</Generator>
  227. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  228. </None>
  229. <Compile Include="Properties\Settings.Designer.cs">
  230. <AutoGen>True</AutoGen>
  231. <DependentUpon>Settings.settings</DependentUpon>
  232. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  233. </Compile>
  234. <None Include="Resources\DE.json" />
  235. <None Include="Resources\DesktopShortcuts.reg" />
  236. <None Include="Resources\DisableDefenderSafeMode1903Plus.bat" />
  237. <None Include="Resources\DisableOfficeTelemetry.reg" />
  238. <None Include="Resources\EN.json" />
  239. <None Include="Resources\EnableOfficeTelemetry.reg" />
  240. <None Include="Resources\EnableOfficeTelemetryTasks.bat" />
  241. <None Include="Resources\EnableTelemetryTasks.bat" />
  242. <None Include="Resources\EnableXboxTasks.bat" />
  243. <None Include="Resources\EL.json" />
  244. <None Include="Resources\ES.json" />
  245. <None Include="Resources\FlushDNSCache.bat" />
  246. <None Include="Resources\FR.json" />
  247. <None Include="Resources\GPEditEnablerInHome.bat" />
  248. <None Include="Resources\hosts" />
  249. <None Include="Resources\InstallTakeOwnership.reg" />
  250. <None Include="Resources\PowerMenu.reg" />
  251. <None Include="Resources\PT.json" />
  252. <None Include="Resources\RemoveTakeOwnership.reg" />
  253. <None Include="Resources\RU.json" />
  254. <None Include="Resources\SystemShortcuts.reg" />
  255. <None Include="Resources\SystemTools.reg" />
  256. <None Include="Resources\TR.json" />
  257. <None Include="Resources\WindowsApps.reg" />
  258. </ItemGroup>
  259. <ItemGroup>
  260. <None Include="App.config" />
  261. </ItemGroup>
  262. <ItemGroup>
  263. <None Include="Resources\DisableOfficeTelemetryTasks.bat" />
  264. <None Include="Resources\DisableTelemetryTasks.bat" />
  265. <None Include="Resources\DisableXboxTasks.bat" />
  266. <None Include="Resources\OneDrive_Uninstaller.bin" />
  267. </ItemGroup>
  268. <ItemGroup>
  269. <BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
  270. <Visible>False</Visible>
  271. <ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
  272. <Install>true</Install>
  273. </BootstrapperPackage>
  274. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  275. <Visible>False</Visible>
  276. <ProductName>.NET Framework 3.5 SP1</ProductName>
  277. <Install>false</Install>
  278. </BootstrapperPackage>
  279. </ItemGroup>
  280. <ItemGroup>
  281. <COMReference Include="Shell32">
  282. <Guid>{50A7E9B0-70EF-11D1-B75A-00A0C90564FE}</Guid>
  283. <VersionMajor>1</VersionMajor>
  284. <VersionMinor>0</VersionMinor>
  285. <Lcid>0</Lcid>
  286. <WrapperTool>tlbimp</WrapperTool>
  287. <Isolated>False</Isolated>
  288. <EmbedInteropTypes>True</EmbedInteropTypes>
  289. </COMReference>
  290. </ItemGroup>
  291. <ItemGroup>
  292. <EmbeddedResource Include="Newtonsoft.Json.dll" />
  293. <Content Include="optimizer.ico" />
  294. </ItemGroup>
  295. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  296. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  297. Other similar extension points exist, see Microsoft.Common.targets.
  298. <Target Name="BeforeBuild">
  299. </Target>
  300. <Target Name="AfterBuild">
  301. </Target>
  302. -->
  303. </Project>