From 9c1792744c2213db6b95c05118b0ec094efa5374 Mon Sep 17 00:00:00 2001 From: Jaxel Rojas Date: Sat, 17 Sep 2022 09:20:22 -0400 Subject: [PATCH] Add MSBuild_Logs/ to VisualStudio.gitignore The MsBuild team added a switch to the Visual Studio engine that generates a debugging information under the directory MsBuild_Logs/ that shouldn't be in source control systems. Here's the [original PR](https://github.com/dotnet/msbuild/commit/cdb5077c451180ab38161e0b5e70f5448e70355b) from the msbuild team. Here is the documentation from the msbuild team explaining the feature that [generates the path](https://github.com/dotnet/msbuild/blob/main/documentation/wiki/Building-Testing-and-Debugging-on-Full-Framework-MSBuild.md#logs) Heres' a similar PR for the dotnet [runtime](https://github.com/dotnet/runtime/pull/59323) --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..104a3602 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -351,6 +351,7 @@ ASALocalRun/ # MSBuild Binary and Structured Log *.binlog +MSBuild_Logs/ # NVidia Nsight GPU debugger configuration file *.nvuser