Morten Nielsen

Results 478 comments of Morten Nielsen

This is typically how we do it. Use something like ``` public Map Map { #if __IOS__ || __ANDROID__ || NETSTANDARD // basic property #elif NETFX_CORE || WPF // Dependency...

Yes and no. The pattern there is quite different unless you create a xamarin.forms version on top. For instance on iOS you typically use MVC instead. When it comes to...

> Anyway - to state that dependency properties are required by XAML is simply not true. Dependency properties are part of MVVM and you can see here that binding can...

Is it a breaking behavior to change the default apartment state to STA? If so we'd need to enable it with the configuration (which doesn't currently work). Or some other...

@singhsarab Sorry I don't know where I'd have to start to do this. Also it might mean adding netcore3.0 targets across the board, which is probably a rather large task,...

Alternatively, place the portable version of TestAdapter in the \lib\ folder of the nuget package, so it gets deployed to android and ios, and we can call into it from...

TBH I'm finding the `/Blame` feature by itself rather useless. Knowing which test ran last isn't really that helpful - usually if a crash occurs, it's off-thread coming from a...

I logged a semi-similar issue here: https://developercommunity.visualstudio.com/t/vstestconsole-fails-to-launch-packaged/10042040?space=8&q=vstest.console&sort=newest The callstack is the same for the bottom part, and the error is similarly related wrt not being able to load an assembly.

@pvlakshm Could we reopen this issue? I have a use-case for using the TestAdapter as .NET Standard, when executing tests on Xamarin. I've created my own port of MSTest.TestAdapter (https://www.nuget.org/packages/MSTestX.TestAdapter/)...

> It is not possible to author a test project targeting NETStandard. It must target a app runtime (net46, netcoreappX.Y etc.). This makes no sense to me. That restriction applies...