Last active
August 29, 2015 14:05
-
-
Save PatrickMcDonald/7400c0b69c11aa186c3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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