From 963f87af7786ad2e36b4c8b0931b84530f6df945 Mon Sep 17 00:00:00 2001 From: Christopher Warrington Date: Mon, 29 Jun 2020 13:17:22 -0700 Subject: [PATCH] [c#] Ignore msbuild.binlog files Also, synchronize the .gitignore files used for the C# source tree and the examples tree. --- cs/.gitignore | 3 +++ examples/cs/.gitignore | 10 +++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/cs/.gitignore b/cs/.gitignore index cce3d3ace7..3060acfc9b 100644 --- a/cs/.gitignore +++ b/cs/.gitignore @@ -24,3 +24,6 @@ _ReSharper.* *.opensdf *.psess *.VC.db + +# MSBuild binary log +msbuild.binlog diff --git a/examples/cs/.gitignore b/examples/cs/.gitignore index 4bf8f53de9..3060acfc9b 100644 --- a/examples/cs/.gitignore +++ b/examples/cs/.gitignore @@ -2,9 +2,12 @@ bin/ obj/ TestResults/ +tools/ +Debug/ +Release/ # Nuget packages -packages/Newtonsoft.Json.*/ +packages/ # Profiler artifacts *.exe.manifest @@ -17,5 +20,10 @@ _ReSharper.* *.sdf *.suo *.user +*.opendb *.opensdf *.psess +*.VC.db + +# MSBuild binary log +msbuild.binlog