You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been frequently noticing dotnet build and similar operations complaining about "access denied" and "The process cannot access the file .../obj/project.assets.json because it is being used by another process."
Searching for handles with System Informer results in the relevant files only being opened by the dotnet.exe process hosting this extension.
The text was updated successfully, but these errors were encountered:
- Ensure file stream is closed as soon as the contents have been read
- Use FileShare.Read to enable simultaneous read-access by other processes
tintoy/msbuild-project-tools-vscode#139
I've been frequently noticing
dotnet build
and similar operations complaining about "access denied" and "The process cannot access the file.../obj/project.assets.json
because it is being used by another process."Searching for handles with System Informer results in the relevant files only being opened by the dotnet.exe process hosting this extension.
The text was updated successfully, but these errors were encountered: