Skip to content

Commit

Permalink
Merge pull request #474 from anirothan/master
Browse files Browse the repository at this point in the history
Linux build failure due to case sensitivity & nunit-console wrong param value spelling
  • Loading branch information
forki committed Jun 17, 2014
2 parents 7bbc478 + 7241536 commit 5dc706c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/app/FakeLib/FakeLib.fsproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
Expand Down Expand Up @@ -166,7 +166,7 @@
</Reference>
<Reference Include="mscorlib" />
<Reference Include="NuGet.Core">
<HintPath>..\..\..\packages\NuGet.Core.2.8.1\lib\net40-Client\NuGet.Core.dll</HintPath>
<HintPath>..\..\..\packages\Nuget.Core.2.8.1\lib\net40-Client\NuGet.Core.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down Expand Up @@ -194,4 +194,4 @@
</Target>
-->
<Import Project="$(FSharpTargetsPath)" />
</Project>
</Project>
4 changes: 2 additions & 2 deletions src/app/FakeLib/UnitTest/NUnit/Common.fs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ type NUnitErrorLevel = TestRunnerErrorLevel // a type alias to keep backwards co
type NUnitProcessModel =
| DefaultProcessModel
| SingleProcessModel
| SeperateProcessModel
| SeparateProcessModel
| MultipleProcessModel with
member x.ParamString =
match x with
| DefaultProcessModel -> ""
| SingleProcessModel -> "Single"
| SeperateProcessModel -> "Seperate"
| SeparateProcessModel -> "Separate"
| MultipleProcessModel -> "Multiple"
/// The /domain option controls of the creation of AppDomains for running tests. See http://www.nunit.org/index.php?p=consoleCommandLine&r=2.4.6
type NUnitDomainModel =
Expand Down

0 comments on commit 5dc706c

Please sign in to comment.