/src/Manos.IO/Manos.IO.csproj

http://github.com/jacksonh/manos · MSBuild · 123 lines · 123 code · 0 blank · 0 comment · 5 complexity · ab95e3c3457b51e0d5685de08bc595c8 MD5 · raw file

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{5E2AA984-1C9C-4890-BEF6-CC2981C49AFF}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>Manos.IO</RootNamespace>
  11. <AssemblyName>Manos.IO</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  15. <DebugSymbols>true</DebugSymbols>
  16. <DebugType>full</DebugType>
  17. <Optimize>false</Optimize>
  18. <OutputPath>..\..\build\</OutputPath>
  19. <DefineConstants>DEBUG</DefineConstants>
  20. <ErrorReport>prompt</ErrorReport>
  21. <WarningLevel>4</WarningLevel>
  22. <ConsolePause>false</ConsolePause>
  23. <GenerateDocumentation>true</GenerateDocumentation>
  24. <NoWarn>1591</NoWarn>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>none</DebugType>
  28. <Optimize>false</Optimize>
  29. <OutputPath>..\..\build\</OutputPath>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <ConsolePause>false</ConsolePause>
  33. <GenerateDocumentation>true</GenerateDocumentation>
  34. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(IO_COMPILE_FLAGS)' == 'FORCE_MANAGED_IO' ">
  37. <DefineConstants>ALWAYS_USE_MANAGED_IO</DefineConstants>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="Mono.Posix" />
  43. </ItemGroup>
  44. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  45. <ItemGroup>
  46. <Folder Include="Assembly\" />
  47. <Folder Include="Manos.IO\" />
  48. <Folder Include="Manos.IO.Libev\" />
  49. <Folder Include="Manos.IO.Managed\" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="Assembly\AssemblyInfo.cs" />
  53. <Compile Include="Manos.IO\ByteBuffer.cs" />
  54. <Compile Include="Manos.IO\ISendfileCapable.cs" />
  55. <Compile Include="Manos.IO\IBaseWatcher.cs" />
  56. <Compile Include="Manos.IO\IPrepareWatcher.cs" />
  57. <Compile Include="Manos.IO\ICheckWatcher.cs" />
  58. <Compile Include="Manos.IO\IAsyncWatcher.cs" />
  59. <Compile Include="Libev\AsyncWatcher.cs" />
  60. <Compile Include="Libev\CheckWatcher.cs" />
  61. <Compile Include="Libev\EventTypes.cs" />
  62. <Compile Include="Libev\IOWatcher.cs" />
  63. <Compile Include="Libev\Loop.cs" />
  64. <Compile Include="Libev\LoopType.cs" />
  65. <Compile Include="Libev\PrepareWatcher.cs" />
  66. <Compile Include="Libev\TimerWatcher.cs" />
  67. <Compile Include="Libev\UnloopType.cs" />
  68. <Compile Include="Libev\UnmanagedWatcherCallback.cs" />
  69. <Compile Include="Libev\Watcher.cs" />
  70. <Compile Include="Manos.IO\ITimerWatcher.cs" />
  71. <Compile Include="Libev\IdleWatcher.cs" />
  72. <Compile Include="Manos.IO\IIdleWatcher.cs" />
  73. <Compile Include="Manos.IO\Context.cs" />
  74. <Compile Include="Manos.IO.Libev\Context.cs" />
  75. <Compile Include="Manos.IO.Libev\Libeio.cs" />
  76. <Compile Include="Manos.IO.Libev\EioContext.cs" />
  77. <Compile Include="Manos.IO.Libev\EventedStream.cs" />
  78. <Compile Include="Manos.IO.Libev\SendFileOperation.cs" />
  79. <Compile Include="Manos.IO.Libev\FileStream.cs" />
  80. <Compile Include="Manos.IO.Managed\Context.cs" />
  81. <Compile Include="Manos.IO.Managed\Watcher.cs" />
  82. <Compile Include="Manos.IO.Managed\AsyncWatcher.cs" />
  83. <Compile Include="Manos.IO.Managed\PrepareWatcher.cs" />
  84. <Compile Include="Manos.IO.Managed\CheckWatcher.cs" />
  85. <Compile Include="Manos.IO.Managed\IdleWatcher.cs" />
  86. <Compile Include="Manos.IO.Managed\FileStream.cs" />
  87. <Compile Include="Manos.IO.Managed\TimerWatcher.cs" />
  88. <Compile Include="Manos.IO.Managed\UdpSocket.cs" />
  89. <Compile Include="Manos.IO\AddressFamily.cs" />
  90. <Compile Include="Manos.IO\FragmentStream.cs" />
  91. <Compile Include="Manos.IO\UdpPacket.cs" />
  92. <Compile Include="Manos.IO\IStream.cs" />
  93. <Compile Include="Manos.IO\IByteStream.cs" />
  94. <Compile Include="Manos.IO.Libev\EventedByteStream.cs" />
  95. <Compile Include="Manos.IO.Managed\ManagedByteStream.cs" />
  96. <Compile Include="Manos.IO.Managed\ManagedStream.cs" />
  97. <Compile Include="Manos.IO\ISocket.cs" />
  98. <Compile Include="Manos.IO\ITcpSocket.cs" />
  99. <Compile Include="Manos.IO\IUdpSocket.cs" />
  100. <Compile Include="Manos.IO\Socket.cs" />
  101. <Compile Include="Manos.IO.Libev\IPSocket.cs" />
  102. <Compile Include="Manos.IO.Libev\SocketFunctions.cs" />
  103. <Compile Include="Manos.IO.Libev\ManosIPEndpoint.cs" />
  104. <Compile Include="Manos.IO\ProtocolFamily.cs" />
  105. <Compile Include="Manos.IO.Libev\UdpSocket.cs" />
  106. <Compile Include="Manos.IO.Libev\TcpSocket.cs" />
  107. <Compile Include="Manos.IO\IStreamSocket.cs" />
  108. <Compile Include="Manos.IO\ITcpServerSocket.cs" />
  109. <Compile Include="Manos.IO.Managed\TcpSocket.cs" />
  110. <Compile Include="Manos.IO.Managed\IPSocket.cs" />
  111. <Compile Include="Manos.IO\SocketException.cs" />
  112. <Compile Include="Manos.IO\EndPoint.cs" />
  113. <Compile Include="Manos.IO\IPEndPoint.cs" />
  114. <Compile Include="Manos.IO\IPAddress.cs" />
  115. <Compile Include="Manos.IO\SocketError.cs" />
  116. <Compile Include="Manos.IO\Errors.cs" />
  117. <Compile Include="Manos.IO\IOException.cs" />
  118. <Compile Include="Manos.IO\OpenMode.cs" />
  119. </ItemGroup>
  120. <Target Name="ListSources">
  121. <Message Text="@(Compile)" Importance="High" />
  122. </Target>
  123. </Project>