From ed85cd93b0c3d7d37959ab2f950ac16ec7ea353f Mon Sep 17 00:00:00 2001 From: Mike Kistler Date: Sun, 19 Oct 2025 11:24:35 -0700 Subject: [PATCH 1/3] Add .env to gitignore for dotenv files --- Dotnet.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dotnet.gitignore b/Dotnet.gitignore index 35063fc7..fa3f1b24 100644 --- a/Dotnet.gitignore +++ b/Dotnet.gitignore @@ -36,6 +36,9 @@ ScaffoldingReadMe.txt # NuGet Symbol Packages *.snupkg +# dotenv environment variables file +.env* + # Others ~$* *~ @@ -51,4 +54,4 @@ CodeCoverage/ # NUnit *.VisualState.xml TestResult.xml -nunit-*.xml \ No newline at end of file +nunit-*.xml From 7ecf2d3e799b960950dfc3cb2e949c04c3b7cf77 Mon Sep 17 00:00:00 2001 From: Mike Kistler Date: Fri, 7 Nov 2025 14:02:24 -0800 Subject: [PATCH 2/3] Apply suggestion from @thorrsson --- Dotnet.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Dotnet.gitignore b/Dotnet.gitignore index fa3f1b24..40ecd6b6 100644 --- a/Dotnet.gitignore +++ b/Dotnet.gitignore @@ -38,6 +38,7 @@ ScaffoldingReadMe.txt # dotenv environment variables file .env* +!.env.example # Others ~$* From f0d151001c959e0a3a6917f5c24e3de455a05dd8 Mon Sep 17 00:00:00 2001 From: Mike Kistler Date: Mon, 10 Nov 2025 13:26:09 -0800 Subject: [PATCH 3/3] Apply suggestion from @thorrsson --- Dotnet.gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dotnet.gitignore b/Dotnet.gitignore index 40ecd6b6..7282dbf2 100644 --- a/Dotnet.gitignore +++ b/Dotnet.gitignore @@ -37,8 +37,7 @@ ScaffoldingReadMe.txt *.snupkg # dotenv environment variables file -.env* -!.env.example +.env # Others ~$*