Server.Hotfix.csproj 951 B

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.0</TargetFramework>
  4. <AssemblyName>Hotfix</AssemblyName>
  5. <RootNamespace>Hotfix</RootNamespace>
  6. </PropertyGroup>
  7. <PropertyGroup>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  11. <DefineConstants>TRACE;DEBUG;NETCOREAPP2_0;SERVER</DefineConstants>
  12. <OutputPath>bin\Debug\..\..\..\..\Bin\</OutputPath>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  15. <DefineConstants>TRACE;RELEASE;NETCOREAPP2_0;SERVER</DefineConstants>
  16. <OutputPath>bin\Release\..\..\..\..\Bin\</OutputPath>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\Base\Server.Base.csproj" />
  20. <ProjectReference Include="..\Model\Server.Model.csproj" />
  21. </ItemGroup>
  22. </Project>