Server.Hotfix.csproj 789 B

123456789101112131415161718192021222324
  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 Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <DefineConstants>TRACE;DEBUG;NETCOREAPP2_0;SERVER</DefineConstants>
  9. <OutputPath>..\..\</OutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <DefineConstants>TRACE;RELEASE;NETCOREAPP2_0;SERVER</DefineConstants>
  13. <OutputPath>..\..\</OutputPath>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\Base\Server.Base.csproj" />
  17. <ProjectReference Include="..\Model\Server.Model.csproj" />
  18. </ItemGroup>
  19. </Project>