Where does VSCode store its Most Recently Used (MRU) list of .NET projects and solutions on Windows?

325 views Asked by At

Where does VSCode store its Most Recently Used (MRU) list of .NET projects and solutions on Windows?

And also is there some open source code to fetch VSCode's MRUs?

I scanned all files in this dir (recursive) C:\Users\pat\AppData\Roaming\Code with no luck

1

There are 1 answers

0
Kamen Minkov On BEST ANSWER

For you it should be in C:\Users\pat\AppData\Roaming\Code\User\globalStorage\state.vscdb; this file is an SQLite database and you can look around for tools that open this kind of file (because it won't be readable as plain text) to see what's inside and decide whether you can sync it across machines (if that's what you're after).

Also reference this answer, there's very useful stuff over there.