ET.Loader.csproj 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <RootNamespace>ET</RootNamespace>
  5. <LangVersion>12</LangVersion>
  6. <AssemblyName>ET.Loader</AssemblyName>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <DefineConstants>DOTNET</DefineConstants>
  14. <OutputPath>$(SolutionDir)Bin</OutputPath>
  15. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  16. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  17. <Optimize>false</Optimize>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  20. <DefineConstants>DOTNET</DefineConstants>
  21. <OutputPath>$(SolutionDir)Bin</OutputPath>
  22. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  23. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  24. <Optimize>true</Optimize>
  25. </PropertyGroup>
  26. <ItemGroup>
  27. <Compile Include="$(SolutionDir)Packages\cn.etetet.*\Scripts\Loader\Share\**\*.cs">
  28. <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
  29. </Compile>
  30. <Compile Include="$(SolutionDir)Packages\cn.etetet.*\Scripts\Loader\Server\**\*.cs">
  31. <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
  32. </Compile>
  33. </ItemGroup>
  34. <ItemGroup>
  35. <PackageReference Include="CommandLineParser" Version="2.9.1" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <None Update="NLog.config">
  39. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  40. </None>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <ProjectReference Include="..\..\cn.etetet.core\DotNet~\ET.Core.csproj" />
  44. </ItemGroup>
  45. </Project>