| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>12</LangVersion>
- <AssemblyName>ET.Loader</AssemblyName>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>DOTNET</DefineConstants>
- <OutputPath>$(SolutionDir)Bin</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <Optimize>false</Optimize>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>DOTNET</DefineConstants>
- <OutputPath>$(SolutionDir)Bin</OutputPath>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- <Optimize>true</Optimize>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="$(SolutionDir)Packages\cn.etetet.*\Scripts\Loader\Share\**\*.cs">
- <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- <Compile Include="$(SolutionDir)Packages\cn.etetet.*\Scripts\Loader\Server\**\*.cs">
- <Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
- </Compile>
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="CommandLineParser" Version="2.9.1" />
- </ItemGroup>
- <ItemGroup>
- <None Update="NLog.config">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\cn.etetet.core\DotNet~\ET.Core.csproj" />
- </ItemGroup>
- </Project>
|