Files
GenericTeProgramLibrary/Source/ProgramPostBuild/ProgramPostBuild.csproj
2025-10-24 15:18:11 -07:00

35 lines
1.2 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<OutputType>exe</OutputType>
<Company>Raytheon Technologies</Company>
<Product>Raytheon Common Library</Product>
<Description>Raytheon Common Library</Description>
<Authors>TEEC</Authors>
<Copyright>Copyright © Raytheon Technologies $([System.DateTime]::get_now().ToString("yyyy"))</Copyright>
<!-- Dynamic Versioning (Suitable for Release) -->
<!-- <Version>$(Version)$(Suffix)</Version> -->
<!-- Static Versioning (Suitable for Development) -->
<Version>1.3.0</Version>
<Configurations>Debug;Release;Deploy</Configurations>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Raytheon.Common" Version="1.0.0" />
</ItemGroup>
<Target Name="CopyFilesToOutputDir" AfterTargets="AfterBuild">
<ItemGroup>
<FILES_1 Include="ConfigFiles\**\*.*" />
<FILES_2 Include="Dependencies\*.*" />
</ItemGroup>
<Copy SourceFiles="@(FILES_1)" DestinationFolder="$(OutDir)" />
<Copy SourceFiles="@(FILES_2)" DestinationFolder="$(OutDir)" />
<Exec Command="$(TargetPath)"/>
</Target>
</Project>