Skip to content

Commit a50ec43

Browse files
committed
Updating Azure NuGet package dependencies
1 parent 1efa96f commit a50ec43

File tree

7 files changed

+65
-71
lines changed

7 files changed

+65
-71
lines changed

build/package.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<tags></tags>
1818
<dependencies>
1919
<dependency id="UmbracoCms.Core" version="0.0.0" />
20-
<dependency id="WindowsAzure.Storage" version="6.2.0" />
21-
<dependency id="Microsoft.WindowsAzure.ConfigurationManager" version="3.2.1" />
20+
<dependency id="WindowsAzure.Storage" version="8.2.1" />
21+
<dependency id="Microsoft.WindowsAzure.ConfigurationManager" version="3.2.3" />
2222
</dependencies>
2323
</metadata>
2424
</package>

src/UmbracoFileSystemProviders.Azure.Installer/UmbracoFileSystemProviders.Azure.Installer.csproj

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -101,17 +101,14 @@
101101
<HintPath>..\packages\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll</HintPath>
102102
<Private>True</Private>
103103
</Reference>
104-
<Reference Include="Microsoft.Data.Edm, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
105-
<HintPath>..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll</HintPath>
106-
<Private>True</Private>
104+
<Reference Include="Microsoft.Data.Edm, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
105+
<HintPath>..\packages\Microsoft.Data.Edm.5.8.2\lib\net40\Microsoft.Data.Edm.dll</HintPath>
107106
</Reference>
108-
<Reference Include="Microsoft.Data.OData, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
109-
<HintPath>..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll</HintPath>
110-
<Private>True</Private>
107+
<Reference Include="Microsoft.Data.OData, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
108+
<HintPath>..\packages\Microsoft.Data.OData.5.8.2\lib\net40\Microsoft.Data.OData.dll</HintPath>
111109
</Reference>
112-
<Reference Include="Microsoft.Data.Services.Client, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
113-
<HintPath>..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll</HintPath>
114-
<Private>True</Private>
110+
<Reference Include="Microsoft.Data.Services.Client, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
111+
<HintPath>..\packages\Microsoft.Data.Services.Client.5.8.2\lib\net40\Microsoft.Data.Services.Client.dll</HintPath>
115112
</Reference>
116113
<Reference Include="Microsoft.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
117114
<HintPath>..\packages\UmbracoCms.Core.7.1.9\lib\Microsoft.Web.Helpers.dll</HintPath>
@@ -130,12 +127,10 @@
130127
<Private>True</Private>
131128
</Reference>
132129
<Reference Include="Microsoft.WindowsAzure.Configuration, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
133-
<HintPath>..\packages\Microsoft.WindowsAzure.ConfigurationManager.3.2.1\lib\net40\Microsoft.WindowsAzure.Configuration.dll</HintPath>
134-
<Private>True</Private>
130+
<HintPath>..\packages\Microsoft.WindowsAzure.ConfigurationManager.3.2.3\lib\net40\Microsoft.WindowsAzure.Configuration.dll</HintPath>
135131
</Reference>
136-
<Reference Include="Microsoft.WindowsAzure.Storage, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
137-
<HintPath>..\packages\WindowsAzure.Storage.6.2.0\lib\net40\Microsoft.WindowsAzure.Storage.dll</HintPath>
138-
<Private>True</Private>
132+
<Reference Include="Microsoft.WindowsAzure.Storage, Version=8.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
133+
<HintPath>..\packages\WindowsAzure.Storage.8.2.1\lib\net45\Microsoft.WindowsAzure.Storage.dll</HintPath>
139134
</Reference>
140135
<Reference Include="MiniProfiler, Version=2.1.0.0, Culture=neutral, PublicKeyToken=b44f9351044011a3, processorArchitecture=MSIL">
141136
<HintPath>..\packages\MiniProfiler.2.1.0\lib\net40\MiniProfiler.dll</HintPath>
@@ -169,9 +164,8 @@
169164
<Private>True</Private>
170165
</Reference>
171166
<Reference Include="System.Net.Http.WebRequest" />
172-
<Reference Include="System.Spatial, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
173-
<HintPath>..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll</HintPath>
174-
<Private>True</Private>
167+
<Reference Include="System.Spatial, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
168+
<HintPath>..\packages\System.Spatial.5.8.2\lib\net40\System.Spatial.dll</HintPath>
175169
</Reference>
176170
<Reference Include="System.Web" />
177171
<Reference Include="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

src/UmbracoFileSystemProviders.Azure.Installer/packages.config

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,24 @@
1818
<package id="Microsoft.AspNet.WebApi.WebHost" version="4.0.30506.0" targetFramework="net45" />
1919
<package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net45" />
2020
<package id="Microsoft.Azure.KeyVault.Core" version="1.0.0" targetFramework="net45" />
21-
<package id="Microsoft.Data.Edm" version="5.6.4" targetFramework="net45" />
22-
<package id="Microsoft.Data.OData" version="5.6.4" targetFramework="net45" />
23-
<package id="Microsoft.Data.Services.Client" version="5.6.4" targetFramework="net45" />
21+
<package id="Microsoft.Data.Edm" version="5.8.2" targetFramework="net45" />
22+
<package id="Microsoft.Data.OData" version="5.8.2" targetFramework="net45" />
23+
<package id="Microsoft.Data.Services.Client" version="5.8.2" targetFramework="net45" />
2424
<package id="Microsoft.Net.Http" version="2.0.20710.0" targetFramework="net45" />
2525
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
2626
<package id="Microsoft.Web.Xdt" version="2.1.1" targetFramework="net45" />
27-
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="3.2.1" targetFramework="net45" />
27+
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="3.2.3" targetFramework="net45" />
2828
<package id="MiniProfiler" version="2.1.0" targetFramework="net45" />
2929
<package id="MySql.Data" version="6.6.5" targetFramework="net45" />
3030
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net45" />
3131
<package id="SharpZipLib" version="0.86.0" targetFramework="net45" />
3232
<package id="StyleCop.Analyzers" version="1.0.0" targetFramework="net45" developmentDependency="true" />
33-
<package id="System.Spatial" version="5.6.4" targetFramework="net45" />
33+
<package id="System.ComponentModel.EventBasedAsync" version="4.0.11" targetFramework="net45" />
34+
<package id="System.Dynamic.Runtime" version="4.0.0" targetFramework="net45" />
35+
<package id="System.Linq.Queryable" version="4.0.0" targetFramework="net45" />
36+
<package id="System.Net.Requests" version="4.0.11" targetFramework="net45" />
37+
<package id="System.Spatial" version="5.8.2" targetFramework="net45" />
3438
<package id="UmbracoCms.Core" version="7.1.9" targetFramework="net45" />
35-
<package id="WindowsAzure.Storage" version="6.2.0" targetFramework="net45" />
39+
<package id="WindowsAzure.Storage" version="8.2.1" targetFramework="net45" />
3640
<package id="xmlrpcnet" version="2.5.0" targetFramework="net45" />
3741
</packages>

src/UmbracoFileSystemProviders.Azure.Tests/UmbracoFileSystemProviders.Azure.Tests.csproj

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,14 @@
9797
<HintPath>..\packages\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll</HintPath>
9898
<Private>True</Private>
9999
</Reference>
100-
<Reference Include="Microsoft.Data.Edm, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
101-
<HintPath>..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll</HintPath>
102-
<Private>True</Private>
100+
<Reference Include="Microsoft.Data.Edm, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
101+
<HintPath>..\packages\Microsoft.Data.Edm.5.8.2\lib\net40\Microsoft.Data.Edm.dll</HintPath>
103102
</Reference>
104-
<Reference Include="Microsoft.Data.OData, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
105-
<HintPath>..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll</HintPath>
106-
<Private>True</Private>
103+
<Reference Include="Microsoft.Data.OData, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
104+
<HintPath>..\packages\Microsoft.Data.OData.5.8.2\lib\net40\Microsoft.Data.OData.dll</HintPath>
107105
</Reference>
108-
<Reference Include="Microsoft.Data.Services.Client, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
109-
<HintPath>..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll</HintPath>
110-
<Private>True</Private>
106+
<Reference Include="Microsoft.Data.Services.Client, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
107+
<HintPath>..\packages\Microsoft.Data.Services.Client.5.8.2\lib\net40\Microsoft.Data.Services.Client.dll</HintPath>
111108
</Reference>
112109
<Reference Include="Microsoft.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
113110
<HintPath>..\packages\UmbracoCms.Core.7.1.9\lib\Microsoft.Web.Helpers.dll</HintPath>
@@ -121,12 +118,10 @@
121118
<HintPath>..\packages\Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.1\lib\net40\Microsoft.Web.Mvc.FixedDisplayModes.dll</HintPath>
122119
</Reference>
123120
<Reference Include="Microsoft.WindowsAzure.Configuration, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
124-
<HintPath>..\packages\Microsoft.WindowsAzure.ConfigurationManager.3.2.1\lib\net40\Microsoft.WindowsAzure.Configuration.dll</HintPath>
125-
<Private>True</Private>
121+
<HintPath>..\packages\Microsoft.WindowsAzure.ConfigurationManager.3.2.3\lib\net40\Microsoft.WindowsAzure.Configuration.dll</HintPath>
126122
</Reference>
127-
<Reference Include="Microsoft.WindowsAzure.Storage, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
128-
<HintPath>..\packages\WindowsAzure.Storage.6.2.0\lib\net40\Microsoft.WindowsAzure.Storage.dll</HintPath>
129-
<Private>True</Private>
123+
<Reference Include="Microsoft.WindowsAzure.Storage, Version=8.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
124+
<HintPath>..\packages\WindowsAzure.Storage.8.2.1\lib\net45\Microsoft.WindowsAzure.Storage.dll</HintPath>
130125
</Reference>
131126
<Reference Include="MiniProfiler">
132127
<HintPath>..\packages\MiniProfiler.2.1.0\lib\net40\MiniProfiler.dll</HintPath>
@@ -164,9 +159,8 @@
164159
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.4.0.30506.0\lib\net40\System.Net.Http.Formatting.dll</HintPath>
165160
</Reference>
166161
<Reference Include="System.Net.Http.WebRequest" />
167-
<Reference Include="System.Spatial, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
168-
<HintPath>..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll</HintPath>
169-
<Private>True</Private>
162+
<Reference Include="System.Spatial, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
163+
<HintPath>..\packages\System.Spatial.5.8.2\lib\net40\System.Spatial.dll</HintPath>
170164
</Reference>
171165
<Reference Include="System.Web" />
172166
<Reference Include="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

src/UmbracoFileSystemProviders.Azure.Tests/packages.config

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
<package id="Microsoft.AspNet.WebApi.WebHost" version="4.0.30506.0" targetFramework="net45" />
1818
<package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net45" />
1919
<package id="Microsoft.Azure.KeyVault.Core" version="1.0.0" targetFramework="net45" />
20-
<package id="Microsoft.Data.Edm" version="5.6.4" targetFramework="net45" />
21-
<package id="Microsoft.Data.OData" version="5.6.4" targetFramework="net45" />
22-
<package id="Microsoft.Data.Services.Client" version="5.6.4" targetFramework="net45" />
20+
<package id="Microsoft.Data.Edm" version="5.8.2" targetFramework="net45" />
21+
<package id="Microsoft.Data.OData" version="5.8.2" targetFramework="net45" />
22+
<package id="Microsoft.Data.Services.Client" version="5.8.2" targetFramework="net45" />
2323
<package id="Microsoft.Net.Http" version="2.0.20710.0" targetFramework="net45" />
2424
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
25-
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="3.2.1" targetFramework="net45" />
25+
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="3.2.3" targetFramework="net45" />
2626
<package id="MiniProfiler" version="2.1.0" targetFramework="net45" />
2727
<package id="Moq" version="4.2.1502.0911" targetFramework="net45" />
2828
<package id="MySql.Data" version="6.6.5" targetFramework="net45" />
@@ -31,8 +31,12 @@
3131
<package id="NUnit3TestAdapter" version="3.7.0" targetFramework="net45" />
3232
<package id="SharpZipLib" version="0.86.0" targetFramework="net45" />
3333
<package id="StyleCop.Analyzers" version="1.0.0" targetFramework="net45" developmentDependency="true" />
34-
<package id="System.Spatial" version="5.6.4" targetFramework="net45" />
34+
<package id="System.ComponentModel.EventBasedAsync" version="4.0.11" targetFramework="net45" />
35+
<package id="System.Dynamic.Runtime" version="4.0.0" targetFramework="net45" />
36+
<package id="System.Linq.Queryable" version="4.0.0" targetFramework="net45" />
37+
<package id="System.Net.Requests" version="4.0.11" targetFramework="net45" />
38+
<package id="System.Spatial" version="5.8.2" targetFramework="net45" />
3539
<package id="UmbracoCms.Core" version="7.1.9" targetFramework="net45" />
36-
<package id="WindowsAzure.Storage" version="6.2.0" targetFramework="net45" />
40+
<package id="WindowsAzure.Storage" version="8.2.1" targetFramework="net45" />
3741
<package id="xmlrpcnet" version="2.5.0" targetFramework="net45" />
3842
</packages>

src/UmbracoFileSystemProviders.Azure/UmbracoFileSystemProviders.Azure.csproj

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,14 @@
102102
<HintPath>..\packages\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll</HintPath>
103103
<Private>True</Private>
104104
</Reference>
105-
<Reference Include="Microsoft.Data.Edm, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
106-
<HintPath>..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll</HintPath>
107-
<Private>True</Private>
105+
<Reference Include="Microsoft.Data.Edm, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
106+
<HintPath>..\packages\Microsoft.Data.Edm.5.8.2\lib\net40\Microsoft.Data.Edm.dll</HintPath>
108107
</Reference>
109-
<Reference Include="Microsoft.Data.OData, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
110-
<HintPath>..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll</HintPath>
111-
<Private>True</Private>
108+
<Reference Include="Microsoft.Data.OData, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
109+
<HintPath>..\packages\Microsoft.Data.OData.5.8.2\lib\net40\Microsoft.Data.OData.dll</HintPath>
112110
</Reference>
113-
<Reference Include="Microsoft.Data.Services.Client, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
114-
<HintPath>..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll</HintPath>
115-
<Private>True</Private>
111+
<Reference Include="Microsoft.Data.Services.Client, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
112+
<HintPath>..\packages\Microsoft.Data.Services.Client.5.8.2\lib\net40\Microsoft.Data.Services.Client.dll</HintPath>
116113
</Reference>
117114
<Reference Include="Microsoft.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
118115
<HintPath>..\packages\UmbracoCms.Core.7.1.9\lib\Microsoft.Web.Helpers.dll</HintPath>
@@ -126,12 +123,10 @@
126123
<HintPath>..\packages\Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.1\lib\net40\Microsoft.Web.Mvc.FixedDisplayModes.dll</HintPath>
127124
</Reference>
128125
<Reference Include="Microsoft.WindowsAzure.Configuration, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
129-
<HintPath>..\packages\Microsoft.WindowsAzure.ConfigurationManager.3.2.1\lib\net40\Microsoft.WindowsAzure.Configuration.dll</HintPath>
130-
<Private>True</Private>
126+
<HintPath>..\packages\Microsoft.WindowsAzure.ConfigurationManager.3.2.3\lib\net40\Microsoft.WindowsAzure.Configuration.dll</HintPath>
131127
</Reference>
132-
<Reference Include="Microsoft.WindowsAzure.Storage, Version=6.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
133-
<HintPath>..\packages\WindowsAzure.Storage.6.2.0\lib\net40\Microsoft.WindowsAzure.Storage.dll</HintPath>
134-
<Private>True</Private>
128+
<Reference Include="Microsoft.WindowsAzure.Storage, Version=8.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
129+
<HintPath>..\packages\WindowsAzure.Storage.8.2.1\lib\net45\Microsoft.WindowsAzure.Storage.dll</HintPath>
135130
</Reference>
136131
<Reference Include="MiniProfiler">
137132
<HintPath>..\packages\MiniProfiler.2.1.0\lib\net40\MiniProfiler.dll</HintPath>
@@ -165,9 +160,8 @@
165160
<HintPath>..\packages\Microsoft.AspNet.WebApi.Client.4.0.30506.0\lib\net40\System.Net.Http.Formatting.dll</HintPath>
166161
</Reference>
167162
<Reference Include="System.Net.Http.WebRequest" />
168-
<Reference Include="System.Spatial, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
169-
<HintPath>..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll</HintPath>
170-
<Private>True</Private>
163+
<Reference Include="System.Spatial, Version=5.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
164+
<HintPath>..\packages\System.Spatial.5.8.2\lib\net40\System.Spatial.dll</HintPath>
171165
</Reference>
172166
<Reference Include="System.Web" />
173167
<Reference Include="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">

0 commit comments

Comments
 (0)