ExcelExporter.csproj 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.9.0" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <None Update="Template.txt">
  22. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  23. </None>
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\..\Server\ThirdParty\Server.ThirdParty.csproj" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Compile Include="..\..\Unity\Assets\Model\Core\Object\BaseAttribute.cs">
  30. <Link>BaseAttribute.cs</Link>
  31. </Compile>
  32. <Compile Include="..\..\Unity\Assets\Model\Module\Config\ConfigAttribute.cs">
  33. <Link>ConfigAttribute.cs</Link>
  34. </Compile>
  35. <Compile Include="..\..\Unity\Assets\Model\Module\Config\IConfig.cs">
  36. <Link>IConfig.cs</Link>
  37. </Compile>
  38. </ItemGroup>
  39. </Project>