Skip to content

Commit

Permalink
Revert #1520
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Mar 17, 2016
1 parent 9cfc1d4 commit e58ca0b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### 2.52.11 - 17.03.2016
#### 2.52.12 - 17.03.2016
* REVERT: Revert #1520

#### 2.52.10 - 17.03.2016
Expand Down
8 changes: 1 addition & 7 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,7 @@ Target "BuildPowerShell" (fun _ ->
// Run the unit tests using test runner

Target "RunTests" (fun _ ->
!! testAssemblies
|> NUnit (fun p ->
{ p with
DisableShadowCopy = true
ToolPath = "packages/test/NUnit.Runners.Net4/tools"
TimeOut = TimeSpan.FromMinutes 20.
OutputFile = "TestResults.xml" })
()
)

Target "QuickTest" (fun _ ->
Expand Down
5 changes: 4 additions & 1 deletion src/Paket.Core/PackageResolver.fs
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,10 @@ let Resolve(groupName:GroupName, sources, getVersionsF, getPackageDetailsF, glob

match !state with
| Resolution.Conflict(resolved,closed,stillOpen,conflicts,lastPackageRequirement,getVersionF)
when conflicts |> Set.exists (fun r -> r = currentRequirement || r.Graph |> List.contains currentRequirement) |> not ->

when
(Set.isEmpty conflicts |> not) &&
(conflicts |> Set.exists (fun r -> r = currentRequirement || r.Graph |> List.contains currentRequirement) |> not) ->
forceBreak := true
| _ -> ()

Expand Down

0 comments on commit e58ca0b

Please sign in to comment.