Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit e8cb2a9

Browse files
committed
Use GraphQL to read PR reviews/comments.
This is integrated a bit hackily into `ModelService`; `ModelService` doesn't really mesh well with GraphQL but without a lot of refactoring this was the best way to get things up and running.
1 parent 38ac072 commit e8cb2a9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/GitHub.App/Models/Account.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public BitmapSource Avatar
8888
set { avatar = value; this.RaisePropertyChanged(); }
8989
}
9090

91-
#region Equality things
91+
#region Equality things
9292
public void CopyFrom(IAccount other)
9393
{
9494
if (!Equals(other))

src/GitHub.App/packages.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
<package id="Microsoft.VisualStudio.TextManager.Interop" version="7.10.6071" targetFramework="net461" />
2121
<package id="Microsoft.VisualStudio.TextManager.Interop.8.0" version="8.0.50728" targetFramework="net461" />
2222
<package id="Microsoft.VisualStudio.Utilities" version="14.3.25407" targetFramework="net461" />
23-
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net45" />
23+
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" />
24+
<package id="Octokit.GraphQL" version="0.0.1" targetFramework="net461" />
2425
<package id="Rothko" version="0.0.3-ghfvs" targetFramework="net461" />
2526
<package id="Rx-Core" version="2.2.5-custom" targetFramework="net45" />
2627
<package id="Rx-Interfaces" version="2.2.5-custom" targetFramework="net45" />

0 commit comments

Comments
 (0)