Server.App.csproj 981 B

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