Skip to content

Update build.yml to test including process dumps #201

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Enabled AoT for WinAppSdk 1.6-experimental1. Added RuntimeIdentifier …
…to head, removed redundant RuntimeIdentifiers definition on libraries.
  • Loading branch information
Arlodotexe authored and michael-hawker committed Jul 31, 2024
commit 03c5ce73902e38b0f1caa83ff51c3cd389ff717c
2 changes: 1 addition & 1 deletion MultiTarget/WinUI.Extra.props
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

<RuntimeIdentifiers Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) >= 8">win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<RuntimeIdentifiers Condition="8 > $([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)'))">win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
<WindowsSdkPackageVersion>10.0.22621.35-preview</WindowsSdkPackageVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(IsUno)' == 'true'">
Expand Down
5 changes: 3 additions & 2 deletions ProjectHeads/Head.WinAppSdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
<Import Project="$(MSBuildThisFileDirectory)\..\MultiTarget\WinUI.Extra.props" />

<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<!-- Set to true when WinAppSdk releases AoT support in 1.6+ -->
<PublishAot>false</PublishAot>
<PublishAot>true</PublishAot>
<RuntimeIdentifier Condition="$([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)')) >= 8">win-$(Platform)</RuntimeIdentifier>
<RuntimeIdentifier Condition="8 > $([MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)'))">win10-$(Platform)</RuntimeIdentifier>
</PropertyGroup>

<ItemGroup>
Expand Down