| 1234567891011121314151617181920212223242526272829 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netcoreapp2.0</TargetFramework>
- <AssemblyName>Hotfix</AssemblyName>
- <RootNamespace>ETHotfix</RootNamespace>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>TRACE;DEBUG;NETCOREAPP2_0;SERVER</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>TRACE;RELEASE;NETCOREAPP2_0;SERVER</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="Other\**" />
- <EmbeddedResource Remove="Other\**" />
- <None Remove="Other\**" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Model\Server.Model.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Module\Http\" />
- </ItemGroup>
- </Project>
|