AtmoType is a font sharing website through ATProto.

[meta] use VS' gitignore instead

Changed files
+391 -20
+391 -20
.gitignore
··· 1 - ## A streamlined .gitignore for modern .NET projects 2 - ## including temporary files, build results, and 3 - ## files generated by popular .NET tools. If you are 4 - ## developing with Visual Studio, the VS .gitignore 5 - ## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore 6 - ## has more thorough IDE-specific entries. 7 ## 8 - ## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore 9 10 # Build results 11 [Dd]ebug/ 12 [Dd]ebugPublic/ 13 [Rr]elease/ 14 [Rr]eleases/ 15 - x64/ 16 - x86/ 17 [Ww][Ii][Nn]32/ 18 [Aa][Rr][Mm]/ 19 [Aa][Rr][Mm]64/ 20 bld/ 21 - [Bb]in/ 22 [Oo]bj/ 23 [Ll]og/ 24 [Ll]ogs/ 25 26 # .NET Core 27 project.lock.json 28 project.fragment.lock.json ··· 31 # ASP.NET Scaffolding 32 ScaffoldingReadMe.txt 33 34 # NuGet Packages 35 *.nupkg 36 # NuGet Symbol Packages 37 *.snupkg 38 39 - # dotenv environment variables file 40 - .env 41 42 # Others 43 ~$* 44 *~ 45 - CodeCoverage/ 46 47 # MSBuild Binary and Structured Log 48 *.binlog 49 50 - # MSTest test Results 51 - [Tt]est[Rr]esult*/ 52 - [Bb]uild[Ll]og.* 53 54 - # NUnit 55 - *.VisualState.xml 56 - TestResult.xml 57 - nunit-*.xml
··· 1 + ## Ignore Visual Studio temporary files, build results, and 2 + ## files generated by popular Visual Studio add-ons. 3 ## 4 + ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore 5 + 6 + # User-specific files 7 + *.rsuser 8 + *.suo 9 + *.user 10 + *.userosscache 11 + *.sln.docstates 12 + *.env 13 + 14 + # User-specific files (MonoDevelop/Xamarin Studio) 15 + *.userprefs 16 + 17 + # Mono auto generated files 18 + mono_crash.* 19 20 # Build results 21 [Dd]ebug/ 22 [Dd]ebugPublic/ 23 [Rr]elease/ 24 [Rr]eleases/ 25 + 26 + [Dd]ebug/x64/ 27 + [Dd]ebugPublic/x64/ 28 + [Rr]elease/x64/ 29 + [Rr]eleases/x64/ 30 + bin/x64/ 31 + obj/x64/ 32 + 33 + [Dd]ebug/x86/ 34 + [Dd]ebugPublic/x86/ 35 + [Rr]elease/x86/ 36 + [Rr]eleases/x86/ 37 + bin/x86/ 38 + obj/x86/ 39 + 40 [Ww][Ii][Nn]32/ 41 [Aa][Rr][Mm]/ 42 [Aa][Rr][Mm]64/ 43 + [Aa][Rr][Mm]64[Ee][Cc]/ 44 bld/ 45 [Oo]bj/ 46 + [Oo]ut/ 47 [Ll]og/ 48 [Ll]ogs/ 49 50 + # Build results on 'Bin' directories 51 + **/[Bb]in/* 52 + # Uncomment if you have tasks that rely on *.refresh files to move binaries 53 + # (https://github.com/github/gitignore/pull/3736) 54 + #!**/[Bb]in/*.refresh 55 + 56 + # Visual Studio 2015/2017 cache/options directory 57 + .vs/ 58 + # Uncomment if you have tasks that create the project's static files in wwwroot 59 + #wwwroot/ 60 + 61 + # Visual Studio 2017 auto generated files 62 + Generated\ Files/ 63 + 64 + # MSTest test Results 65 + [Tt]est[Rr]esult*/ 66 + [Bb]uild[Ll]og.* 67 + *.trx 68 + 69 + # NUnit 70 + *.VisualState.xml 71 + TestResult.xml 72 + nunit-*.xml 73 + 74 + # Approval Tests result files 75 + *.received.* 76 + 77 + # Build Results of an ATL Project 78 + [Dd]ebugPS/ 79 + [Rr]eleasePS/ 80 + dlldata.c 81 + 82 + # Benchmark Results 83 + BenchmarkDotNet.Artifacts/ 84 + 85 # .NET Core 86 project.lock.json 87 project.fragment.lock.json ··· 90 # ASP.NET Scaffolding 91 ScaffoldingReadMe.txt 92 93 + # StyleCop 94 + StyleCopReport.xml 95 + 96 + # Files built by Visual Studio 97 + *_i.c 98 + *_p.c 99 + *_h.h 100 + *.ilk 101 + *.meta 102 + *.obj 103 + *.idb 104 + *.iobj 105 + *.pch 106 + *.pdb 107 + *.ipdb 108 + *.pgc 109 + *.pgd 110 + *.rsp 111 + # but not Directory.Build.rsp, as it configures directory-level build defaults 112 + !Directory.Build.rsp 113 + *.sbr 114 + *.tlb 115 + *.tli 116 + *.tlh 117 + *.tmp 118 + *.tmp_proj 119 + *_wpftmp.csproj 120 + *.log 121 + *.tlog 122 + *.vspscc 123 + *.vssscc 124 + .builds 125 + *.pidb 126 + *.svclog 127 + *.scc 128 + 129 + # Chutzpah Test files 130 + _Chutzpah* 131 + 132 + # Visual C++ cache files 133 + ipch/ 134 + *.aps 135 + *.ncb 136 + *.opendb 137 + *.opensdf 138 + *.sdf 139 + *.cachefile 140 + *.VC.db 141 + *.VC.VC.opendb 142 + 143 + # Visual Studio profiler 144 + *.psess 145 + *.vsp 146 + *.vspx 147 + *.sap 148 + 149 + # Visual Studio Trace Files 150 + *.e2e 151 + 152 + # TFS 2012 Local Workspace 153 + $tf/ 154 + 155 + # Guidance Automation Toolkit 156 + *.gpState 157 + 158 + # ReSharper is a .NET coding add-in 159 + _ReSharper*/ 160 + *.[Rr]e[Ss]harper 161 + *.DotSettings.user 162 + 163 + # TeamCity is a build add-in 164 + _TeamCity* 165 + 166 + # DotCover is a Code Coverage Tool 167 + *.dotCover 168 + 169 + # AxoCover is a Code Coverage Tool 170 + .axoCover/* 171 + !.axoCover/settings.json 172 + 173 + # Coverlet is a free, cross platform Code Coverage Tool 174 + coverage*.json 175 + coverage*.xml 176 + coverage*.info 177 + 178 + # Visual Studio code coverage results 179 + *.coverage 180 + *.coveragexml 181 + 182 + # NCrunch 183 + _NCrunch_* 184 + .NCrunch_* 185 + .*crunch*.local.xml 186 + nCrunchTemp_* 187 + 188 + # MightyMoose 189 + *.mm.* 190 + AutoTest.Net/ 191 + 192 + # Web workbench (sass) 193 + .sass-cache/ 194 + 195 + # Installshield output folder 196 + [Ee]xpress/ 197 + 198 + # DocProject is a documentation generator add-in 199 + DocProject/buildhelp/ 200 + DocProject/Help/*.HxT 201 + DocProject/Help/*.HxC 202 + DocProject/Help/*.hhc 203 + DocProject/Help/*.hhk 204 + DocProject/Help/*.hhp 205 + DocProject/Help/Html2 206 + DocProject/Help/html 207 + 208 + # Click-Once directory 209 + publish/ 210 + 211 + # Publish Web Output 212 + *.[Pp]ublish.xml 213 + *.azurePubxml 214 + # Note: Comment the next line if you want to checkin your web deploy settings, 215 + # but database connection strings (with potential passwords) will be unencrypted 216 + *.pubxml 217 + *.publishproj 218 + 219 + # Microsoft Azure Web App publish settings. Comment the next line if you want to 220 + # checkin your Azure Web App publish settings, but sensitive information contained 221 + # in these scripts will be unencrypted 222 + PublishScripts/ 223 + 224 # NuGet Packages 225 *.nupkg 226 # NuGet Symbol Packages 227 *.snupkg 228 + # The packages folder can be ignored because of Package Restore 229 + **/[Pp]ackages/* 230 + # except build/, which is used as an MSBuild target. 231 + !**/[Pp]ackages/build/ 232 + # Uncomment if necessary however generally it will be regenerated when needed 233 + #!**/[Pp]ackages/repositories.config 234 + # NuGet v3's project.json files produces more ignorable files 235 + *.nuget.props 236 + *.nuget.targets 237 238 + # Microsoft Azure Build Output 239 + csx/ 240 + *.build.csdef 241 + 242 + # Microsoft Azure Emulator 243 + ecf/ 244 + rcf/ 245 + 246 + # Windows Store app package directories and files 247 + AppPackages/ 248 + BundleArtifacts/ 249 + Package.StoreAssociation.xml 250 + _pkginfo.txt 251 + *.appx 252 + *.appxbundle 253 + *.appxupload 254 + 255 + # Visual Studio cache files 256 + # files ending in .cache can be ignored 257 + *.[Cc]ache 258 + # but keep track of directories ending in .cache 259 + !?*.[Cc]ache/ 260 261 # Others 262 + ClientBin/ 263 ~$* 264 *~ 265 + *.dbmdl 266 + *.dbproj.schemaview 267 + *.jfm 268 + *.pfx 269 + *.publishsettings 270 + orleans.codegen.cs 271 + 272 + # Including strong name files can present a security risk 273 + # (https://github.com/github/gitignore/pull/2483#issue-259490424) 274 + #*.snk 275 + 276 + # Since there are multiple workflows, uncomment next line to ignore bower_components 277 + # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 278 + #bower_components/ 279 + 280 + # RIA/Silverlight projects 281 + Generated_Code/ 282 + 283 + # Backup & report files from converting an old project file 284 + # to a newer Visual Studio version. Backup files are not needed, 285 + # because we have git ;-) 286 + _UpgradeReport_Files/ 287 + Backup*/ 288 + UpgradeLog*.XML 289 + UpgradeLog*.htm 290 + ServiceFabricBackup/ 291 + *.rptproj.bak 292 + 293 + # SQL Server files 294 + *.mdf 295 + *.ldf 296 + *.ndf 297 + 298 + # Business Intelligence projects 299 + *.rdl.data 300 + *.bim.layout 301 + *.bim_*.settings 302 + *.rptproj.rsuser 303 + *- [Bb]ackup.rdl 304 + *- [Bb]ackup ([0-9]).rdl 305 + *- [Bb]ackup ([0-9][0-9]).rdl 306 + 307 + # Microsoft Fakes 308 + FakesAssemblies/ 309 + 310 + # GhostDoc plugin setting file 311 + *.GhostDoc.xml 312 + 313 + # Node.js Tools for Visual Studio 314 + .ntvs_analysis.dat 315 + node_modules/ 316 + 317 + # Visual Studio 6 build log 318 + *.plg 319 + 320 + # Visual Studio 6 workspace options file 321 + *.opt 322 + 323 + # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 324 + *.vbw 325 + 326 + # Visual Studio 6 workspace and project file (working project files containing files to include in project) 327 + *.dsw 328 + *.dsp 329 + 330 + # Visual Studio 6 technical files 331 + *.ncb 332 + *.aps 333 + 334 + # Visual Studio LightSwitch build output 335 + **/*.HTMLClient/GeneratedArtifacts 336 + **/*.DesktopClient/GeneratedArtifacts 337 + **/*.DesktopClient/ModelManifest.xml 338 + **/*.Server/GeneratedArtifacts 339 + **/*.Server/ModelManifest.xml 340 + _Pvt_Extensions 341 + 342 + # Paket dependency manager 343 + **/.paket/paket.exe 344 + paket-files/ 345 + 346 + # FAKE - F# Make 347 + **/.fake/ 348 + 349 + # CodeRush personal settings 350 + **/.cr/personal 351 + 352 + # Python Tools for Visual Studio (PTVS) 353 + **/__pycache__/ 354 + *.pyc 355 + 356 + # Cake - Uncomment if you are using it 357 + #tools/** 358 + #!tools/packages.config 359 + 360 + # Tabs Studio 361 + *.tss 362 + 363 + # Telerik's JustMock configuration file 364 + *.jmconfig 365 + 366 + # BizTalk build output 367 + *.btp.cs 368 + *.btm.cs 369 + *.odx.cs 370 + *.xsd.cs 371 + 372 + # OpenCover UI analysis results 373 + OpenCover/ 374 + 375 + # Azure Stream Analytics local run output 376 + ASALocalRun/ 377 378 # MSBuild Binary and Structured Log 379 *.binlog 380 + MSBuild_Logs/ 381 382 + # AWS SAM Build and Temporary Artifacts folder 383 + .aws-sam 384 + 385 + # NVidia Nsight GPU debugger configuration file 386 + *.nvuser 387 + 388 + # MFractors (Xamarin productivity tool) working folder 389 + **/.mfractor/ 390 + 391 + # Local History for Visual Studio 392 + **/.localhistory/ 393 + 394 + # Visual Studio History (VSHistory) files 395 + .vshistory/ 396 + 397 + # BeatPulse healthcheck temp database 398 + healthchecksdb 399 + 400 + # Backup folder for Package Reference Convert tool in Visual Studio 2017 401 + MigrationBackup/ 402 + 403 + # Ionide (cross platform F# VS Code tools) working folder 404 + **/.ionide/ 405 + 406 + # Fody - auto-generated XML schema 407 + FodyWeavers.xsd 408 + 409 + # VS Code files for those working on multiple tools 410 + .vscode/* 411 + !.vscode/settings.json 412 + !.vscode/tasks.json 413 + !.vscode/launch.json 414 + !.vscode/extensions.json 415 + !.vscode/*.code-snippets 416 + 417 + # Local History for Visual Studio Code 418 + .history/ 419 + 420 + # Built Visual Studio Code Extensions 421 + *.vsix 422 423 + # Windows Installer files from build outputs 424 + *.cab 425 + *.msi 426 + *.msix 427 + *.msm 428 + *.msp