Youssef Victor

Results 913 comments of Youssef Victor

Related to https://github.com/microsoft/testfx/issues/5951

**NOTE:** https://github.com/jaredpar/runfo is already used by dotnet/roslyn for (at least) tracking of flaky tests. Example issue: https://github.com/dotnet/roslyn/issues/58199 I think we can try to provide something with AzDO APIs (this would...

@MartinZikmund That would be a duplicate of https://github.com/unoplatform/uno/issues/14004 I think. We could treat `xmlns:any_platform="using:...` as a CLR namespace instead of a conditional xmlns.

FYI @rainersigwald. Closely related to https://github.com/modelcontextprotocol/csharp-sdk/pull/990

Interesting. Running `dotnet build /check` on https://github.com/modelcontextprotocol/csharp-sdk/tree/bf3dd5e6bc38ce267e373e53e4a4e654b119e2a9: ``` C:\Users\ygerges\Desktop\csharp-sdk [main ↑10]> dotnet build /check Restore complete (8.1s) ModelContextProtocol.TestSseServer net9.0 succeeded with 1 warning(s) (0.1s) C:\Program Files\dotnet\sdk\10.0.100\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Publish.targets(88,25): warning BC0202: https://aka.ms/buildcheck/codes#BC0202 -...

I'd like to still note that it might be worth having this as its own BuildCheck which will warn even if `Configuration` is available as global property. If I would...

> I don't think the main motivation for the deprecation should be that appdomains don't exist in .NET Core. My main motivation is that the feature wasn't designed or documented...

Note: when running `--help`, we should also handshake.

A possible *workaround* the users can make is something like this: ```csharp [TestMethod] [Ignore] // Or TestCategory, etc.. [DataRow(data1)] [DataRow(data2)] public void TestMethodIgnored(...) => TestMethodCore(...); [TestMethod] [DataRow(data3)] [DataRow(data4)] public void...