Skip to content

Commit

Permalink
Fixing ncrunch support
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Mar 25, 2013
1 parent 2a2474d commit 0d7bd09
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 13 deletions.
1 change: 1 addition & 0 deletions FSharpx.TypeProviders.Tests.ncrunchsolution
Expand Up @@ -2,6 +2,7 @@
<FileVersion>1</FileVersion>
<AutoEnableOnStartup>True</AutoEnableOnStartup>
<AllowParallelTestExecution>false</AllowParallelTestExecution>
<AllowTestsToRunInParallelWithThemselves>true</AllowTestsToRunInParallelWithThemselves>
<FrameworkUtilisationTypeForNUnit>UseDynamicAnalysis</FrameworkUtilisationTypeForNUnit>
<FrameworkUtilisationTypeForGallio>UseStaticAnalysis</FrameworkUtilisationTypeForGallio>
<FrameworkUtilisationTypeForMSpec>UseStaticAnalysis</FrameworkUtilisationTypeForMSpec>
Expand Down
1 change: 1 addition & 0 deletions FSharpx.ncrunchsolution
Expand Up @@ -2,6 +2,7 @@
<FileVersion>1</FileVersion>
<AutoEnableOnStartup>True</AutoEnableOnStartup>
<AllowParallelTestExecution>false</AllowParallelTestExecution>
<AllowTestsToRunInParallelWithThemselves>true</AllowTestsToRunInParallelWithThemselves>
<FrameworkUtilisationTypeForNUnit>UseDynamicAnalysis</FrameworkUtilisationTypeForNUnit>
<FrameworkUtilisationTypeForGallio>UseStaticAnalysis</FrameworkUtilisationTypeForGallio>
<FrameworkUtilisationTypeForMSpec>UseStaticAnalysis</FrameworkUtilisationTypeForMSpec>
Expand Down
Expand Up @@ -56,7 +56,17 @@
<HintPath>..\..\packages\FsCheck.0.8.3.0\lib\net40-Client\FsCheck.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="FSharpx.Tests">
<HintPath>..\FSharpx.Tests\bin\Debug\FSharpx.Tests.dll</HintPath>
</Reference>
<Reference Include="mscorlib" />
<Reference Include="FSharp.Core" Condition="$(TargetFrameworkVersion) == 'v3.5'">
<HintPath>..\..\lib\FSharp\Net20\FSharp.Core.dll</HintPath>
</Reference>
<Reference Include="FSharp.Core" Condition="'$(TargetFrameworkVersion)' == 'v4.0'">
<HintPath>..\..\lib\FSharp\FSharp.Core.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="nunit.framework">
<Private>True</Private>
<SpecificVersion>False</SpecificVersion>
Expand All @@ -67,6 +77,8 @@
<Reference Include="System.Numerics" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="app.config" />
<Compile Include="QueueGen.fs" />
<Compile Include="HeapGen.fs" />
<Compile Include="AltBinaryRandomAccessListTest.fs" />
Expand All @@ -86,7 +98,6 @@
<Compile Include="ImplicitQueueTest.fs" />
<Compile Include="IndexedRoseTreeTest.fs" />
<Compile Include="IntMapTest.fs" />
<None Include="packages.config" />
<Compile Include="IQueueTest.fs" />
<Compile Include="LeftistHeapTest.fs" />
<Compile Include="ListZipperTest.fs" />
Expand All @@ -99,15 +110,8 @@
<Compile Include="RealTimeQueueTest.fs" />
<Compile Include="RoseTreeTest.fs" />
<Compile Include="TimeSeriesTest.fs" />
<None Include="app.config" />
</ItemGroup>
<ItemGroup>
<Reference Include="FSharp.Core" Condition="$(TargetFrameworkVersion) == 'v3.5'">
<HintPath>..\..\lib\FSharp\Net20\FSharp.Core.dll</HintPath>
</Reference>
<Reference Include="FSharp.Core" Condition="'$(TargetFrameworkVersion)' == 'v4.0'">
<HintPath>..\..\lib\FSharp\FSharp.Core.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data" />
Expand Down
Expand Up @@ -89,10 +89,5 @@
<Project>{1e95a279-c2a9-498b-bc72-6e7a0d6854ce}</Project>
<Private>True</Private>
</ProjectReference>
<ProjectReference Include="..\FSharpx.Collections.Experimental.Tests\FSharpx.Collections.Experimental.Tests.fsproj">
<Name>FSharpx.Collections.Experimental.Tests</Name>
<Project>{4b763738-cf1a-4dec-a888-7d3d15054231}</Project>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
</Project>
@@ -0,0 +1,21 @@
<ProjectConfiguration>
<CopyReferencedAssembliesToWorkspace>false</CopyReferencedAssembliesToWorkspace>
<ConsiderInconclusiveTestsAsPassing>false</ConsiderInconclusiveTestsAsPassing>
<PreloadReferencedAssemblies>false</PreloadReferencedAssemblies>
<AllowDynamicCodeContractChecking>true</AllowDynamicCodeContractChecking>
<AllowStaticCodeContractChecking>false</AllowStaticCodeContractChecking>
<IgnoreThisComponentCompletely>false</IgnoreThisComponentCompletely>
<RunPreBuildEvents>false</RunPreBuildEvents>
<RunPostBuildEvents>false</RunPostBuildEvents>
<PreviouslyBuiltSuccessfully>true</PreviouslyBuiltSuccessfully>
<InstrumentAssembly>true</InstrumentAssembly>
<PreventSigningOfAssembly>false</PreventSigningOfAssembly>
<AnalyseExecutionTimes>true</AnalyseExecutionTimes>
<IncludeStaticReferencesInWorkspace>true</IncludeStaticReferencesInWorkspace>
<DefaultTestTimeout>60000</DefaultTestTimeout>
<UseBuildConfiguration></UseBuildConfiguration>
<UseBuildPlatform></UseBuildPlatform>
<ProxyProcessPath></ProxyProcessPath>
<UseCPUArchitecture>AutoDetect</UseCPUArchitecture>
<AdditionalFilesToInclude>..\..\lib\FSharp\**.*</AdditionalFilesToInclude>
</ProjectConfiguration>

0 comments on commit 0d7bd09

Please sign in to comment.