HppZ
HppZ

no commits since 2019, so is Windows Composition API dead?
I want to apply effects to the blue area: 
https://stackoverflow.com/questions/49718377/dropshadow-with-image-blur-uwp
`.\LottieGen.exe -Language cs -GenerateColorBindings -GenerateDependencyObject -WinUIVersion 2.7 -OutputFolder output\ -InputFile` when `-GenerateDependencyObject` is set, `public void SetColorProperty(string propertyName, Color value)` is not right. 
`this.UnloadObject(AnimatedVisualPlayer1);` 
*Project* UWP appinstaller **Describe the bug** App installation failed with error message: error 0xC00CEE23: The XML in the .appinstaller file is not valid: Line 52, Column 5, Reason: '>' expected....
```cpp concurrencpp::generator Test::test_generator() { int i = 0; while(i++ < 5) { co_yield co_await test_async_task(); } } concurrencpp::result Test::test_async_task() { co_await runtime.timer_queue()->make_delay_object(std::chrono::milliseconds(5000), runtime.thread_pool_executor()); co_return 42; } void Test::onClicked() { for...