chore: .gitignore und launchSettings aktualisiert, um neue Build- und Entwicklungsanforderungen zu berücksichtigen.
This commit is contained in:
parent
982e66daf4
commit
e91027ba1b
136
.gitignore
vendored
136
.gitignore
vendored
@ -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
|
||||
|
||||
12
DigitalData.UserManager.API/Properties/launchSettings.json
Normal file
12
DigitalData.UserManager.API/Properties/launchSettings.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"profiles": {
|
||||
"DigitalData.UserManager.API": {
|
||||
"commandName": "Project",
|
||||
"launchBrowser": true,
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
},
|
||||
"applicationUrl": "https://localhost:57319;http://localhost:57320"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user