I have a basic Solution as per below:
I have setup the Solution Properties so that VisGit
depends on VisGit.Core
. VisGit.Core
has also been imported as a library into VisGit
. It compiles fine with no errors. However, when I try to run it in the VS test environment, I get:
Could not load file or assembly 'VisGit.Core, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
I’m guessing its not building the VisGit.Core lib to the relevant test environment location? Not sure how to check that. What I’ve tried:
- Adding
[assembly: ProvideCodeBase(AssemblyName = "VisGit.Core")]
to VisGit.AssemblyInfo.cs
-
The usual clean, delete bin/obj, restart VS stuff.
-
Adding VisGit.Core to vsixmanifest>Assets
No joy. Any advice would be appreciated.