Skip to content

Commit

Permalink
Because the old Unquote bakes the full assembly names in the quotatio…
Browse files Browse the repository at this point in the history
…ns, use the original strong-name key for the re-writes of the recorder tests.
  • Loading branch information
SteveGilham committed Jun 19, 2019
1 parent 3711c84 commit b1c67e1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Build/targets.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,7 @@ _Target "UnitTestWithOpenCover" (fun _ ->
_Target "UnitTestWithAltCover" (fun _ ->
Directory.ensure "./_Reports/_UnitTestWithAltCover"
let keyfile = Path.getFullName "Build/SelfTest.snk"
let shadowkeyfile = Path.getFullName "Build/Infrastructure.snk"
let reports = Path.getFullName "./_Reports"
let altcover = Tools.findToolInSubPath "AltCover.exe" "./_Binaries"
let here = Path.getFullName "."
Expand Down Expand Up @@ -784,7 +785,7 @@ _Target "UnitTestWithAltCover" (fun _ ->
({ Primitive.PrepareParams.Create() with XmlReport = shadowReport
OutputDirectory =
"./__ShadowTestWithAltCover"
StrongNameKey = keyfile
StrongNameKey = shadowkeyfile
InPlace = false
Save = false }
|> AltCoverFilter)
Expand Down Expand Up @@ -812,6 +813,7 @@ _Target "UnitTestWithAltCover" (fun _ ->
_Target "UnitTestWithAltCoverRunner" (fun _ ->
Directory.ensure "./_Reports/_UnitTestWithAltCover"
let keyfile = Path.getFullName "Build/SelfTest.snk"
let shadowkeyfile = Path.getFullName "Build/Infrastructure.snk"
let reports = Path.getFullName "./_Reports"
let altcover =
Tools.findToolInSubPath "AltCover.exe" "./_Binaries/AltCover/Debug+AnyCPU"
Expand Down Expand Up @@ -952,7 +954,7 @@ _Target "UnitTestWithAltCoverRunner" (fun _ ->
({ Primitive.PrepareParams.Create() with XmlReport = shadowReport
OutputDirectory =
"./__ShadowTestWithAltCoverRunner"
StrongNameKey = keyfile
StrongNameKey = shadowkeyfile
InPlace = false
Save = false }
|> AltCoverFilter)
Expand Down

0 comments on commit b1c67e1

Please sign in to comment.