Visual Studio 2019 16.10.0.Net 5
I've made a nuget package for company internal use.In this package, i references Microsoft.Extensions.Hosting.WindowsServices which references many other packages:
When i now use this nuget package in another project, then only my assembly (and few others) are copied to output folder, but many of the referenced assemblies are missing, like:
- Microsoft.Extensions.Configuration.CommandLine.dll
- Microsoft.Extensions.Configuration.UserSecrets.dll
- Microsoft.Extensions.DependencyInjection.dll
- Microsoft.Extensions.Logging.*
In the project, that i've build, there is CopyLocalLockFileAssemblies=true.What can i do, to copy the missing assemblies to output folder (without xcopy in PostBuild)?