Server.App.csproj 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <DefineConstants>TRACE;DEBUG;NETCOREAPP2_0;SERVER</DefineConstants>
  13. <OutputPath>bin\Debug\..\..\..\..\Bin\</OutputPath>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <DefineConstants>TRACE;RELEASE;NETCOREAPP2_0;SERVER</DefineConstants>
  17. <OutputPath>bin\Release\..\..\..\..\Bin\</OutputPath>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <PackageReference Include="NLog" Version="5.0.0-beta11" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\Model\Server.Model.csproj" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <None Update="NLog.config">
  27. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  28. </None>
  29. </ItemGroup>
  30. </Project>