Skip to content

Commit

Permalink
Fix the entry assembly of a ClickOnce application not having Avalonia…
Browse files Browse the repository at this point in the history
… XAML compilation output (#17115)
  • Loading branch information
TomEdwardsEnscape authored Sep 25, 2024
1 parent b8d8fda commit f36cb54
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/Avalonia/AvaloniaBuildTasks.targets
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@
<_AvaloniaXamlCompiledSymbols Include="@(_DebugSymbolsIntermediatePath->Metadata('AvaloniaCompileOutput'))"/>
<_DebugSymbolsIntermediatePath Remove="@(_DebugSymbolsIntermediatePath)"/>
<_DebugSymbolsIntermediatePath Include="@(_AvaloniaXamlCompiledSymbols)"/>

<!-- ClickOnce takes a copy of @(IntermediateAssembly) during the evaluation phase -->
<_DeploymentManifestEntryPoint Remove="@(_DeploymentManifestEntryPoint)" />
<_DeploymentManifestEntryPoint Include="@(_AvaloniaXamlCompiledAssembly)">
<TargetPath>$(TargetFileName)</TargetPath>
</_DeploymentManifestEntryPoint>
</ItemGroup>
</Target>

Expand Down

0 comments on commit f36cb54

Please sign in to comment.