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'm using dotnet script for some scripts which I run in parallel. Both scripts are in the same folder, but unless I turn off caching, this leads to a clash on the common cache file script.dll:
The process cannot access the file 'c:\somewhere\scripts\execution-cache\script.dll' because it is being used by another process.
The first script to get there works fine, but the 2nd fails because it tries to use the cache at the same time.
It works if I use --no-cache but I would rather not.