New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of psake
task Test -depends Compile {
  $origin_directory = pwd
  cd $build_directory
  $test_assemblies = dir $build_directory -filter *test*.dll | foreach {$_.FullName }
  $gsnap = Get-PSSnapin -name Gallio
  if($gsnap -eq $null){
    Add-PSSnapIn Gallio
  }
  Run-Gallio $test_assemblies -verbose -ReportTypes Html-Condensed -ReportDirectory $test_report_directory
  cd $origin_directory        
by RhysC   February 15, 2010 @ 11:28pm
40 Views
no comments
 
properties { 
  
  # ****************  CONFIGURE **************** 
    $solution_name =         "Framework"
    $test_library =         "$solution_name.Test.dll"
  
    $libraries_to_merge =     "antlr3.runtime.dll", `
                    "ajaxcontroltoolkit.dll", `
                    "Castle.DynamicProxy2.dll", `
                    "Castle.Core.dll", `
by David R. Longnecker   September 08, 2009 @ 11:12am
186 Views
no comments
 
brought to you by:
West Wind Techologies


If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate