ET.Proto2CS.csproj 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. </PropertyGroup>
  10. <PropertyGroup>
  11. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  12. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  15. <OutputPath>./Exe</OutputPath>
  16. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  17. <DefineConstants>DOTNET</DefineConstants>
  18. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  21. <OutputPath>./Exe</OutputPath>
  22. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  23. <DefineConstants>DOTNET</DefineConstants>
  24. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <Compile Include="..\..\cn.etetet.core\Runtime\Model\Share\Module\Config\**\*.cs">
  28. <Link>Module\Config\%(RecursiveDir)%(FileName)%(Extension)</Link>
  29. </Compile>
  30. <Compile Include="..\..\cn.etetet.core\Runtime\Model\Share\Module\Log\**\*.cs">
  31. <Link>Module\Log\%(RecursiveDir)%(FileName)%(Extension)</Link>
  32. </Compile>
  33. </ItemGroup>
  34. <ItemGroup>
  35. <None Update="Template.txt">
  36. <CopyToOutputDirectory>Never</CopyToOutputDirectory>
  37. </None>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <PackageReference Include="EPPlus" Version="7.1.2" />
  41. <PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" />
  42. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <ProjectReference Include="..\..\cn.etetet.core\DotNet~\ET.Core.csproj" />
  46. </ItemGroup>
  47. </Project>