-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump dependencies to latest versions compatible with VS2015. Skip NUnit for now, may do in a separate pass. * Update to latest Yoga and Toolkit.Uwp.UI. Eliminate relative references to the package directory so project files with work in the npm install scenario. * Removing unused Postal.NET dependency.
- Loading branch information
1 parent
ab8e6be
commit e1ef3a2
Showing
16 changed files
with
91 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" /> | ||
</startup> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Reactive.Core" publicKeyToken="94bc3704cddfc263" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-3.0.3000.0" newVersion="3.0.3000.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Facebook.Yoga" version="1.0.1-pre" targetFramework="net46" /> | ||
<package id="Facebook.Yoga" version="1.0.2-pre" targetFramework="net46" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="System.Reactive.Core" publicKeyToken="94bc3704cddfc263" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-3.0.3000.0" newVersion="3.0.3000.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Facebook.Yoga" version="1.0.1-pre" targetFramework="net46" /> | ||
<package id="Facebook.Yoga" version="1.0.2-pre" targetFramework="net46" /> | ||
<package id="Microsoft.ChakraCore" version="1.4.1-preview-00010-42060" targetFramework="net46" developmentDependency="true" /> | ||
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net46" /> | ||
<package id="PCLStorage" version="1.0.2" targetFramework="net46" /> | ||
<package id="Postal.NET" version="1.0.0.1" targetFramework="net46" /> | ||
<package id="SocketMessaging" version="1.1.6002.26530" targetFramework="net46" /> | ||
<package id="System.Reactive" version="3.0.0" targetFramework="net46" /> | ||
<package id="System.Reactive.Core" version="3.0.0" targetFramework="net46" /> | ||
<package id="System.Reactive.Interfaces" version="3.0.0" targetFramework="net46" /> | ||
<package id="System.Reactive.Linq" version="3.0.0" targetFramework="net46" /> | ||
<package id="System.Reactive.PlatformServices" version="3.0.0" targetFramework="net46" /> | ||
<package id="System.Reactive.Windows.Threading" version="3.0.0" targetFramework="net46" /> | ||
<package id="System.Reactive" version="3.1.1" targetFramework="net46" /> | ||
<package id="System.Reactive.Core" version="3.1.1" targetFramework="net46" /> | ||
<package id="System.Reactive.Interfaces" version="3.1.1" targetFramework="net46" /> | ||
<package id="System.Reactive.Linq" version="3.1.1" targetFramework="net46" /> | ||
<package id="System.Reactive.PlatformServices" version="3.1.1" targetFramework="net46" /> | ||
<package id="System.Reactive.Windows.Threading" version="3.1.1" targetFramework="net46" /> | ||
<package id="WebSocketSharp" version="1.0.3-rc11" targetFramework="net46" /> | ||
<package id="WindowsBase" version="4.6.1055.0" targetFramework="net46" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.