ExcelExporter.csproj 907 B

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  4. <RootNamespace>ET</RootNamespace>
  5. </PropertyGroup>
  6. <PropertyGroup>
  7. <OutputType>Exe</OutputType>
  8. <TargetFramework>net5.0</TargetFramework>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  11. <OutputPath>../../ToolsApp/ExcelExporter/</OutputPath>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  14. <OutputPath>../../ToolsApp/ExcelExporter/</OutputPath>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <PackageReference Include="EPPlus" Version="5.5.2" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <None Update="Template.txt">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </None>
  23. </ItemGroup>
  24. </Project>