Skip to content

Commit 1a3afd1

Browse files
committed
FW: Change Insights reference from 0.6.0 to 0.7.0 and Storage from 4.0.0 to 4.0.0
1 parent 73d231c commit 1a3afd1

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/ResourceManager/Insights/Commands.Insights/Commands.Insights.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<HintPath>..\..\..\packages\Microsoft.Azure.Common.2.0.1\lib\net45\Microsoft.Azure.Common.NetFramework.dll</HintPath>
6060
</Reference>
6161
<Reference Include="Microsoft.Azure.Insights">
62-
<HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.6.0-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath>
62+
<HintPath>..\..\..\packages\Microsoft.Azure.Insights.0.7.0-preview\lib\net45\Microsoft.Azure.Insights.dll</HintPath>
6363
</Reference>
6464
<Reference Include="Microsoft.Azure.ResourceManager">
6565
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.12.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath>
@@ -74,7 +74,7 @@
7474
<HintPath>..\..\..\packages\Microsoft.WindowsAzure.Management.4.0.1\lib\net40\Microsoft.WindowsAzure.Management.dll</HintPath>
7575
</Reference>
7676
<Reference Include="Microsoft.WindowsAzure.Storage">
77-
<HintPath>..\..\..\packages\WindowsAzure.Storage.4.0.1\lib\net40\Microsoft.WindowsAzure.Storage.dll</HintPath>
77+
<HintPath>..\..\..\packages\WindowsAzure.Storage.4.0.0\lib\net40\Microsoft.WindowsAzure.Storage.dll</HintPath>
7878
</Reference>
7979
<Reference Include="System" />
8080
<Reference Include="System.Core" />

src/ResourceManager/Insights/Commands.Insights/InsightsCmdletBase.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ abstract public class InsightsCmdletBase : AzurePSCmdlet, IDisposable
3232
/// <summary>
3333
/// Gets the InsightsClient to use in the Cmdlet
3434
/// </summary>
35-
protected IInsightsClient InsightsClient
35+
public IInsightsClient InsightsClient
3636
{
3737
get
3838
{
@@ -44,6 +44,7 @@ protected IInsightsClient InsightsClient
4444

4545
return this.insightsClient;
4646
}
47+
set { this.insightsClient = value; }
4748
}
4849

4950
/// <summary>

src/ResourceManager/Insights/Commands.Insights/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<package id="Microsoft.Azure.Common" version="2.0.1" targetFramework="net45" />
55
<package id="Microsoft.Azure.Common.Dependencies" version="1.0.0" targetFramework="net45" />
66
<package id="Microsoft.Azure.Common.Extensions" version="0.14.0-preview" targetFramework="net45" />
7-
<package id="Microsoft.Azure.Insights" version="0.6.0-preview" targetFramework="net45" />
7+
<package id="Microsoft.Azure.Insights" version="0.7.0-preview" targetFramework="net45" />
88
<package id="Microsoft.Azure.Management.Resources" version="2.12.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" />
@@ -17,5 +17,5 @@
1717
<package id="Microsoft.WindowsAzure.Management" version="4.0.1" targetFramework="net45" />
1818
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
1919
<package id="System.Spatial" version="5.6.0" targetFramework="net40" />
20-
<package id="WindowsAzure.Storage" version="4.0.1" targetFramework="net40" />
20+
<package id="WindowsAzure.Storage" version="4.0.0" targetFramework="net40" />
2121
</packages>

0 commit comments

Comments
 (0)