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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
6 additions and
0 deletions
-
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> |
|
|
|
|
|
|
|
|