I want to create a NuGet Package of an PCL that Targets .NET, UWP, Android (Xamarin), iOS (Xamarin) and so on (for Example lets say Profile111).
When I reference the project in an Android app Visual Studio 2017 creates a *.mdb file which the mono debugger uses to enable step through code.
Now I wan't to get the same result with an Solution/Project that just contains the PCL code.
What I got when I compile my sample.csproj with VS2017 is
sample.dll
sample.pdb
whats missing:
sample.dll.mdb
At the end I want to be able to create a nuspec file like this one: https://github.com/xamarin/Xamarin.Forms/pull/167/files
Every hint is welcome.
Tank you Alex