You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the way netcoreapp3 works, after discussion with @terrajobst, we need to use the new buildTransitive folder with NuGet to supply two versions of the library for netcoreapp3: 1 with the overloads and one without.
We can switch them on a condition (UseWPF/UseWindowsForms/something else?) from a targets file for that TFM and be sure the targets will be applied across all consumers.
Plan:
Build netcoreapp3 twice, with and without
put a blank entry in \lib\netcoreapp3.0 (_._).
Use a targets file in buildTransitive\netcoreapp3.0 to include an ItemGroup with a Reference element. Will conditionally use the right version of the library based on the properties.
The text was updated successfully, but these errors were encountered:
Due to the way
netcoreapp3
works, after discussion with @terrajobst, we need to use the newbuildTransitive
folder with NuGet to supply two versions of the library fornetcoreapp3
: 1 with the overloads and one without.https://github.com/NuGet/Home/wiki/Allow-package--authors-to-define-build-assets-transitive-behavior
We can switch them on a condition (UseWPF/UseWindowsForms/something else?) from a targets file for that TFM and be sure the targets will be applied across all consumers.
Plan:
netcoreapp3
twice, with and without\lib\netcoreapp3.0
(_._
).buildTransitive\netcoreapp3.0
to include anItemGroup
with aReference
element. Will conditionally use the right version of the library based on the properties.The text was updated successfully, but these errors were encountered: