From 8a5d6f654fe5c8555e4a3225278f5a9839531b58 Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Sat, 6 Jun 2015 19:35:42 +0200 Subject: [PATCH] Let's try appveyor instead --- ICSharpCode.Decompiler/Tests/Helpers/Tester.cs | 1 + ILSpy.AddIn/ILSpy.AddIn.csproj | 3 +++ appveyor.yml | 11 +++++++++++ 3 files changed, 15 insertions(+) create mode 100644 appveyor.yml diff --git a/ICSharpCode.Decompiler/Tests/Helpers/Tester.cs b/ICSharpCode.Decompiler/Tests/Helpers/Tester.cs index 28c0adbf0..e6952d42c 100644 --- a/ICSharpCode.Decompiler/Tests/Helpers/Tester.cs +++ b/ICSharpCode.Decompiler/Tests/Helpers/Tester.cs @@ -54,6 +54,7 @@ namespace ICSharpCode.Decompiler.Tests.Helpers var errorTask = process.StandardError.ReadToEndAsync(); Task.WaitAll(outputTask, errorTask); + process.WaitForExit(); output = outputTask.Result; error = errorTask.Result; diff --git a/ILSpy.AddIn/ILSpy.AddIn.csproj b/ILSpy.AddIn/ILSpy.AddIn.csproj index 206cc1c8b..1d4a2aca4 100644 --- a/ILSpy.AddIn/ILSpy.AddIn.csproj +++ b/ILSpy.AddIn/ILSpy.AddIn.csproj @@ -51,6 +51,9 @@ true true + + False + ..\packages\VSSDK.DTE.7.0.3\lib\net20\envdte.dll diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..2870d918a --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,11 @@ +version: 1.0.{build} +configuration: Debug +platform: Any CPU +install: +- git submodule update --init --recursive +before_build: +- nuget restore ILSpy.sln +build: + project: ILSpy.sln + parallel: true + verbosity: minimal \ No newline at end of file