Server.App.csproj 1.2 KB

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