Skip to content

Commit 267331d

Browse files
author
Siddharth Chatrola
committed
Update NuGet dependency on management API
1 parent 85ec2b7 commit 267331d

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

src/ResourceManager/RedisCache/Commands.RedisCache.Test/Commands.RedisCache.Test.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,9 @@
5656
<Reference Include="Microsoft.Azure.Common.NetFramework">
5757
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
5858
</Reference>
59-
<Reference Include="Microsoft.Azure.Management.Redis, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
60-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll</HintPath>
59+
<Reference Include="Microsoft.Azure.Management.Redis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
60+
<SpecificVersion>False</SpecificVersion>
61+
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll</HintPath>
6162
</Reference>
6263
<Reference Include="Microsoft.Azure.ResourceManager">
6364
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.1-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>

src/ResourceManager/RedisCache/Commands.RedisCache.Test/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" />
55
<package id="Microsoft.Azure.Common.Authentication" version="1.0.26-preview" targetFramework="net45" />
66
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
7+
<package id="Microsoft.Azure.Management.Redis" version="1.0.1-preview" targetFramework="net45" />
78
<package id="Microsoft.Azure.Management.Resources" version="2.18.1-preview" targetFramework="net45" />
89
<package id="Microsoft.Azure.Test.Framework" version="1.0.5571.32271-prerelease" targetFramework="net45" />
910
<package id="Microsoft.Azure.Test.HttpRecorder" version="1.0.5571.32271-prerelease" targetFramework="net45" />
10-
<package id="Microsoft.Azure.Management.Redis" version="1.0.0-preview" targetFramework="net45" />
1111
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1212
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />
1313
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />

src/ResourceManager/RedisCache/Commands.RedisCache/Commands.RedisCache.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
<Reference Include="Microsoft.Azure.Common.NetFramework">
6060
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.1.0\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
6161
</Reference>
62-
<Reference Include="Microsoft.Azure.Management.Redis, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
62+
<Reference Include="Microsoft.Azure.Management.Redis, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6363
<SpecificVersion>False</SpecificVersion>
64-
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.0-preview\lib\net40\Microsoft.Azure.Management.Redis.dll</HintPath>
64+
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Redis.1.0.1-preview\lib\net40\Microsoft.Azure.Management.Redis.dll</HintPath>
6565
</Reference>
6666
<Reference Include="Microsoft.Azure.ResourceManager, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
6767
<SpecificVersion>False</SpecificVersion>

src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributes.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public RedisCacheAttributes(RedisResource cache, string resourceGroupName)
3131
ProvisioningState = cache.Properties.ProvisioningState;
3232
SslPort = cache.Properties.SslPort;
3333
RedisConfiguration = cache.Properties.RedisConfiguration;
34-
EnableNonSslPort = cache.Properties.EnableNonSslPort;
34+
EnableNonSslPort = cache.Properties.EnableNonSslPort.Value;
3535
RedisVersion = cache.Properties.RedisVersion;
3636
Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Properties.Sku.Family, cache.Properties.Sku.Capacity);
3737
Sku = cache.Properties.Sku.Name;
@@ -49,7 +49,7 @@ public RedisCacheAttributes(RedisGetResponse cache, string resourceGroupName)
4949
ProvisioningState = cache.Resource.Properties.ProvisioningState;
5050
SslPort = cache.Resource.Properties.SslPort;
5151
RedisConfiguration = cache.Resource.Properties.RedisConfiguration;
52-
EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort;
52+
EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort.Value;
5353
RedisVersion = cache.Resource.Properties.RedisVersion;
5454
Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Resource.Properties.Sku.Family, cache.Resource.Properties.Sku.Capacity);
5555
Sku = cache.Resource.Properties.Sku.Name;

src/ResourceManager/RedisCache/Commands.RedisCache/Models/RedisCacheAttributesWithAccessKeys.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public RedisCacheAttributesWithAccessKeys(RedisCreateOrUpdateResponse cache, str
2929
ProvisioningState = cache.Resource.Properties.ProvisioningState;
3030
SslPort = cache.Resource.Properties.SslPort;
3131
RedisConfiguration = cache.Resource.Properties.RedisConfiguration;
32-
EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort;
32+
EnableNonSslPort = cache.Resource.Properties.EnableNonSslPort.Value;
3333
RedisVersion = cache.Resource.Properties.RedisVersion;
3434
Size = SizeConverter.GetSizeInUserSpecificFormat(cache.Resource.Properties.Sku.Family, cache.Resource.Properties.Sku.Capacity);
3535
Sku = cache.Resource.Properties.Sku.Name;

src/ResourceManager/RedisCache/Commands.RedisCache/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<package id="Microsoft.Azure.Common" version="2.1.0" targetFramework="net45" />
55
<package id="Microsoft.Azure.Common.Authentication" version="1.0.26-preview" targetFramework="net45" />
66
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
7+
<package id="Microsoft.Azure.Management.Redis" version="1.0.1-preview" targetFramework="net45" />
78
<package id="Microsoft.Azure.Management.Resources" version="2.18.1-preview" targetFramework="net45" />
8-
<package id="Microsoft.Azure.Management.Redis" version="1.0.0-preview" targetFramework="net45" />
99
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="net45" />
1010
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />
1111
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="net45" />

0 commit comments

Comments
 (0)