In my solution, I have a multi-targeting project creating the following outputs: netstandard1.2;netstandard1.3;net45;win81;wpa81;MonoAndroid70;Xamarin.iOS10
When I do a P2P reference from an iOS app, a NET 4.5 unit test project, etc, they all pick netstandard1.2 as shown on the properties path of the reference:
@onovotny What I am seeing is that build actually selects the correct TFM, (change output level to detailed and see /reference arg to compiler) but the property pane does incorrectly show the path of the first target framework.
I presume that you have worse symptoms than a bad path in the properties pane by the description of "so unit tests run for now" in your workaround commit. However, when I make a unit test from the net45 app that asserts that a method which returns the TFM does what I expect, it works fine. Do you have a (hopefully simple) repro for this causing unit tests to fail?
One thing I'm now noticing on top of the property pane being incorrect is that IntelliSense is showing me completions based on the surface are of the first TFM and not the one that a real build would use. I presume that has the same root cause as the bad property pane value.
In my solution, I have a multi-targeting project creating the following outputs:
netstandard1.2;netstandard1.3;net45;win81;wpa81;MonoAndroid70;Xamarin.iOS10
When I do a P2P reference from an iOS app, a NET 4.5 unit test project, etc, they all pick

netstandard1.2
as shown on the properties path of the reference:You can repro this by loading the following clairernovotny/microsoft-authentication-library-for-dotnet@d41e237.
Build src\Microsoft.Identity.Client and then look at the properties of the test project below (and of the other sample projects.
The text was updated successfully, but these errors were encountered: