Visual Studio Snippets: How to reference an assembly that is not in the GAC
- by user334220
Hi, I have a 3rd party non-signed assembly that I want to reference in several projects.
So I created a snippet to add the reference and the relative imports
I tried the following, and several variations with full paths, without file:// etc, to no avail.
Any ideas?
...
<Snippet>
<References>
<Reference>
<Assembly>MyAssemly.dll</Assembly>
<Url>file://C:\Program Files\MyProduct</Url>
</Reference>
</References>
<Imports>
<Import>
...