softworkz

Results 258 comments of softworkz

> You need to right-click the project you're interested in (or its evaluation), and click Preprocess Don't see that: ![Image](https://github.com/user-attachments/assets/11dcfc78-1ef9-4107-a147-602d430620f5)

It's a binlog from VS, though, maybe that's why it's missing. Yes, confirmed, I see it when building from the viewer app. Does the preprocess result include all imported files...

Alright, my mistake was to open and use the logs from within Visual Studio. Those are actually lacking all the things I'm interested in. I was already wondering why there...

> Yes, binlogs from VS suck: > [msbuildlog.com#MSBUILDDEBUGENGINE](https://msbuildlog.com/#MSBUILDDEBUGENGINE) I knew this, but I had totally forgotten about it until this conversation. Can you recognize VS sourced binlogs? Maybe it makes...

> This to me sounds like "when you're in the middle of writing a C# program, you can't be bothered to take the time and learn C# syntax" - if...

I see the same behavior.

> However, you can build your own image using [this](https://github.com/actions/runner-images/blob/main/docs/create-image-and-azure-resources.md?rgh-link-date=2024-03-19T20%3A51%3A18Z) instruction. Then you can create a [self-hosted agent](https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/windows-agent?view=azure-devops) based on the created image and try to reproduce the issue. I've...

It can be reproduced with a single PowerShell task: ```powershell Set-PSDebug -Trace 1 Add-AppxPackage -Path "$(System.DefaultWorkingDirectory)/WinArtifacts/WinUIStore/MyApp.Client.WinUI_$(MyAppVersionPlain1)_Test/Dependencies/x64/Microsoft.WindowsAppRuntime.1.5.msix" $msixPath = "$(System.DefaultWorkingDirectory)/WinArtifacts/WinUI/MyApp.Client.WinUI_$(MyAppVersionPlain1)_x64.msix" # Install the MSIX package Add-AppxPackage -Path $msixPath Get-AppxPackage MyApp.Client.WinUI Start-Process...

I have created a test application: https://github.com/softworkz/WebView2_WinUI3_Sample With two release packages, one with fixed runtime and one using the system runtime: https://github.com/softworkz/WebView2_WinUI3_Sample/releases/tag/Test_01 And here's a public Azure DevOps pipeline which...

The screenshot I'm taking on the agent shows an error for the fixed runtime (didn't get that with my actual application): ![image](https://github.com/actions/runner-images/assets/4985349/615b1883-0662-48e3-836b-769f1cb00271) . I have tested these test app packages...