0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【メモ】.NET Core MVC用のgitignore

Posted at
########################################
# ビルドや発行時に生成されるファイル
########################################
bin/
obj/
out/
*.dll
*.exe
*.app
*.pdb
*.cache
*.log

########################################
# ユーザーごとの設定ファイル(環境依存)
########################################
.vs/
*.suo
*.user
*.userosscache
*.sln.docstates
*.dbmdl
*.bak
*.pid
*.tmp

########################################
# 機密情報や環境設定(セキュリティ重視)
########################################
secrets.json
*.PublishSettings
appsettings.Development.json
appsettings.*.local.json

########################################
# パッケージ管理関連(NuGetなど)
########################################
packages/
*.nupkg
*.snupkg
project.lock.json
project.fragment.lock.json

########################################
# OSごとの不要ファイル
########################################
.DS_Store
Thumbs.db
ehthumbs.db
desktop.ini

########################################
# Visual Studio Code関連
########################################
.vscode/

########################################
# JetBrains Rider関連(使っていれば)
########################################
.idea/

########################################
# Node.js関連(フロントエンドを使う場合)
########################################
node_modules/
npm-debug.log
yarn-error.log

########################################
# 環境変数ファイル(APIキーなどを含む可能性あり)
########################################
.env
.env.*

########################################
# その他の一時ファイル
########################################
*.swp
*.orig
*.rej
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?