From f03614c13b7013b3a6a9c2c060b47293cb4f87de Mon Sep 17 00:00:00 2001 From: Vinicius Trevisan Date: Wed, 28 Jan 2026 23:58:50 -0300 Subject: [PATCH] added gitignore to no push build files --- .gitignore | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b18a1e8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,43 @@ +# Ignore build outputs recursively +**/bin/ +**/obj/ +**/publish/ +**/artifacts/ +**/out/ +**/TestResults/ + +# Ignore specific project-level build dirs (legacy/explicit) +*/bin/ +*/obj/ +jRandomSkills-Source/bin/ +jRandomSkills-Source/obj/ +WASDMenuAPI-Source/*/bin/ +WASDMenuAPI-Source/*/obj/ + +# .NET / MSBuild artifacts +*.dll +*.exe +*.pdb +*.nupkg +*.runtimeconfig.json +project.lock.json +project.fragment.lock.json +packages/ + +# IDE / editor +.vs/ +.vscode/ +.idea/ +*.suo +*.user +*.userosscache + +# Logs, caches, temp +*.log +*.cache +*.tmp +*.temp + +# Other common ignores +node_modules/ +dist/ \ No newline at end of file