PageRenderTime 50ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/Extensions/src/Ncqrs.EventBus.Tests/Ncqrs.EventBus.Tests.csproj

http://github.com/ncqrs/ncqrs
MSBuild | 92 lines | 85 code | 0 blank | 7 comment | 0 complexity | cead8c1631a4bd71776081ef8f934a1a MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception, Apache-2.0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{EE6E54C8-D108-49E7-9E2A-6BAEF6D5339F}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Ncqrs.EventBus.Tests</RootNamespace>
  12. <AssemblyName>Ncqrs.EventBus.Tests</AssemblyName>
  13. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\..\..\lib\$(Configuration)\$(AssemblyName)\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>..\..\..\lib\$(Configuration)\$(AssemblyName)\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <Prefer32Bit>false</Prefer32Bit>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="FluentAssertions, Version=4.12.0.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
  38. <HintPath>..\..\..\packages\FluentAssertions.4.12.0\lib\net45\FluentAssertions.dll</HintPath>
  39. <Private>True</Private>
  40. </Reference>
  41. <Reference Include="FluentAssertions.Core, Version=4.12.0.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
  42. <HintPath>..\..\..\packages\FluentAssertions.4.12.0\lib\net45\FluentAssertions.Core.dll</HintPath>
  43. <Private>True</Private>
  44. </Reference>
  45. <Reference Include="nunit.framework, Version=3.4.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
  46. <HintPath>..\..\..\packages\NUnit.3.4.1\lib\net45\nunit.framework.dll</HintPath>
  47. <Private>True</Private>
  48. </Reference>
  49. <Reference Include="Rhino.Mocks, Version=3.6.0.0, Culture=neutral, PublicKeyToken=0b3305902db7183f, processorArchitecture=MSIL">
  50. <HintPath>..\..\..\packages\RhinoMocks.3.6.1\lib\net\Rhino.Mocks.dll</HintPath>
  51. <Private>True</Private>
  52. </Reference>
  53. <Reference Include="System" />
  54. <Reference Include="System.Core" />
  55. <Reference Include="System.Xml.Linq" />
  56. <Reference Include="System.Data.DataSetExtensions" />
  57. <Reference Include="Microsoft.CSharp" />
  58. <Reference Include="System.Data" />
  59. <Reference Include="System.Xml" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="CursorPositionCalculatorSpecification.cs" />
  63. <Compile Include="EventDemultiplexerSpecification.cs" />
  64. <Compile Include="FakeProcessingElement.cs" />
  65. <Compile Include="PipelineProcessorSpecification.cs" />
  66. <Compile Include="Properties\AssemblyInfo.cs" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <None Include="packages.config" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <ProjectReference Include="..\..\..\Framework\src\Ncqrs\Ncqrs.csproj">
  73. <Project>{01f84441-80d3-49b4-ab18-96894acb2f90}</Project>
  74. <Name>Ncqrs</Name>
  75. </ProjectReference>
  76. <ProjectReference Include="..\Ncqrs.EventBus\Ncqrs.EventBus.csproj">
  77. <Project>{caf2e548-87c8-422b-a62c-8c3ed83ff3c3}</Project>
  78. <Name>Ncqrs.EventBus</Name>
  79. </ProjectReference>
  80. </ItemGroup>
  81. <ItemGroup>
  82. <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
  83. </ItemGroup>
  84. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  85. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  86. Other similar extension points exist, see Microsoft.Common.targets.
  87. <Target Name="BeforeBuild">
  88. </Target>
  89. <Target Name="AfterBuild">
  90. </Target>
  91. -->
  92. </Project>