chore: .gitignore und launchSettings aktualisiert, um neue Build- und Entwicklungsanforderungen zu berücksichtigen.

This commit is contained in:
Developer 02 2024-07-31 13:47:25 +02:00
parent 982e66daf4
commit e91027ba1b
2 changed files with 147 additions and 1 deletions

136
.gitignore vendored
View File

@ -1 +1,135 @@

# Visual Studio
.vscode/
.vs/
.vscode/*
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (Mono Auto Generated)
mono_crash.*
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# Uncomment if you have tasks that create the project's static files in wwwroot/dist
# wwwroot/dist/
# Exclude all test binaries
[Tt]est[Rr]esult*/
[Tt]est[Rr]esults*/
# Uncomment if you have build info files in any project
# [Bb]uild/
# Exclude project files
project.lock.json
project.fragment.lock.json
artifacts/
# StyleCop
StyleCopReport.xml
# === ASP.NET Specific ===
# Exclude the App_Data folder (if it is not needed)
App_Data/
# === Angular Specific ===
node_modules/
dist/
tmp/
out-tsc/
coverage/
src/*.js
src/*.js.map
src/*.d.ts
# Angular environment files
src/environments/environment*.ts
# Angular build output
dist/
tmp/
compiled/
# Karma test files
karma.conf.js
karma.conf.*
karma-result*
# Protractor test files
protractor.conf.js
protractor.conf.*
# Angular IDE files
.angular/
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-project
*.sublime-workspace
# Editor config
.editorconfig
# === End of Angular Specific ===
# Local History
.localhistory
# === IDE Specific ===
# Rider
.idea/
# Mac
*.DS_Store
.DS_Store?
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Cloud IDEs
*.code-workspace
# Logs
*.log
# Yarn Integrity file
.yarn-integrity
# NPM package-lock
package-lock.json
# JetBrains IDEs
.idea/
*.iml
*.iws
# npm debug log
npm-debug.log
yarn-error.log

View File

@ -0,0 +1,12 @@
{
"profiles": {
"DigitalData.UserManager.API": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "https://localhost:57319;http://localhost:57320"
}
}
}