Consuming nuget package containing .targets file via PackageReference
问题 I have .NET452 project - lets call it Consumer.csproj that I want to consume nuget lets call it SharedTargets that contained some custom targets files ( SharedTargets.targets ) from msbuild. I'm using PackageReference format and now (compared to what it used to be) nuget packages are being restored to shared folder (%userprofile%.nuget\packages), and I'm not sure if it is good idea to reference it via that (doesn't feel right). Eg: <PackageReference Include="SharedTargets"> <Version>1.0<