| 12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netcoreapp2.0</TargetFramework>
- <AssemblyName>Hotfix</AssemblyName>
- <RootNamespace>Hotfix</RootNamespace>
- </PropertyGroup>
-
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>TRACE;DEBUG;NETCOREAPP2_0;SERVER</DefineConstants>
- <OutputPath>bin\Debug\..\..\..\..\Bin\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>TRACE;RELEASE;NETCOREAPP2_0;SERVER</DefineConstants>
- <OutputPath>bin\Release\..\..\..\..\Bin\</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Base\Server.Base.csproj" />
- <ProjectReference Include="..\Model\Server.Model.csproj" />
- </ItemGroup>
- </Project>
|