Browse Source

Fix the entry assembly of a ClickOnce application not having Avalonia XAML compilation output (#17115)

pull/17122/head
Tom Edwards 1 year ago
committed by GitHub
parent
commit
f36cb541f0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      packages/Avalonia/AvaloniaBuildTasks.targets

6
packages/Avalonia/AvaloniaBuildTasks.targets

@ -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>

Loading…
Cancel
Save