Server.Hotfix.csproj 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp2.1</TargetFramework>
  4. <AssemblyName>Hotfix</AssemblyName>
  5. <RootNamespace>ETHotfix</RootNamespace>
  6. <LangVersion>7.3</LangVersion>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <DefineConstants>TRACE;DEBUG;NETCOREAPP2_0;SERVER</DefineConstants>
  13. <OutputPath>..\..\Bin\</OutputPath>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <DefineConstants>TRACE;RELEASE;NETCOREAPP2_0;SERVER</DefineConstants>
  17. <OutputPath>..\..\Bin\</OutputPath>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <Compile Remove="Other\**" />
  21. <Compile Include="..\..\Unity\Assets\Model\Module\Message\NetOuterComponentSystem.cs">
  22. <Link>Module\Message\NetOuterComponentSystem.cs</Link>
  23. </Compile>
  24. <EmbeddedResource Remove="Other\**" />
  25. <None Remove="Other\**" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\Model\Server.Model.csproj" />
  29. <ProjectReference Include="..\ThirdParty\MongoDBDriver\MongoDB.Bson\MongoDB.Bson.csproj" />
  30. <ProjectReference Include="..\ThirdParty\MongoDBDriver\MongoDB.Driver.Core\MongoDB.Driver.Core.csproj" />
  31. <ProjectReference Include="..\ThirdParty\MongoDBDriver\MongoDB.Driver\MongoDB.Driver.csproj" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Folder Include="Module\Http\" />
  35. </ItemGroup>
  36. </Project>