websocket-sharp.csproj 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{B357BAC7-529E-4D81-A0D2-71041B19C8DE}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>WebSocketSharp</RootNamespace>
  11. <AssemblyName>websocket-sharp</AssemblyName>
  12. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  13. <SignAssembly>true</SignAssembly>
  14. <AssemblyOriginatorKeyFile>websocket-sharp.snk</AssemblyOriginatorKeyFile>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug</OutputPath>
  21. <DefineConstants>DEBUG</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <ConsolePause>false</ConsolePause>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>none</DebugType>
  28. <Optimize>false</Optimize>
  29. <OutputPath>bin\Release</OutputPath>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <ConsolePause>false</ConsolePause>
  33. </PropertyGroup>
  34. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Ubuntu|AnyCPU' ">
  35. <DebugSymbols>true</DebugSymbols>
  36. <DebugType>full</DebugType>
  37. <Optimize>false</Optimize>
  38. <OutputPath>bin\Debug_Ubuntu</OutputPath>
  39. <DefineConstants>DEBUG</DefineConstants>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. <ConsolePause>false</ConsolePause>
  43. </PropertyGroup>
  44. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Ubuntu|AnyCPU' ">
  45. <DebugType>none</DebugType>
  46. <Optimize>false</Optimize>
  47. <OutputPath>bin\Release_Ubuntu</OutputPath>
  48. <ErrorReport>prompt</ErrorReport>
  49. <WarningLevel>4</WarningLevel>
  50. <ConsolePause>false</ConsolePause>
  51. <GenerateDocumentation>true</GenerateDocumentation>
  52. <CustomCommands>
  53. <CustomCommands>
  54. <Command type="AfterBuild" command="doc/doc.sh" workingdir="doc/" externalConsole="True" />
  55. </CustomCommands>
  56. </CustomCommands>
  57. </PropertyGroup>
  58. <ItemGroup>
  59. <Reference Include="System" />
  60. <Reference Include="System.Core" />
  61. <Reference Include="System.ServiceModel" />
  62. </ItemGroup>
  63. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  64. </Project>