├── http ├── amountOfBlocks └── blocks │ └── 0 ├── vsproj ├── cbt_virus │ ├── cbt_virus.h │ ├── small.ico │ ├── stdafx.h │ ├── backend.cpp │ ├── cbt_virus.rc │ ├── stdafx.cpp │ ├── targetver.h │ ├── cbt_virus.cpp │ ├── cbt_virus.ico │ ├── cbt_virus.vcproj │ ├── backend.h │ ├── resource.h │ ├── cbt_virus.exe.manifest │ ├── cbt_virus.vcxproj.filters │ └── cbt_virus.vcxproj ├── cbt_virus_backend_TO_BE_REMOVED │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ ├── cbt_virus_backend.cpp │ ├── cbt_virus_backend.vcproj │ ├── cbt_virus_backend_backup.cpp │ ├── cbt_virus_backend.vcxproj.filters │ └── cbt_virus_backend.vcxproj ├── cbt_virus.sln └── .gitignore ├── .gitattributes └── README.md /http/amountOfBlocks: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /vsproj/cbt_virus/cbt_virus.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /http/blocks/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/http/blocks/0 -------------------------------------------------------------------------------- /vsproj/cbt_virus/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus/small.ico -------------------------------------------------------------------------------- /vsproj/cbt_virus/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus/stdafx.h -------------------------------------------------------------------------------- /vsproj/cbt_virus/backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus/backend.cpp -------------------------------------------------------------------------------- /vsproj/cbt_virus/cbt_virus.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus/cbt_virus.rc -------------------------------------------------------------------------------- /vsproj/cbt_virus/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus/stdafx.cpp -------------------------------------------------------------------------------- /vsproj/cbt_virus/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus/targetver.h -------------------------------------------------------------------------------- /vsproj/cbt_virus/cbt_virus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus/cbt_virus.cpp -------------------------------------------------------------------------------- /vsproj/cbt_virus/cbt_virus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus/cbt_virus.ico -------------------------------------------------------------------------------- /vsproj/cbt_virus/cbt_virus.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus/cbt_virus.vcproj -------------------------------------------------------------------------------- /vsproj/cbt_virus_backend_TO_BE_REMOVED/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus_backend_TO_BE_REMOVED/ReadMe.txt -------------------------------------------------------------------------------- /vsproj/cbt_virus_backend_TO_BE_REMOVED/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus_backend_TO_BE_REMOVED/stdafx.cpp -------------------------------------------------------------------------------- /vsproj/cbt_virus_backend_TO_BE_REMOVED/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus_backend_TO_BE_REMOVED/stdafx.h -------------------------------------------------------------------------------- /vsproj/cbt_virus_backend_TO_BE_REMOVED/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus_backend_TO_BE_REMOVED/targetver.h -------------------------------------------------------------------------------- /vsproj/cbt_virus_backend_TO_BE_REMOVED/cbt_virus_backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus_backend_TO_BE_REMOVED/cbt_virus_backend.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # forced gentoo installer 2 | 3 | old and cringe program that downloads gentoo from the inet and writes it directly to the boot drive 4 | use it at your own risk 5 | 6 | loicense: WTFPL -------------------------------------------------------------------------------- /vsproj/cbt_virus_backend_TO_BE_REMOVED/cbt_virus_backend.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus_backend_TO_BE_REMOVED/cbt_virus_backend.vcproj -------------------------------------------------------------------------------- /vsproj/cbt_virus_backend_TO_BE_REMOVED/cbt_virus_backend_backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rndtrash/forced-gentoo-installer/master/vsproj/cbt_virus_backend_TO_BE_REMOVED/cbt_virus_backend_backup.cpp -------------------------------------------------------------------------------- /vsproj/cbt_virus/backend.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "stdafx.h" 4 | 5 | #define WM_CBT_VIRUS_ERROR (WM_APP + 0) 6 | #define WM_CBT_VIRUS_PROGRESS (WM_APP + 1) 7 | #define WM_CBT_VIRUS_SUCCESS (WM_APP + 2) 8 | 9 | struct CBTProgress { 10 | int bytesReceived; 11 | int bytesTotal; // -1 if the size of an image is unknown 12 | }; 13 | 14 | DWORD WINAPI GentooInstallerThread( LPVOID lpParam ); 15 | VOID GentooInstallerStop(); -------------------------------------------------------------------------------- /vsproj/cbt_virus/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by cbt_virus.rc 4 | // 5 | #define IDC_MYICON 2 6 | #define IDD_CBT_VIRUS_DIALOG 102 7 | #define IDS_APP_TITLE 103 8 | #define IDD_ABOUTBOX 103 9 | #define IDM_ABOUT 104 10 | #define IDS_CBT_REQUIRE_ADMIN 104 11 | #define IDS_CBT_DISCLAIMER 105 12 | #define IDI_CBT_VIRUS 107 13 | #define IDC_CBT_VIRUS 109 14 | #define IDR_MAINFRAME 128 15 | #define IDC_STATIC -1 16 | 17 | // Next default values for new objects 18 | // 19 | #ifdef APSTUDIO_INVOKED 20 | #ifndef APSTUDIO_READONLY_SYMBOLS 21 | #define _APS_NO_MFC 1 22 | #define _APS_NEXT_RESOURCE_VALUE 129 23 | #define _APS_NEXT_COMMAND_VALUE 32771 24 | #define _APS_NEXT_CONTROL_VALUE 1000 25 | #define _APS_NEXT_SYMED_VALUE 110 26 | #endif 27 | #endif 28 | -------------------------------------------------------------------------------- /vsproj/cbt_virus/cbt_virus.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /vsproj/cbt_virus_backend_TO_BE_REMOVED/cbt_virus_backend.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | 19 | Файлы исходного кода 20 | 21 | 22 | Файлы исходного кода 23 | 24 | 25 | 26 | 27 | Заголовочные файлы 28 | 29 | 30 | Заголовочные файлы 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /vsproj/cbt_virus.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cbt_virus", "cbt_virus\cbt_virus.vcxproj", "{5760B1E7-5B4E-4A19-8737-1846D39D1E37}" 5 | EndProject 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cbt_virus_backend", "cbt_virus_backend\cbt_virus_backend.vcxproj", "{993A025D-21C0-48E7-BE95-657F21A09DAF}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Win32 = Debug|Win32 11 | Debug|x64 = Debug|x64 12 | Release|Win32 = Release|Win32 13 | Release|x64 = Release|x64 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {5760B1E7-5B4E-4A19-8737-1846D39D1E37}.Debug|Win32.ActiveCfg = Debug|Win32 17 | {5760B1E7-5B4E-4A19-8737-1846D39D1E37}.Debug|Win32.Build.0 = Debug|Win32 18 | {5760B1E7-5B4E-4A19-8737-1846D39D1E37}.Debug|x64.ActiveCfg = Debug|x64 19 | {5760B1E7-5B4E-4A19-8737-1846D39D1E37}.Debug|x64.Build.0 = Debug|x64 20 | {5760B1E7-5B4E-4A19-8737-1846D39D1E37}.Release|Win32.ActiveCfg = Release|Win32 21 | {5760B1E7-5B4E-4A19-8737-1846D39D1E37}.Release|Win32.Build.0 = Release|Win32 22 | {5760B1E7-5B4E-4A19-8737-1846D39D1E37}.Release|x64.ActiveCfg = Release|x64 23 | {5760B1E7-5B4E-4A19-8737-1846D39D1E37}.Release|x64.Build.0 = Release|x64 24 | {993A025D-21C0-48E7-BE95-657F21A09DAF}.Debug|Win32.ActiveCfg = Debug|Win32 25 | {993A025D-21C0-48E7-BE95-657F21A09DAF}.Debug|Win32.Build.0 = Debug|Win32 26 | {993A025D-21C0-48E7-BE95-657F21A09DAF}.Debug|x64.ActiveCfg = Debug|x64 27 | {993A025D-21C0-48E7-BE95-657F21A09DAF}.Debug|x64.Build.0 = Debug|x64 28 | {993A025D-21C0-48E7-BE95-657F21A09DAF}.Release|Win32.ActiveCfg = Release|Win32 29 | {993A025D-21C0-48E7-BE95-657F21A09DAF}.Release|Win32.Build.0 = Release|Win32 30 | {993A025D-21C0-48E7-BE95-657F21A09DAF}.Release|x64.ActiveCfg = Release|x64 31 | {993A025D-21C0-48E7-BE95-657F21A09DAF}.Release|x64.Build.0 = Release|x64 32 | EndGlobalSection 33 | GlobalSection(SolutionProperties) = preSolution 34 | HideSolutionNode = FALSE 35 | EndGlobalSection 36 | EndGlobal 37 | -------------------------------------------------------------------------------- /vsproj/cbt_virus/cbt_virus.vcxproj.filters: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 15 | 16 | 17 | 18 | 19 | Файлы исходного кода 20 | 21 | 22 | Файлы исходного кода 23 | 24 | 25 | Файлы исходного кода 26 | 27 | 28 | 29 | 30 | Заголовочные файлы 31 | 32 | 33 | Заголовочные файлы 34 | 35 | 36 | Заголовочные файлы 37 | 38 | 39 | Заголовочные файлы 40 | 41 | 42 | Файлы исходного кода 43 | 44 | 45 | Заголовочные файлы 46 | 47 | 48 | 49 | 50 | Файлы ресурсов 51 | 52 | 53 | Файлы ресурсов 54 | 55 | 56 | 57 | 58 | 59 | Файлы ресурсов 60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /vsproj/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.toptal.com/developers/gitignore/api/visualstudio,c++ 3 | # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudio,c++ 4 | 5 | ### C++ ### 6 | # Prerequisites 7 | *.d 8 | 9 | # Compiled Object files 10 | *.slo 11 | *.lo 12 | *.o 13 | *.obj 14 | 15 | # Precompiled Headers 16 | *.gch 17 | *.pch 18 | 19 | # Compiled Dynamic libraries 20 | *.so 21 | *.dylib 22 | *.dll 23 | 24 | # Fortran module files 25 | *.mod 26 | *.smod 27 | 28 | # Compiled Static libraries 29 | *.lai 30 | *.la 31 | *.a 32 | *.lib 33 | 34 | # Executables 35 | *.exe 36 | *.out 37 | *.app 38 | 39 | ### VisualStudio ### 40 | ## Ignore Visual Studio temporary files, build results, and 41 | ## files generated by popular Visual Studio add-ons. 42 | ## 43 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 44 | 45 | # User-specific files 46 | *.rsuser 47 | *.suo 48 | *.user 49 | *.userosscache 50 | *.sln.docstates 51 | 52 | # User-specific files (MonoDevelop/Xamarin Studio) 53 | *.userprefs 54 | 55 | # Mono auto generated files 56 | mono_crash.* 57 | 58 | # Build results 59 | [Dd]ebug/ 60 | [Dd]ebugPublic/ 61 | [Rr]elease/ 62 | [Rr]eleases/ 63 | x64/ 64 | x86/ 65 | [Ww][Ii][Nn]32/ 66 | [Aa][Rr][Mm]/ 67 | [Aa][Rr][Mm]64/ 68 | bld/ 69 | [Bb]in/ 70 | [Oo]bj/ 71 | [Ll]og/ 72 | [Ll]ogs/ 73 | 74 | # Visual Studio 2015/2017 cache/options directory 75 | .vs/ 76 | # Uncomment if you have tasks that create the project's static files in wwwroot 77 | #wwwroot/ 78 | 79 | # Visual Studio 2017 auto generated files 80 | Generated\ Files/ 81 | 82 | # MSTest test Results 83 | [Tt]est[Rr]esult*/ 84 | [Bb]uild[Ll]og.* 85 | 86 | # NUnit 87 | *.VisualState.xml 88 | TestResult.xml 89 | nunit-*.xml 90 | 91 | # Build Results of an ATL Project 92 | [Dd]ebugPS/ 93 | [Rr]eleasePS/ 94 | dlldata.c 95 | 96 | # Benchmark Results 97 | BenchmarkDotNet.Artifacts/ 98 | 99 | # .NET Core 100 | project.lock.json 101 | project.fragment.lock.json 102 | artifacts/ 103 | 104 | # ASP.NET Scaffolding 105 | ScaffoldingReadMe.txt 106 | 107 | # StyleCop 108 | StyleCopReport.xml 109 | 110 | # Files built by Visual Studio 111 | *_i.c 112 | *_p.c 113 | *_h.h 114 | *.ilk 115 | *.meta 116 | *.iobj 117 | *.pdb 118 | *.ipdb 119 | *.pgc 120 | *.pgd 121 | *.rsp 122 | *.sbr 123 | *.tlb 124 | *.tli 125 | *.tlh 126 | *.tmp 127 | *.tmp_proj 128 | *_wpftmp.csproj 129 | *.log 130 | *.tlog 131 | *.vspscc 132 | *.vssscc 133 | .builds 134 | *.pidb 135 | *.svclog 136 | *.scc 137 | 138 | # Chutzpah Test files 139 | _Chutzpah* 140 | 141 | # Visual C++ cache files 142 | ipch/ 143 | *.aps 144 | *.ncb 145 | *.opendb 146 | *.opensdf 147 | *.sdf 148 | *.cachefile 149 | *.VC.db 150 | *.VC.VC.opendb 151 | 152 | # Visual Studio profiler 153 | *.psess 154 | *.vsp 155 | *.vspx 156 | *.sap 157 | 158 | # Visual Studio Trace Files 159 | *.e2e 160 | 161 | # TFS 2012 Local Workspace 162 | $tf/ 163 | 164 | # Guidance Automation Toolkit 165 | *.gpState 166 | 167 | # ReSharper is a .NET coding add-in 168 | _ReSharper*/ 169 | *.[Rr]e[Ss]harper 170 | *.DotSettings.user 171 | 172 | # TeamCity is a build add-in 173 | _TeamCity* 174 | 175 | # DotCover is a Code Coverage Tool 176 | *.dotCover 177 | 178 | # AxoCover is a Code Coverage Tool 179 | .axoCover/* 180 | !.axoCover/settings.json 181 | 182 | # Coverlet is a free, cross platform Code Coverage Tool 183 | coverage*.json 184 | coverage*.xml 185 | coverage*.info 186 | 187 | # Visual Studio code coverage results 188 | *.coverage 189 | *.coveragexml 190 | 191 | # NCrunch 192 | _NCrunch_* 193 | .*crunch*.local.xml 194 | nCrunchTemp_* 195 | 196 | # MightyMoose 197 | *.mm.* 198 | AutoTest.Net/ 199 | 200 | # Web workbench (sass) 201 | .sass-cache/ 202 | 203 | # Installshield output folder 204 | [Ee]xpress/ 205 | 206 | # DocProject is a documentation generator add-in 207 | DocProject/buildhelp/ 208 | DocProject/Help/*.HxT 209 | DocProject/Help/*.HxC 210 | DocProject/Help/*.hhc 211 | DocProject/Help/*.hhk 212 | DocProject/Help/*.hhp 213 | DocProject/Help/Html2 214 | DocProject/Help/html 215 | 216 | # Click-Once directory 217 | publish/ 218 | 219 | # Publish Web Output 220 | *.[Pp]ublish.xml 221 | *.azurePubxml 222 | # Note: Comment the next line if you want to checkin your web deploy settings, 223 | # but database connection strings (with potential passwords) will be unencrypted 224 | *.pubxml 225 | *.publishproj 226 | 227 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 228 | # checkin your Azure Web App publish settings, but sensitive information contained 229 | # in these scripts will be unencrypted 230 | PublishScripts/ 231 | 232 | # NuGet Packages 233 | *.nupkg 234 | # NuGet Symbol Packages 235 | *.snupkg 236 | # The packages folder can be ignored because of Package Restore 237 | **/[Pp]ackages/* 238 | # except build/, which is used as an MSBuild target. 239 | !**/[Pp]ackages/build/ 240 | # Uncomment if necessary however generally it will be regenerated when needed 241 | #!**/[Pp]ackages/repositories.config 242 | # NuGet v3's project.json files produces more ignorable files 243 | *.nuget.props 244 | *.nuget.targets 245 | 246 | # Nuget personal access tokens and Credentials 247 | nuget.config 248 | 249 | # Microsoft Azure Build Output 250 | csx/ 251 | *.build.csdef 252 | 253 | # Microsoft Azure Emulator 254 | ecf/ 255 | rcf/ 256 | 257 | # Windows Store app package directories and files 258 | AppPackages/ 259 | BundleArtifacts/ 260 | Package.StoreAssociation.xml 261 | _pkginfo.txt 262 | *.appx 263 | *.appxbundle 264 | *.appxupload 265 | 266 | # Visual Studio cache files 267 | # files ending in .cache can be ignored 268 | *.[Cc]ache 269 | # but keep track of directories ending in .cache 270 | !?*.[Cc]ache/ 271 | 272 | # Others 273 | ClientBin/ 274 | ~$* 275 | *~ 276 | *.dbmdl 277 | *.dbproj.schemaview 278 | *.jfm 279 | *.pfx 280 | *.publishsettings 281 | orleans.codegen.cs 282 | 283 | # Including strong name files can present a security risk 284 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 285 | #*.snk 286 | 287 | # Since there are multiple workflows, uncomment next line to ignore bower_components 288 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 289 | #bower_components/ 290 | 291 | # RIA/Silverlight projects 292 | Generated_Code/ 293 | 294 | # Backup & report files from converting an old project file 295 | # to a newer Visual Studio version. Backup files are not needed, 296 | # because we have git ;-) 297 | _UpgradeReport_Files/ 298 | Backup*/ 299 | UpgradeLog*.XML 300 | UpgradeLog*.htm 301 | ServiceFabricBackup/ 302 | *.rptproj.bak 303 | 304 | # SQL Server files 305 | *.mdf 306 | *.ldf 307 | *.ndf 308 | 309 | # Business Intelligence projects 310 | *.rdl.data 311 | *.bim.layout 312 | *.bim_*.settings 313 | *.rptproj.rsuser 314 | *- [Bb]ackup.rdl 315 | *- [Bb]ackup ([0-9]).rdl 316 | *- [Bb]ackup ([0-9][0-9]).rdl 317 | 318 | # Microsoft Fakes 319 | FakesAssemblies/ 320 | 321 | # GhostDoc plugin setting file 322 | *.GhostDoc.xml 323 | 324 | # Node.js Tools for Visual Studio 325 | .ntvs_analysis.dat 326 | node_modules/ 327 | 328 | # Visual Studio 6 build log 329 | *.plg 330 | 331 | # Visual Studio 6 workspace options file 332 | *.opt 333 | 334 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 335 | *.vbw 336 | 337 | # Visual Studio LightSwitch build output 338 | **/*.HTMLClient/GeneratedArtifacts 339 | **/*.DesktopClient/GeneratedArtifacts 340 | **/*.DesktopClient/ModelManifest.xml 341 | **/*.Server/GeneratedArtifacts 342 | **/*.Server/ModelManifest.xml 343 | _Pvt_Extensions 344 | 345 | # Paket dependency manager 346 | .paket/paket.exe 347 | paket-files/ 348 | 349 | # FAKE - F# Make 350 | .fake/ 351 | 352 | # CodeRush personal settings 353 | .cr/personal 354 | 355 | # Python Tools for Visual Studio (PTVS) 356 | __pycache__/ 357 | *.pyc 358 | 359 | # Cake - Uncomment if you are using it 360 | # tools/** 361 | # !tools/packages.config 362 | 363 | # Tabs Studio 364 | *.tss 365 | 366 | # Telerik's JustMock configuration file 367 | *.jmconfig 368 | 369 | # BizTalk build output 370 | *.btp.cs 371 | *.btm.cs 372 | *.odx.cs 373 | *.xsd.cs 374 | 375 | # OpenCover UI analysis results 376 | OpenCover/ 377 | 378 | # Azure Stream Analytics local run output 379 | ASALocalRun/ 380 | 381 | # MSBuild Binary and Structured Log 382 | *.binlog 383 | 384 | # NVidia Nsight GPU debugger configuration file 385 | *.nvuser 386 | 387 | # MFractors (Xamarin productivity tool) working folder 388 | .mfractor/ 389 | 390 | # Local History for Visual Studio 391 | .localhistory/ 392 | 393 | # BeatPulse healthcheck temp database 394 | healthchecksdb 395 | 396 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 397 | MigrationBackup/ 398 | 399 | # Ionide (cross platform F# VS Code tools) working folder 400 | .ionide/ 401 | 402 | # Fody - auto-generated XML schema 403 | FodyWeavers.xsd 404 | 405 | # VS Code files for those working on multiple tools 406 | .vscode/* 407 | !.vscode/settings.json 408 | !.vscode/tasks.json 409 | !.vscode/launch.json 410 | !.vscode/extensions.json 411 | *.code-workspace 412 | 413 | # Local History for Visual Studio Code 414 | .history/ 415 | 416 | # Windows Installer files from build outputs 417 | *.cab 418 | *.msi 419 | *.msix 420 | *.msm 421 | *.msp 422 | 423 | # JetBrains Rider 424 | .idea/ 425 | *.sln.iml 426 | 427 | ### VisualStudio Patch ### 428 | # Additional files built by Visual Studio 429 | 430 | # End of https://www.toptal.com/developers/gitignore/api/visualstudio,c++ -------------------------------------------------------------------------------- /vsproj/cbt_virus_backend_TO_BE_REMOVED/cbt_virus_backend.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Debug 10 | x64 11 | 12 | 13 | Release 14 | Win32 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {993A025D-21C0-48E7-BE95-657F21A09DAF} 23 | cbt_virus_backend 24 | Win32Proj 25 | 26 | 27 | 28 | Application 29 | Unicode 30 | true 31 | 32 | 33 | Application 34 | Unicode 35 | 36 | 37 | Application 38 | Unicode 39 | true 40 | 41 | 42 | Application 43 | Unicode 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | <_ProjectFileVersion>10.0.40219.1 63 | $(SolutionDir)$(Configuration)\ 64 | $(Configuration)\ 65 | true 66 | $(SolutionDir)$(Platform)\$(Configuration)\ 67 | $(Platform)\$(Configuration)\ 68 | true 69 | $(SolutionDir)$(Configuration)\ 70 | $(Configuration)\ 71 | false 72 | $(SolutionDir)$(Platform)\$(Configuration)\ 73 | $(Platform)\$(Configuration)\ 74 | false 75 | AllRules.ruleset 76 | 77 | 78 | AllRules.ruleset 79 | 80 | 81 | AllRules.ruleset 82 | 83 | 84 | AllRules.ruleset 85 | 86 | 87 | 88 | 89 | 90 | Disabled 91 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 92 | true 93 | EnableFastChecks 94 | MultiThreadedDebugDLL 95 | Use 96 | Level3 97 | EditAndContinue 98 | 99 | 100 | shlwapi.lib;wininet.lib;%(AdditionalDependencies) 101 | true 102 | Console 103 | MachineX86 104 | 105 | 106 | 107 | 108 | X64 109 | 110 | 111 | Disabled 112 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 113 | true 114 | EnableFastChecks 115 | MultiThreadedDebugDLL 116 | Use 117 | Level3 118 | ProgramDatabase 119 | 120 | 121 | shlwapi.lib;wininet.lib;%(AdditionalDependencies) 122 | RequireAdministrator 123 | false 124 | true 125 | Console 126 | MachineX64 127 | 128 | 129 | 130 | 131 | MaxSpeed 132 | true 133 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 134 | MultiThreadedDLL 135 | true 136 | Use 137 | Level3 138 | ProgramDatabase 139 | 140 | 141 | shlwapi.lib;wininet.lib;%(AdditionalDependencies) 142 | true 143 | Console 144 | true 145 | true 146 | MachineX86 147 | 148 | 149 | 150 | 151 | X64 152 | 153 | 154 | MaxSpeed 155 | true 156 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 157 | MultiThreadedDLL 158 | true 159 | Use 160 | Level3 161 | ProgramDatabase 162 | 163 | 164 | shlwapi.lib;wininet.lib;%(AdditionalDependencies) 165 | RequireAdministrator 166 | true 167 | Console 168 | true 169 | true 170 | MachineX64 171 | 172 | 173 | 174 | 175 | 176 | Create 177 | Create 178 | Create 179 | Create 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | -------------------------------------------------------------------------------- /vsproj/cbt_virus/cbt_virus.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Debug 10 | x64 11 | 12 | 13 | Release 14 | Win32 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {5760B1E7-5B4E-4A19-8737-1846D39D1E37} 23 | cbt_virus 24 | Win32Proj 25 | 26 | 27 | 28 | Application 29 | Unicode 30 | true 31 | 32 | 33 | Application 34 | Unicode 35 | 36 | 37 | Application 38 | Unicode 39 | true 40 | 41 | 42 | Application 43 | Unicode 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | <_ProjectFileVersion>10.0.40219.1 63 | $(SolutionDir)$(Configuration)\ 64 | $(Configuration)\ 65 | true 66 | $(SolutionDir)$(Platform)\$(Configuration)\ 67 | $(Platform)\$(Configuration)\ 68 | true 69 | $(SolutionDir)$(Configuration)\ 70 | $(Configuration)\ 71 | false 72 | $(SolutionDir)$(Platform)\$(Configuration)\ 73 | $(Platform)\$(Configuration)\ 74 | false 75 | AllRules.ruleset 76 | 77 | 78 | AllRules.ruleset 79 | 80 | 81 | AllRules.ruleset 82 | 83 | 84 | AllRules.ruleset 85 | 86 | 87 | 88 | 89 | 90 | Disabled 91 | WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) 92 | true 93 | EnableFastChecks 94 | MultiThreadedDebug 95 | Use 96 | Level3 97 | EditAndContinue 98 | 99 | 100 | true 101 | Windows 102 | MachineX86 103 | RequireAdministrator 104 | 105 | 106 | 107 | false 108 | 109 | 110 | 111 | 112 | X64 113 | 114 | 115 | Disabled 116 | WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) 117 | true 118 | EnableFastChecks 119 | MultiThreadedDebug 120 | Use 121 | Level3 122 | ProgramDatabase 123 | 124 | 125 | RequireAdministrator 126 | true 127 | Windows 128 | MachineX64 129 | 130 | 131 | 132 | false 133 | 134 | 135 | 136 | 137 | MaxSpeed 138 | true 139 | WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) 140 | MultiThreaded 141 | true 142 | Use 143 | Level3 144 | ProgramDatabase 145 | 146 | 147 | true 148 | Windows 149 | true 150 | true 151 | MachineX86 152 | RequireAdministrator 153 | 154 | 155 | 156 | false 157 | 158 | 159 | 160 | 161 | X64 162 | 163 | 164 | MaxSpeed 165 | true 166 | WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) 167 | MultiThreaded 168 | true 169 | Use 170 | Level3 171 | ProgramDatabase 172 | 173 | 174 | true 175 | Windows 176 | true 177 | true 178 | MachineX64 179 | RequireAdministrator 180 | 181 | 182 | 183 | false 184 | 185 | 186 | 187 | 188 | 189 | 190 | Create 191 | Create 192 | Create 193 | Create 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | --------------------------------------------------------------------------------