I have to tag every .dll with it's version from assembly, so from Service.dll it becomes: Service-v1.0.0.21455.dll
I tried this two approaches, but each has flows:
Build > Rename > Pack with
nuget pack Service.csproj
The challenge is that after I do so, Nuget can't find missingService.dll
Of course, because it's bin/Release/Service-v1.0.0.21455.dllBuild > Rename > Pack with
nuget pack .nuspec
Issue I'm facing here is thatdependencies
are missing withing the nuget package
This is brief explanation, let me know if it's 'even possible'/'make sense'/'you need more details'