PageRenderTime 40ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/Extensions/src/Ncqrs.Eventing.Storage.RavenDB.Tests/Ncqrs.Eventing.Storage.RavenDB.Tests.csproj

https://github.com/bkak/ncqrs
MSBuild | 109 lines | 102 code | 0 blank | 7 comment | 0 complexity | de7b836538235cdacc424115b315eb2a MD5 | raw file
Possible License(s): Apache-2.0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>{7714E2D3-372D-4B0A-9393-F7A0EDA331F5}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Ncqrs.Eventing.Storage.RavenDB.Tests</RootNamespace>
  12. <AssemblyName>Ncqrs.Eventing.Storage.RavenDB.Tests</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <OutputPath>..\..\..\lib\$(Configuration)\$(AssemblyName)\</OutputPath>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="Esent.Interop">
  34. <HintPath>..\..\..\lib\ThirdParty\RavenDB\Esent.Interop.dll</HintPath>
  35. <Private>False</Private>
  36. </Reference>
  37. <Reference Include="FluentAssertions">
  38. <HintPath>..\..\..\lib\ThirdParty\FluentAssertions\FluentAssertions.dll</HintPath>
  39. <Private>False</Private>
  40. </Reference>
  41. <Reference Include="ICSharpCode.NRefactory">
  42. <HintPath>..\..\..\lib\ThirdParty\RavenDB\ICSharpCode.NRefactory.dll</HintPath>
  43. <Private>False</Private>
  44. </Reference>
  45. <Reference Include="log4net">
  46. <HintPath>..\..\..\lib\ThirdParty\log4net\log4net.dll</HintPath>
  47. <Private>False</Private>
  48. </Reference>
  49. <Reference Include="Lucene.Net">
  50. <HintPath>..\..\..\lib\ThirdParty\RavenDB\Lucene.Net.dll</HintPath>
  51. <Private>False</Private>
  52. </Reference>
  53. <Reference Include="Ncqrs">
  54. <HintPath>..\..\..\lib\$(Configuration)\Ncqrs\Ncqrs.dll</HintPath>
  55. <Private>False</Private>
  56. </Reference>
  57. <Reference Include="Newtonsoft.Json">
  58. <HintPath>..\..\..\lib\ThirdParty\RavenDB\Newtonsoft.Json.dll</HintPath>
  59. <Private>False</Private>
  60. </Reference>
  61. <Reference Include="nunit.framework">
  62. <HintPath>..\..\..\lib\ThirdParty\Nunit\nunit.framework.dll</HintPath>
  63. <Private>False</Private>
  64. </Reference>
  65. <Reference Include="Raven.Client">
  66. <HintPath>..\..\..\lib\ThirdParty\RavenDB\Raven.Client.dll</HintPath>
  67. <Private>False</Private>
  68. </Reference>
  69. <Reference Include="Raven.Database">
  70. <HintPath>..\..\..\lib\ThirdParty\RavenDB\Raven.Database.dll</HintPath>
  71. <Private>False</Private>
  72. </Reference>
  73. <Reference Include="Rhino.Mocks">
  74. <HintPath>..\..\..\lib\ThirdParty\RhinoMocks\Rhino.Mocks.dll</HintPath>
  75. <Private>False</Private>
  76. </Reference>
  77. <Reference Include="System" />
  78. <Reference Include="System.Core" />
  79. <Reference Include="System.Xml.Linq" />
  80. <Reference Include="System.Data.DataSetExtensions" />
  81. <Reference Include="Microsoft.CSharp" />
  82. <Reference Include="System.Data" />
  83. <Reference Include="System.Xml" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <Compile Include="RavenDBEventStoreTests.cs" />
  87. <Compile Include="Properties\AssemblyInfo.cs" />
  88. <Compile Include="RavenDBSnapshotStoreTests.cs" />
  89. <Compile Include="RavenDBTestBase.cs" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <None Include="app.config" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <ProjectReference Include="..\Ncqrs.Eventing.Storage.RavenDB\Ncqrs.Eventing.Storage.RavenDB.csproj">
  96. <Project>{EA93A91D-7BC9-4EC0-8A22-8A772AFD76C3}</Project>
  97. <Name>Ncqrs.Eventing.Storage.RavenDB</Name>
  98. <Private>False</Private>
  99. </ProjectReference>
  100. </ItemGroup>
  101. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  102. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  103. Other similar extension points exist, see Microsoft.Common.targets.
  104. <Target Name="BeforeBuild">
  105. </Target>
  106. <Target Name="AfterBuild">
  107. </Target>
  108. -->
  109. </Project>