Example.csproj 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>{52805AEC-EFB1-4F42-BB8E-3ED4E692C568}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <RootNamespace>Example</RootNamespace>
  11. <AssemblyName>example</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.Core" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <ProjectReference Include="..\websocket-sharp\websocket-sharp.csproj">
  56. <Project>{B357BAC7-529E-4D81-A0D2-71041B19C8DE}</Project>
  57. <Name>websocket-sharp</Name>
  58. </ProjectReference>
  59. </ItemGroup>
  60. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  61. <ItemGroup>
  62. <Compile Include="Program.cs" />
  63. <Compile Include="AssemblyInfo.cs" />
  64. </ItemGroup>
  65. </Project>