Example3.csproj 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>{C648BA25-77E5-4A40-A97F-D0AA37B9FB26}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>Example3</RootNamespace>
  11. <AssemblyName>example3</AssemblyName>
  12. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>bin\Debug</OutputPath>
  19. <DefineConstants>DEBUG;</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <Externalconsole>true</Externalconsole>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>none</DebugType>
  26. <Optimize>false</Optimize>
  27. <OutputPath>bin\Release</OutputPath>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <Externalconsole>true</Externalconsole>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug_Ubuntu|AnyCPU' ">
  33. <DebugSymbols>true</DebugSymbols>
  34. <DebugType>full</DebugType>
  35. <Optimize>false</Optimize>
  36. <OutputPath>bin\Debug_Ubuntu</OutputPath>
  37. <DefineConstants>DEBUG;</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. <Externalconsole>true</Externalconsole>
  41. </PropertyGroup>
  42. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Ubuntu|AnyCPU' ">
  43. <DebugType>none</DebugType>
  44. <Optimize>false</Optimize>
  45. <OutputPath>bin\Release_Ubuntu</OutputPath>
  46. <ErrorReport>prompt</ErrorReport>
  47. <WarningLevel>4</WarningLevel>
  48. <Externalconsole>true</Externalconsole>
  49. </PropertyGroup>
  50. <ItemGroup>
  51. <Reference Include="System" />
  52. <Reference Include="System.Configuration" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="AssemblyInfo.cs" />
  56. <Compile Include="Program.cs" />
  57. <Compile Include="Chat.cs" />
  58. <Compile Include="Echo.cs" />
  59. </ItemGroup>
  60. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  61. <ItemGroup>
  62. <ProjectReference Include="..\websocket-sharp\websocket-sharp.csproj">
  63. <Project>{B357BAC7-529E-4D81-A0D2-71041B19C8DE}</Project>
  64. <Name>websocket-sharp</Name>
  65. </ProjectReference>
  66. </ItemGroup>
  67. <ItemGroup>
  68. <None Include="App.config" />
  69. <None Include="Public\index.html" />
  70. <None Include="Public\Js\echotest.js" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <Folder Include="Public\" />
  74. <Folder Include="Public\Js\" />
  75. </ItemGroup>
  76. </Project>