Is there any way to swap the hard-coded net45 seen below with whatever is specified as the Target framework in my project settings?
<files>
<file src="bin\$configuration$\$id$.pdb" target="lib\net45\" />
</files>
I was hoping to see something like:
<files>
<file src="bin\$configuration$\$id$.pdb" target="lib\$targetframework$\" />
</files>
I don't want my team to have to remember to update the nuspec file whenever the project is upgraded.
It's worth noting that the dll itself makes it's way into the net45 folder without any extra cajouling.
Cheers