ExcelExporter.csproj 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <PackageReference Include="MongoDB.Bson" Version="2.13.0" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <None Update="Template.txt">
  27. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  28. </None>
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Include="..\..\Unity\Assets\Model\Core\Object\BaseAttribute.cs">
  32. <Link>BaseAttribute.cs</Link>
  33. </Compile>
  34. <Compile Include="..\..\Unity\Assets\Model\Module\Config\ConfigAttribute.cs">
  35. <Link>ConfigAttribute.cs</Link>
  36. </Compile>
  37. <Compile Include="..\..\Unity\Assets\Model\Module\Config\IConfig.cs">
  38. <Link>IConfig.cs</Link>
  39. </Compile>
  40. </ItemGroup>
  41. <ItemGroup>
  42. <ProjectReference Include="..\..\ThirdParty\protobuf-net\protobuf-net.csproj" />
  43. </ItemGroup>
  44. </Project>