Skip to content

Commit

Permalink
- Updating Mixer client libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
SaviorXTanren committed Feb 7, 2018
1 parent 6580028 commit d574122
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion MixItUp.Base/ChannelSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public static async Task<bool> ConnectUser(IEnumerable<OAuthClientScopeEnum> sco
{
try
{
MixerConnection connection = await MixerConnection.ConnectViaLocalhostOAuthBrowser(ChannelSession.ClientID, scopes, false, "LoginRedirectPage.html");
MixerConnection connection = await MixerConnection.ConnectViaLocalhostOAuthBrowser(ChannelSession.ClientID, scopes, false, loginSuccessHtmlPageFilePath: "LoginRedirectPage.html");
if (connection != null)
{
ChannelSession.Connection = new MixerConnectionWrapper(connection);
Expand Down
2 changes: 1 addition & 1 deletion MixItUp.Base/MixItUp.Base.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="mixer-client-csharp" Version="0.5.0.13-beta" />
<PackageReference Include="mixer-client-csharp" Version="0.5.0.14-beta" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions MixItUp.Desktop/MixItUp.Desktop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\packages\EntityFramework.6.0.0\lib\net45\EntityFramework.SqlServer.dll</HintPath>
</Reference>
<Reference Include="Mixer.Base, Version=0.5.0.13, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\mixer-client-csharp.0.5.0.13-beta\lib\netstandard2.0\Mixer.Base.dll</HintPath>
<Reference Include="Mixer.Base, Version=0.5.0.14, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\mixer-client-csharp.0.5.0.14-beta\lib\netstandard2.0\Mixer.Base.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion MixItUp.Desktop/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="EntityFramework" version="6.0.0" targetFramework="net461" />
<package id="InputSimulator" version="1.0.4.0" targetFramework="net461" />
<package id="mixer-client-csharp" version="0.5.0.13-beta" targetFramework="net461" />
<package id="mixer-client-csharp" version="0.5.0.14-beta" targetFramework="net461" />
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" />
<package id="System.Collections.Immutable" version="1.4.0" targetFramework="net461" />
<package id="System.Collections.Specialized" version="4.3.0" targetFramework="net461" />
Expand Down
6 changes: 3 additions & 3 deletions MixItUp.WPF/MixItUp.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@
<HintPath>..\packages\MaterialDesignThemes.2.3.1.953\lib\net45\MaterialDesignThemes.Wpf.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Mixer.Base, Version=0.5.0.13, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\mixer-client-csharp.0.5.0.13-beta\lib\netstandard2.0\Mixer.Base.dll</HintPath>
<Reference Include="Mixer.Base, Version=0.5.0.14, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\mixer-client-csharp.0.5.0.14-beta\lib\netstandard2.0\Mixer.Base.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
Expand Down Expand Up @@ -834,13 +834,13 @@
<Resource Include="AutoUpdater.xml" />
</ItemGroup>
<ItemGroup>
<Resource Include="LICENSE.txt" />
<Resource Include="Assets\Images\Discord.png" />
<Resource Include="Assets\Images\Youtube.png" />
<Resource Include="Assets\Images\Wiki.png" />
<Content Include="Changelog.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Resource Include="LICENSE.txt" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
2 changes: 1 addition & 1 deletion MixItUp.WPF/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<package id="InputSimulator" version="1.0.4.0" targetFramework="net452" />
<package id="MaterialDesignColors" version="1.1.3" targetFramework="net461" />
<package id="MaterialDesignThemes" version="2.3.1.953" targetFramework="net461" />
<package id="mixer-client-csharp" version="0.5.0.13-beta" targetFramework="net461" />
<package id="mixer-client-csharp" version="0.5.0.14-beta" targetFramework="net461" />
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" />
<package id="System.Collections.Immutable" version="1.4.0" targetFramework="net461" />
<package id="System.Collections.Specialized" version="4.3.0" targetFramework="net461" />
Expand Down

0 comments on commit d574122

Please sign in to comment.