I have the following nuspec structure:
lib
net40
mylib.dll
And the following nuspec file
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
...
<references>
<!-- don't want to add a reference to mylib.dll. Doesn't work! -->
</references>
...
</metadata>
<files>
<file src="bin\Release\**\*" target="lib\net40"/>
</files>
</package>
I tried to make an empty references block, but it still adds a reference to mylib.dll. I really want mylib.dll to be in the lib folder, because resharper finds it with ALT + ENTER.
How can I omit the reference but still keep the file in my lib folder?