ExcelExporter.csproj 1.5 KB

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