Did you find this guide helpful?
Some test text!
Windows / FAQ / ASP.NET NuGet package does not copy the PDFNet folder to the bin directory when Publishing
Platform
Documentation
To get the files copied to the Publish Target Location, please make the following changes:
2) Add the following to PublishProfile i.e. *.pubxml
<Target Name="PDFNetFiles">
<ItemGroup>
<_CustomFiles Include="bin\**\*" />
<FilesForPackagingFromProject Include="%(_CustomFiles.Identity)">
<DestinationRelativePath>bin\%(RecursiveDir)%(Filename)%(Extension)</DestinationRelativePath>
</FilesForPackagingFromProject>
</ItemGroup>
</Target>
Under PropertyGroup:
<CopyAllFilesToSingleFolderForPackageDependsOn>
PDFNetFiles;
$(CopyAllFilesToSingleFolderForPackageDependsOn);
</CopyAllFilesToSingleFolderForPackageDependsOn>
<CopyAllFilesToSingleFolderForMsdeployDependsOn>
PDFNetFiles;
$(CopyAllFilesToSingleFolderForMsdeployDependsOn);
</CopyAllFilesToSingleFolderForMsdeployDependsOn>
Please read more about deploying extra files with ASP .NET here.
Get the answers you need: Support