InventoryAgent/Directory.Build.props
2025-10-20 00:03:49 +08:00

10 lines
576 B
XML

<Project>
<!-- This file applies settings to all projects in this directory and subdirectories. -->
<ItemGroup Condition="'$(MSBuildProjectName)' == 'Inventory.Core'">
<!-- Ensure vault.exe is copied to the output directory if it exists in a project. -->
<Content Include="Vault\vault.exe" CopyToOutputDirectory="PreserveNewest" Link="vault.exe" />
<!-- Ensure vault.hcl is copied to the output directory if it exists in a project. -->
<Content Include="Vault\vault.hcl" CopyToOutputDirectory="PreserveNewest" Link="vault.hcl" />
</ItemGroup>
</Project>