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
The TeamCity extension has two versions, one which targets .NET 2.0, and one which targets .NET Standard 2.0. The intended engine behaviour is that it should chose the extension targeting the highest possible framework version.
So in this case, when running the console in .NET 4.6.2 or higher, the .NET Standard 2.0 extension should be selected. What I think actually happens is that the engine simply compares "2.0" to "2.0" to chose the highest framework.
In this case, we somehow need to make it aware that .NET Standard 2.0 is "higher" that .NET Framework 2.0. This needs thinking about in terms of how we create the target "hierarchy", so it doesn't become a maintenance burden.
The text was updated successfully, but these errors were encountered:
From nunit/teamcity-event-listener#75.
The TeamCity extension has two versions, one which targets .NET 2.0, and one which targets .NET Standard 2.0. The intended engine behaviour is that it should chose the extension targeting the highest possible framework version.
So in this case, when running the console in .NET 4.6.2 or higher, the .NET Standard 2.0 extension should be selected. What I think actually happens is that the engine simply compares "2.0" to "2.0" to chose the highest framework.
In this case, we somehow need to make it aware that .NET Standard 2.0 is "higher" that .NET Framework 2.0. This needs thinking about in terms of how we create the target "hierarchy", so it doesn't become a maintenance burden.
The text was updated successfully, but these errors were encountered: