10 lines
576 B
XML
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> |