What is the file ResolveAssemblyReference.cache
used for and does it need to be checked in?
What is ResolveAssemblyReference.cache?
28k views Asked by Ken At
2
What is the file ResolveAssemblyReference.cache
used for and does it need to be checked in?
It is a file produced by the ResolveAssemblyReference build target. MSDN has this to say about it:
If I interpret this correctly, I'd say that the file is used to help the IDE provide proper IntelliSense and assembly reference status in the References node. It is a fairly expensive operation since there are potentially a lot of assemblies that can be referenced. So instead of doing this repeatedly, the .cache file can help make this quick. Deleting it isn't an issue, it will be recreated when the project is reloaded.