Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan.mcgovern@gmail.com>2017-06-20 12:30:41 +0300
committerAlan McGovern <alan.mcgovern@gmail.com>2017-06-20 13:06:42 +0300
commit48069d63cdb0e1d25726234d7247cd3cb5f18721 (patch)
tree1331dc5ee111e27063358c664ad79a36a361f081 /build.proj
parent02dc7a3f2d25d199509effcc829657fcc9934354 (diff)
[build] Finish up the `Test` target
We can run tests manually on windows or mac using `msbuild /t:Test`
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj10
1 files changed, 6 insertions, 4 deletions
diff --git a/build.proj b/build.proj
index c85a2a3..74327ad 100644
--- a/build.proj
+++ b/build.proj
@@ -52,13 +52,15 @@
<Target Name="Rebuild" DependsOnTargets="Clean;Build" />
- <Target Name="Test" DependsOnTargets="TestMac">
-
+ <Target Name="Test" DependsOnTargets="TestMac;TestWindows">
+ <MakeDir Directories="$(Out)" />
+ <Exec Command="$(Mono64) $(TestRunner) $(TestAssembly) -result=$(Out)\TestResult.xml" />
</Target>
<Target Name="TestMac" Condition=" '$(IsMac)' ">
- <MakeDir Directories="$(Out)" />
- <Exec Command="$(Mono64) $(TestRunner) $(TestAssembly) -result=$(Out)\TestResult.xml" />
+ </Target>
+
+ <Target Name="TestWindows" Condition=" '$(IsWindows)' ">
</Target>
</Project>