2025-11-11 04:24:46 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2025-10-08 02:16:58 -04:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2025-10-17 06:03:43 -04:00
|
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
2025-10-08 02:16:58 -04:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-11-11 05:51:06 -05:00
|
|
|
<AssemblyVersion>1.3.0.11</AssemblyVersion>
|
|
|
|
|
<FileVersion>1.3.0.11</FileVersion>
|
|
|
|
|
<Version>1.3.0.11</Version>
|
2025-10-08 02:16:58 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="EPPlus" Version="7.7.3" />
|
2025-10-17 06:03:43 -04:00
|
|
|
<PackageReference Include="kmCommonLibsCore" Version="2.0.0.179" />
|
2025-10-08 02:16:58 -04:00
|
|
|
<PackageReference Include="Topshelf" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="Topshelf.Log4Net" Version="4.3.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="log4net.config">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-11-11 04:24:46 -05:00
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
|
|
|
<Exec Command="if /I "$(ConfigurationName)" == "Release" c:\Misc\AutoVersionIncrement.exe "$(ProjectDir)"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2025-10-08 02:16:58 -04:00
|
|
|
</Project>
|