From 3cdfc09983aece84ec69ed30644f87b1e8957835 Mon Sep 17 00:00:00 2001 From: Kevin Cunnane Date: Thu, 8 Sep 2016 18:09:05 -0700 Subject: [PATCH] Ignore .jfm files in Visual Studio .jfm files have started blocking checking for .sqlproj projects in Visual Studio. .jfm files are a new file-type created by the Microsoft ESENT database engine - this is a recent improvement only in Windows 10 Anniversary update. As the SSDT .sqlproj type in Visual Studio uses this engine for .dbmdl metadata files, and this file is locked by the user, this currently blocks users from checking into Git repositories. This fix helps mitigate this by avoiding checkin of this file type. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d56f8b53..c8557d40 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -189,6 +189,7 @@ ClientBin/ *~ *.dbmdl *.dbproj.schemaview +*.jfm *.pfx *.publishsettings node_modules/