Skip to content

Commit f5804ec

Browse files
Martin LercherMartin Lercher
authored andcommitted
Merge branch 'omnisharp-master' into inputhandler-refactoring
2 parents 26d5c20 + 771ceff commit f5804ec

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.appveyor.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,6 @@ after_build:
88
- codecov -f "./artifacts/coverage/coverage.xml"
99
artifacts:
1010
- path: ./artifacts/nuget/*.nupkg
11+
nuget:
12+
account_feed: true
13+
project_feed: true

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Param(
4747
[string]$Configuration = "Release",
4848
[ValidateSet("Quiet", "Minimal", "Normal", "Verbose", "Diagnostic")]
4949
[string]$Verbosity = "Verbose",
50-
[switch]$Experimental,
50+
[switch]$Experimental = $true,
5151
[Alias("DryRun","Noop")]
5252
[switch]$WhatIf,
5353
[switch]$Mono,

test/JsonRpc.Tests/InputHandlerTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ private static InputHandler NewHandler(
4141
responseRouter);
4242
handler.Start();
4343
cts.Wait();
44+
Task.Delay(10).Wait();
4445
return handler;
4546
}
4647

0 commit comments

Comments
 (0)