From 89948f83512b273c59d24e9f606ee91e892a9d6b Mon Sep 17 00:00:00 2001 From: Theaux Masquelier <43664045+Theauxm@users.noreply.github.com> Date: Mon, 18 May 2026 13:12:37 -0600 Subject: [PATCH] chore: ignore MSBuild static-graph restore cache *.csproj.lscache is produced by MSBuild's static graph restore and should not be checked in. Generated locally on every build/restore. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 2b888db..082ac38 100644 --- a/.gitignore +++ b/.gitignore @@ -146,3 +146,6 @@ BenchmarkDotNet.Artifacts/ # Node modules (semantic-release) node_modules/ + +# MSBuild static graph restore cache +*.csproj.lscache