Skip to content

Commit

Permalink
Find the mspec path so that a package update won't break the build sc…
Browse files Browse the repository at this point in the history
…ript
  • Loading branch information
damianh committed Aug 13, 2012
1 parent f57552f commit dfc2476
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/default.ps1
Expand Up @@ -2,16 +2,16 @@ properties {
$base_directory = Resolve-Path ..
$publish_directory = "$base_directory\publish"
$build_directory = "$base_directory\build"
$src_directory = "$base_directory\Src"
$src_directory = "$base_directory\src"
$output_directory = "$base_directory\output"
$packages_directory = "$src_directory\packages"

$sln_file = "$base_directory\src\EventStore.sln"
$sln_file = "$src_directory\EventStore.sln"
$keyfile = "$src_directory/EventStore.snk"
$target_config = "Release"
$framework_version = "v4.0"

$mspec_path = "$packages_directory\Machine.Specifications.0.5.8\tools\mspec-x86-clr4.exe"
$mspec_path = @(gci -r -i mspec-x86-clr4.exe $base_directory)[0].FullName
$ilMergeModule.ilMergePath = "$base_directory\bin\ilmerge-bin\ILMerge.exe"

if($runPersistenceTests -eq $null) {
Expand Down

0 comments on commit dfc2476

Please sign in to comment.