ExcelExporter.csproj 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  4. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  5. <RootNamespace>ET</RootNamespace>
  6. <LangVersion>8</LangVersion>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <OutputType>Exe</OutputType>
  10. <TargetFramework>net5.0</TargetFramework>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  13. <OutputPath>./Bin</OutputPath>
  14. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  17. <OutputPath>./Bin</OutputPath>
  18. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <PackageReference Include="EPPlus" Version="5.5.2" />
  22. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.9.0" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <None Update="Template.txt">
  26. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  27. </None>
  28. </ItemGroup>
  29. <ItemGroup>
  30. <ProjectReference Include="..\..\Server\ThirdParty\Server.ThirdParty.csproj" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Compile Include="..\..\Unity\Assets\Model\Core\Object\BaseAttribute.cs">
  34. <Link>BaseAttribute.cs</Link>
  35. </Compile>
  36. <Compile Include="..\..\Unity\Assets\Model\Module\Config\ConfigAttribute.cs">
  37. <Link>ConfigAttribute.cs</Link>
  38. </Compile>
  39. <Compile Include="..\..\Unity\Assets\Model\Module\Config\IConfig.cs">
  40. <Link>IConfig.cs</Link>
  41. </Compile>
  42. </ItemGroup>
  43. </Project>