From 21fc4d99eb4d9da5dae6c06f49e7bdd912944693 Mon Sep 17 00:00:00 2001 From: Daniel Plaisted Date: Fri, 24 Mar 2023 15:04:00 -0400 Subject: [PATCH] Add .artifacts folder to Visual Studio .gitignore We are planning to add a [new output path format](https://github.com/dotnet/designs/pull/281) to .NET projects which will by default put output in an `.artifacts` folder. So this PR adds that folder to the Visual Studio .gitignore file. The first support for this will be in .NET 8 Preview 3. We will be looking for feedback through the preview process, so it's possible that the folder name or other aspects of the design could change as a result. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..16ec71fa 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -61,6 +61,7 @@ BenchmarkDotNet.Artifacts/ project.lock.json project.fragment.lock.json artifacts/ +.artifacts/ # ASP.NET Scaffolding ScaffoldingReadMe.txt