ET.ExcelExporter.csproj 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>false</ImplicitUsings>
  6. <Nullable>disable</Nullable>
  7. <RootNamespace>ET</RootNamespace>
  8. <LangVersion>12</LangVersion>
  9. <PackageId>Apps.Tool</PackageId>
  10. <AssemblyName>ET.ExcelExporter</AssemblyName>
  11. </PropertyGroup>
  12. <PropertyGroup>
  13. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  14. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  17. <OutputPath>$(SolutionDir)Bin</OutputPath>
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. <DefineConstants>DOTNET</DefineConstants>
  20. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  23. <OutputPath>$(SolutionDir)Bin</OutputPath>
  24. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. <DefineConstants>DOTNET</DefineConstants>
  26. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <Compile Include="..\..\cn.etetet.core\Runtime\Model\Share\Module\Config\**\*.cs">
  30. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  31. </Compile>
  32. <Compile Include="..\..\cn.etetet.core\Runtime\Model\Share\Module\Log\**\*.cs">
  33. <Link>Module\Log\%(RecursiveDir)%(FileName)%(Extension)</Link>
  34. </Compile>
  35. <Compile Include="..\..\cn.etetet.core\Runtime\Network\OpcodeRangeDefine.cs">
  36. <Link>OpcodeRangeDefine.cs</Link>
  37. </Compile>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <None Update="Template.txt">
  41. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  42. </None>
  43. </ItemGroup>
  44. <ItemGroup>
  45. <PackageReference Include="EPPlus" Version="7.1.2" />
  46. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" />
  47. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <ProjectReference Include="..\..\cn.etetet.core\DotNet~\ET.Core\ET.Core.csproj" />
  51. </ItemGroup>
  52. </Project>