PageRenderTime 47ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/src/RabbitMQ/NServiceBus.RabbitMQ.Tests/NServiceBus.Transports.RabbitMQ.Tests.csproj

https://github.com/PeterLehmann/NServiceBus
MSBuild | 105 lines | 98 code | 0 blank | 7 comment | 0 complexity | d8376d70ff1bcb30b941ef4dc74d1590 MD5 | raw file
Possible License(s): MIT, Apache-2.0, MPL-2.0-no-copyleft-exception
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" 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>{8B773CFD-E0F8-402F-AABC-04580289C76A}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>NServiceBus.Transports.RabbitMQ.Tests</RootNamespace>
  11. <AssemblyName>NServiceBus.Transports.RabbitMQ.Tests</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\</SolutionDir>
  15. <RestorePackages>true</RestorePackages>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  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. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="FluentAssertions, Version=2.0.1.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
  36. <SpecificVersion>False</SpecificVersion>
  37. <HintPath>..\..\..\packages\FluentAssertions.2.0.1\lib\net40\FluentAssertions.dll</HintPath>
  38. </Reference>
  39. <Reference Include="NLog, Version=2.0.1.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
  40. <SpecificVersion>False</SpecificVersion>
  41. <HintPath>..\..\..\packages\NLog.2.0.1.2\lib\net40\NLog.dll</HintPath>
  42. </Reference>
  43. <Reference Include="nunit.framework">
  44. <HintPath>..\..\..\packages\NUnit.2.6.2\lib\nunit.framework.dll</HintPath>
  45. </Reference>
  46. <Reference Include="RabbitMQ.Client, Version=3.0.0.0, Culture=neutral, PublicKeyToken=89e7d7c5feba84ce, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>..\..\..\packages\RabbitMQ.Client.3.0.0\lib\net30\RabbitMQ.Client.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System" />
  51. <Reference Include="System.Core" />
  52. <Reference Include="System.Transactions" />
  53. <Reference Include="System.Web.Services" />
  54. <Reference Include="System.Xml.Linq" />
  55. <Reference Include="System.Data.DataSetExtensions" />
  56. <Reference Include="Microsoft.CSharp" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="ClusteringTests\ClusteredTestContext.cs" />
  62. <Compile Include="ClusteringTests\when_connected_to_local_cluster_and_all_nodes_are_up.cs" />
  63. <Compile Include="ClusteringTests\when_connected_to_local_cluster_and_first_node_is_unavailable.cs" />
  64. <Compile Include="ClusteringTests\when_connected_to_local_cluster_and_nodes_start_going_down.cs" />
  65. <Compile Include="ConnectionString\ConnectionConfigurationTests.cs" />
  66. <Compile Include="ConnectionString\ConnectionStringParserTests.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. <Compile Include="RabbitMqContext.cs" />
  69. <Compile Include="TestCategory.cs" />
  70. <Compile Include="When_consuming_messages.cs" />
  71. <Compile Include="When_sending_a_message_over_rabbitmq.cs" />
  72. <Compile Include="TransportMessageBuilder.cs" />
  73. <Compile Include="When_subscribed_to_a_event.cs" />
  74. </ItemGroup>
  75. <ItemGroup>
  76. <None Include="packages.config" />
  77. </ItemGroup>
  78. <ItemGroup>
  79. <ProjectReference Include="..\..\NServiceBus.Core\NServiceBus.Core.csproj">
  80. <Project>{dd48b2d0-e996-412d-9157-821ed8b17a9d}</Project>
  81. <Name>NServiceBus.Core</Name>
  82. </ProjectReference>
  83. <ProjectReference Include="..\..\NServiceBus\NServiceBus.csproj">
  84. <Project>{73867d40-8cbb-48e9-bffa-12bbdd48a341}</Project>
  85. <Name>NServiceBus %28NServiceBus\NServiceBus%29</Name>
  86. </ProjectReference>
  87. <ProjectReference Include="..\NServiceBus.RabbitMQ\NServiceBus.Transports.RabbitMQ.csproj">
  88. <Project>{ba731749-22c7-4025-8a4d-465ae8e02e61}</Project>
  89. <Name>NServiceBus.Transports.RabbitMQ</Name>
  90. </ProjectReference>
  91. </ItemGroup>
  92. <ItemGroup>
  93. <Content Include="ClusteringTests\readme.txt" />
  94. </ItemGroup>
  95. <ItemGroup />
  96. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  97. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  98. Other similar extension points exist, see Microsoft.Common.targets.
  99. <Target Name="BeforeBuild">
  100. </Target>
  101. <Target Name="AfterBuild">
  102. </Target>
  103. -->
  104. <Import Project="$(SolutionDir)Tools\Pepita\PepitaGet.targets" />
  105. </Project>