I created the nuget package. I put several files and folders in the "content" folder and it worked perfectly. So I added the bin folder with dll and put it in my nuspec file:
<files> src="bin\*.dll" target="lib" /> </files>
dlls fit well in the link, but the content is no longer copied.
How do I make them work?
@Edit
I know it:
<file src="content\Controllers\*.*" target="Controllers" /> <file src="content\Views\Account\*.*" target = "Views\Account" /> <file src="bin\*.dll" target="lib" />
The package contains the correct structure and files, but the files are not copied to my project.
Files are in the folder structure. When I put them directly in the content folder, they are copied to the root of my project ...
Nealv source share