Keine Beschreibung

CallCenter.WebChatServer.csproj 4.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{60F13CFE-7479-463C-A11D-B8D94E96E480}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>CallCenter.WebChatServer</RootNamespace>
  10. <AssemblyName>CallCenter.WebChatServer</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  37. <HintPath>..\..\packages\log4net.2.0.3\lib\net40-full\log4net.dll</HintPath>
  38. </Reference>
  39. <Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  40. <HintPath>..\..\packages\Newtonsoft.Json.5.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
  41. </Reference>
  42. <Reference Include="SuperSocket.Common, Version=1.6.0.4, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
  43. <HintPath>..\..\packages\SuperWebSocket.0.9.0.2\lib\net40\SuperSocket.Common.dll</HintPath>
  44. </Reference>
  45. <Reference Include="SuperSocket.Facility, Version=1.6.6.1, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
  46. <HintPath>..\..\packages\SuperSocket.1.6.6.1\lib\net45\SuperSocket.Facility.dll</HintPath>
  47. </Reference>
  48. <Reference Include="SuperSocket.SocketBase, Version=1.6.0.4, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
  49. <HintPath>..\..\packages\SuperWebSocket.0.9.0.2\lib\net40\SuperSocket.SocketBase.dll</HintPath>
  50. </Reference>
  51. <Reference Include="SuperSocket.SocketEngine, Version=1.6.0.4, Culture=neutral, PublicKeyToken=6c80000676988ebb, processorArchitecture=MSIL">
  52. <HintPath>..\..\packages\SuperWebSocket.0.9.0.2\lib\net40\SuperSocket.SocketEngine.dll</HintPath>
  53. </Reference>
  54. <Reference Include="SuperWebSocket, Version=0.9.0.0, Culture=neutral, PublicKeyToken=7ba53b9a7cef5d1c, processorArchitecture=MSIL">
  55. <HintPath>..\..\packages\SuperWebSocket.0.9.0.2\lib\net40\SuperWebSocket.dll</HintPath>
  56. </Reference>
  57. <Reference Include="System" />
  58. <Reference Include="System.Configuration" />
  59. <Reference Include="System.Core" />
  60. <Reference Include="System.Xml.Linq" />
  61. <Reference Include="System.Data.DataSetExtensions" />
  62. <Reference Include="Microsoft.CSharp" />
  63. <Reference Include="System.Data" />
  64. <Reference Include="System.Net.Http" />
  65. <Reference Include="System.Xml" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <Compile Include="ChatClass.cs" />
  69. <Compile Include="ChatCommon.cs" />
  70. <Compile Include="ChatServer.cs" />
  71. <Compile Include="ChatSql.cs" />
  72. <Compile Include="Program.cs" />
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <None Include="App.config" />
  77. <None Include="packages.config" />
  78. </ItemGroup>
  79. <ItemGroup>
  80. <ProjectReference Include="..\..\CallCenterApi\CallCenterApi.DB\CallCenterApi.DB.csproj">
  81. <Project>{ae933bfc-b06c-4fe8-a352-0ce16db082d7}</Project>
  82. <Name>CallCenterApi.DB</Name>
  83. </ProjectReference>
  84. </ItemGroup>
  85. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  86. </Project>