Server.Hotfix.csproj 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.1</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. <Compile Include="..\..\Unity\Assets\Model\Module\Message\NetOuterComponentSystem.cs">
  21. <Link>Module\Message\NetOuterComponentSystem.cs</Link>
  22. </Compile>
  23. <EmbeddedResource Remove="Other\**" />
  24. <None Remove="Other\**" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ProjectReference Include="..\Model\Server.Model.csproj" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Folder Include="Module\Http\" />
  31. </ItemGroup>
  32. </Project>