Server.Hotfix.csproj 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.0</TargetFramework>
  4. <AssemblyName>Hotfix</AssemblyName>
  5. <RootNamespace>ETHotfix</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\</OutputPath>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  15. <DefineConstants>TRACE;RELEASE;NETCOREAPP2_0;SERVER</DefineConstants>
  16. <OutputPath>..\..\Bin\</OutputPath>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <Compile Remove="Other\**" />
  20. <EmbeddedResource Remove="Other\**" />
  21. <None Remove="Other\**" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\Model\Server.Model.csproj" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Folder Include="Module\Http\" />
  28. </ItemGroup>
  29. </Project>