Skip to content

Instantly share code, notes, and snippets.

@PatrickMcDonald
Last active August 29, 2015 14:05
Show Gist options
  • Save PatrickMcDonald/7400c0b69c11aa186c3b to your computer and use it in GitHub Desktop.
Save PatrickMcDonald/7400c0b69c11aa186c3b to your computer and use it in GitHub Desktop.
@echo off
pushd visualfsharp\src
msbuild fsharp-library-build.proj /p:TargetFramework=net40
if %errorlevel% neq 0 goto :END
msbuild fsharp-library-unittests-build.proj /p:TargetFramework=net40
if %errorlevel% neq 0 goto :END
call update.cmd debug -ngen
popd
pushd visualfsharp\Debug\net40\bin
nunit-console FSharp.Core.Unittests.dll -run=FSharp.Core.Unittests.SurfaceArea,FSharp.Core.Unittests.FSharp_Core.Microsoft_FSharp_Collections
:END
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment