John Tur

Results 15 comments of John Tur

Perhaps this issue could be extended to adding samples for both; since DirectComposition is actually a native API, there is a lot more to demonstrate usage of TerraFX with (as...

Regarding the behavior for .NET Framework 4.8.1: is there no mechanism to enable Arm64 support at build time, other than building an Arm64-specific executable? Many .NET Framework apps (I'm thinking...

Is `ISystemMediaTransportControlsInterop` supposed to be usable from unpackaged apps? In Windows 11, it seems to have problems picking up on the app's name and icon. *Unpackaged app, lacking app title...

Is there documentation coming about the Arm64 support in .NET Framework 4.8.1? My understanding is that it requires some kind of opt-in from the application author, and that some features...

Considering that static classes cannot be used as generic type arguments today, how is this feature useful? Without the ability to do that, you cannot actually use an interface as...

This could be useful for RAII-style lock acquisition; for example, one would be able to do ```cs void M() { using _ = myLock.Acquire() // rest of scope is protected...

So, some magic documentation just showed up for `DWMWA_USE_IMMERSIVE_DARK_MODE`, thanks to some person: https://github.com/MicrosoftDocs/sdk-api/blob/docs/sdk-api-src/content/dwmapi/ne-dwmapi-dwmwindowattribute.md#-field-dwmwa_use_immersive_dark_mode Unfortunately, it seems wrong: - it mentions a constant `DWMWA_USE_IMMERSIVE_DARK_MODE_BEFORE_20H1` that doesn't exist in the Windows...

Looks like the tests I added are passing in main as-is, so I'll just update this PR to add these tests (anonymous enums seem to be untested currently).

Tangentially related question: Is there a plan to release a version of [Microsoft.DotNet.Framework.NativeImageCompiler](https://www.nuget.org/packages/Microsoft.DotNet.Framework.NativeImageCompiler) for Arm64? It works well for us on x86/x64 in places where we can't use Ngen.exe (the...