From f85d3a9d0474a889cec0368dd50fe866e65959f7 Mon Sep 17 00:00:00 2001 From: Joseph Roy Date: Tue, 11 Jul 2023 07:46:31 +0100 Subject: [PATCH] update gitignore file to ignore all bin and obj folders --- .gitignore | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 82954d4..1c7b1ad 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,4 @@ /.vs -/ImplementationTest/bin/Debug/net7.0 -/LensSimulator-WinForms/obj/Debug/net7.0-windows -/ImplementationTest/obj -/LensSimulator-WinForms/bin/Debug/net7.0-windows -/LensSimulator-WinForms/obj -/LensSimulatorCore/bin/Debug/net7.0 -/LensSimulatorCore/obj -/LensSimulatorWindows/bin/Debug/net7.0-windows -/LensSimulatorWindows/obj +# Ignore any files in /bin and /obj Folders +**/bin/* +**/obj/* \ No newline at end of file