Add solution configuration and tooling
- .gitignore for .NET/Blazor project - VS Code launch and task configurations - Solution file (Duempelkas.slnx) - NuGet configuration
This commit is contained in:
119
.gitignore
vendored
Normal file
119
.gitignore
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
##
|
||||
## See https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
[Rr]elease/
|
||||
[Re]leases/
|
||||
x64/
|
||||
x86/
|
||||
[Ww]in32/
|
||||
[Aa]rm/
|
||||
[Aa]rm64/
|
||||
asms/
|
||||
bin/
|
||||
obj/
|
||||
publish/
|
||||
[Ll]og/
|
||||
[Ll]ogs/
|
||||
|
||||
# Visual Studio 2015/2017/2019/2022 cache/options directory
|
||||
.vs/
|
||||
# Visual Studio Code
|
||||
# .vscode/
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
*.code-workspace
|
||||
|
||||
# User-specific files
|
||||
*.rsuser
|
||||
*.suo
|
||||
*.user
|
||||
*.userosscache
|
||||
*.sln.docstates
|
||||
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
||||
# Mono auto generated files
|
||||
mono_crash.*
|
||||
|
||||
# Nested folders
|
||||
[Dd]ebug/
|
||||
[Rr]elease/
|
||||
**/bin/
|
||||
**/obj/
|
||||
|
||||
# NuGet Packages
|
||||
*.nupkg
|
||||
# NuGet Symbol Packages
|
||||
*.snupkg
|
||||
# The packages folder can be ignored because of Package Restore
|
||||
**/[Pp]ackages/*
|
||||
# except build/, which is used as an MSBuild target.
|
||||
!**/[Pp]ackages/build/
|
||||
# If using the NuGet Plugin for Visual Studio, it creates a NuGet.exe copy in the solutions directory
|
||||
# git should ignore it.
|
||||
# NuGet.exe
|
||||
# If using the NuGet Proto NuGet.dest.config file for Visual Studio, it creates a NuGet.dest.config copy in the solutions directory
|
||||
# git should ignore it.
|
||||
NuGet.dest.config
|
||||
# Project-specific NuGet config files
|
||||
# NuGet.config
|
||||
|
||||
# BROWSER CLOUD EXPLORER
|
||||
.build/
|
||||
|
||||
# Entity Framework 6 (deprecated)
|
||||
*.Cache
|
||||
!*.Directives.Cache
|
||||
|
||||
# Entity Framework Core
|
||||
# Add this if you want to ignore the migrations folder
|
||||
# **/Migrations/
|
||||
|
||||
# SQL Server files
|
||||
*.mdf
|
||||
*.ldf
|
||||
*.ndf
|
||||
|
||||
# JetBrains Resharper temp files
|
||||
_ReSharper*/
|
||||
*.[Rr]e[Ss]harper.user
|
||||
|
||||
# Mac OS X
|
||||
.DS_Store
|
||||
|
||||
# User-specific files
|
||||
*.swp
|
||||
*~
|
||||
# IDE Support
|
||||
.idea/
|
||||
.vs/
|
||||
|
||||
# Publishing tools
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
.pnpm-debug.log*
|
||||
|
||||
# Application Insights
|
||||
Microsoft.ApplicationInsights.SnapshotCollector.targets
|
||||
|
||||
# Generated scripts
|
||||
_*/
|
||||
|
||||
# Local Config
|
||||
*.local.config
|
||||
*.local.json
|
||||
appsettings.local.json
|
||||
|
||||
# User secrets
|
||||
secrets.json
|
||||
.microsoft.dotnet.usersecrets/
|
||||
Reference in New Issue
Block a user