-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update ps with network SDK with Network 11.1.0 #4265
update ps with network SDK with Network 11.1.0 #4265
Conversation
@markcowl @shahabhijeet @cormacpayne this is the PR to increase the network sdk |
On-demand build succeeded: http://azuresdkci.cloudapp.net/view/1-AzurePowerShell/job/powershell-demand/1739/console |
@@ -600,10 +600,18 @@ | |||
<Project>{70527617-7598-4aef-b5bd-db9186b8184b}</Project> | |||
<Name>Commands.Common.Authentication.Abstractions</Name> | |||
</ProjectReference> | |||
<ProjectReference Include="..\..\..\Common\Commands.Common.Authentication\Commands.Common.Authentication.csproj"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not add this reference. You should only have a reference to the abstractions class.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
<ProjectReference Include="..\..\..\Common\Commands.Common\Commands.Common.csproj"> | ||
<Project>{5ee72c53-1720-4309-b54b-5fb79703195f}</Project> | ||
<Name>Commands.Common</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\Common\Commands.Common.Authentication.ResourceManager\Commands.Common.Authentication.ResourceManager.csproj"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not add this reference. You may need to build this as part of your solution, but it cannot be a dependency of your management cmdlets
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
"D:\workspace\powershell-demand\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Compute\Microsoft.Azure.Commands.Compute.dll","Microsoft.Azure.Commands.Compute.Automation.ConvertToAzureRmVMManagedDisk","ConvertTo-AzureRmVMManagedDisk","0","1050","The parameter set 'InvokeByDynamicParameters' for cmdlet 'ConvertTo-AzureRmVMManagedDisk' has been removed.","Add parameter set 'InvokeByDynamicParameters' back to cmdlet 'ConvertTo-AzureRmVMManagedDisk'." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like none of these changes should be necessary
public uint Protocol { get; set; } | ||
public uint RemoteIPAddress { get; set; } | ||
public uint RemotePort { get; set; } | ||
public int Protocol { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file is not even being used... should be removed. will check with Irina and follow up
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the file can be removed
on demand run here: http://azuresdkci.cloudapp.net/job/powershell-demand/1742/ |
LGTM |
Description
This checklist is used to make sure that common guidelines for a pull request are followed. You can find a more complete discussion of PowerShell cmdlet best practices here.
General Guidelines
Testing Guidelines
Cmdlet Signature Guidelines
ShouldProcess
and haveSupportShouldProcess=true
specified in the cmdlet attribute. You can find more information onShouldProcess
here.OutputType
attribute if any output is produced - if the cmdlet produces no output, it should implement aPassThru
parameter.Cmdlet Parameter Guidelines