File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
src/ResourceManager/SignalR Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 17
17
* Overview of change #1
18
18
- Additional information about change #1
19
19
-->
20
+ ## Current
21
+
22
+ * ` New-AzureRmSignalR ` uses a new version of ` Strategy ` library (4.0).
23
+
20
24
## 0.1.1
21
25
22
26
* ` New-AzureRmSignalR ` null reference bug fix.
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.0.0'; }
55
55
56
56
# Assemblies that must be loaded prior to importing this module
57
57
RequiredAssemblies = @ (
58
- ' .\Microsoft.Azure.Commands.Common.Strategies.3 .dll' ,
58
+ ' .\Microsoft.Azure.Commands.Common.Strategies.4 .dll' ,
59
59
' .\Microsoft.Azure.Management.SignalR.dll' )
60
60
61
61
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
Original file line number Diff line number Diff line change @@ -84,6 +84,9 @@ public void WriteProgress(
84
84
CurrentOperation = currentOperation ,
85
85
PercentComplete = percentComplete ,
86
86
} ) ;
87
+
88
+ public void WriteWarning ( string message )
89
+ => _Cmdlet . WriteWarning ( message ) ;
87
90
}
88
91
}
89
92
}
You can’t perform that action at this time.
0 commit comments