24 lines
		
	
	
		
			675 B
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			675 B
		
	
	
	
		
			XML
		
	
	
	
<Project Sdk="Microsoft.NET.Sdk">
 | 
						|
 | 
						|
  <PropertyGroup>
 | 
						|
    <OutputType>Exe</OutputType>
 | 
						|
    <TargetFramework>net9.0-windows</TargetFramework>
 | 
						|
    <ImplicitUsings>enable</ImplicitUsings>
 | 
						|
    <Nullable>enable</Nullable>
 | 
						|
  </PropertyGroup>
 | 
						|
 | 
						|
  <ItemGroup>
 | 
						|
    <PackageReference Include="EPPlus" Version="7.7.3" />
 | 
						|
    <PackageReference Include="kmCommonLibsCore" Version="2.0.0.179" />
 | 
						|
    <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>
 | 
						|
 | 
						|
</Project>
 |