Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Yatao Li committed Aug 26, 2019
1 parent f071d32 commit 629a8c3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
5 changes: 1 addition & 4 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="Avalonia Nightly" value="https://www.myget.org/F/avalonia-ci/api/v2" />
</packageSources>
</configuration>
3 changes: 1 addition & 2 deletions Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"profiles": {
"fvim": {
"commandName": "Project",
"commandLineArgs": "--connect localhost:9527"
"commandName": "Project"
}
}
}
8 changes: 4 additions & 4 deletions fvim.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Avalonia" Version="0.8.999-cibuild0003188-beta" />
<PackageReference Include="Avalonia" Version="0.8.999-cibuild0003548-beta" />
<PackageReference Include="Avalonia.Angle.Windows.Natives" Version="2.1.0.2019013001" />
<PackageReference Include="Avalonia.Desktop" Version="0.8.999-cibuild0003188-beta" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.8.999-cibuild0003188-beta" />
<PackageReference Include="Avalonia.Desktop" Version="0.8.999-cibuild0003548-beta" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.8.999-cibuild0003548-beta" />
<PackageReference Include="FSharp.Control.Reactive" Version="4.2.0" />
<PackageReference Include="FSharp.Data" Version="3.1.1" />
<PackageReference Include="GitInfo" Version="2.0.20">
Expand All @@ -89,7 +89,7 @@
<PackageReference Include="ReactiveUI" Version="9.18.2" />
<PackageReference Include="SkiaSharp.HarfBuzz" Version="1.68.0" />
<PackageReference Include="TaskBuilder.fs" Version="2.1.0" />
<PackageReference Update="FSharp.Core" Version="4.6.2" />
<PackageReference Update="FSharp.Core" Version="4.7.0" />
<PackageReference Include="UACHelper" Version="1.3.0.5" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion neovim/neovim.process.fs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ type Nvim() =
Task.Factory.StartNew(fun () ->
trace "begin read loop"
let mutable ex = false
while not ex && serverExitCode().IsNone && not cancel.IsCancellationRequested do
while not ex && not cancel.IsCancellationRequested do
try
let data = MessagePackSerializer.Deserialize<obj>(stdout, true)
ob.OnNext(data)
Expand Down

0 comments on commit 629a8c3

Please sign in to comment.