Server.App.csproj 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp2.1</TargetFramework>
  5. <AssemblyName>App</AssemblyName>
  6. <RootNamespace>App</RootNamespace>
  7. <LangVersion>7.3</LangVersion>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <DefineConstants>TRACE;DEBUG;NETCOREAPP2_0;SERVER</DefineConstants>
  14. <OutputPath>..\..\Bin\</OutputPath>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <DefineConstants>TRACE;RELEASE;NETCOREAPP2_0;SERVER</DefineConstants>
  18. <OutputPath>..\..\Bin\</OutputPath>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <PackageReference Include="NLog" Version="4.5.4" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\Model\Server.Model.csproj" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <None Update="NLog.config">
  28. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  29. </None>
  30. </ItemGroup>
  31. </Project>