Server.App.csproj 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net5.0</TargetFramework>
  5. <RootNamespace>ET</RootNamespace>
  6. <LangVersion>8</LangVersion>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
  14. <OutputPath>..\..\Bin\</OutputPath>
  15. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
  19. <OutputPath>..\..\Bin\</OutputPath>
  20. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <PackageReference Include="NLog" Version="4.5.4" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\Model\Server.Model.csproj" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <None Update="NLog.config">
  30. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  31. </None>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Folder Include="Properties" />
  35. </ItemGroup>
  36. </Project>