-
Notifications
You must be signed in to change notification settings - Fork 4k
Azure Logic App PowerShell Cmdlets #1753
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
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
ba36f84
New-AzureLogicApp PowerShell command with unittest and scenario test …
pankajsn ca4be2f
Set, Get, Remove PowerShell commands added.
pankajsn 4d88a9c
Azure Logic App PS cmdlets
pankajsn 1dbf111
Merge remote-tracking branch 'refs/remotes/origin/dev' into Azure/dev
pankajsn 98080ab
Merged with the latest code from GIT Repo
pankajsn 7bd0b59
Merge remote-tracking branch 'refs/remotes/origin/dev' into Azure/dev
pankajsn 9fbe613
Regenerated Session records with latest Test run.
pankajsn 02e6cab
App.config removed
pankajsn 90ced65
Session records updated with latest test run.
pankajsn 8487c01
Wxi file fixed.
pankajsn 3856b5c
Merge remote-tracking branch 'origin/dev' into dev
pankajsn 1f6c3fb
AzurePowerShell.Test.targets updated for test integration.
pankajsn c4da092
Merge remote-tracking branch 'refs/remotes/origin/dev' into Azure/dev
pankajsn fbeaf6f
Code review comments fixed.
pankajsn e96d655
Code review comments fixed [Hovsep]
pankajsn 73692cd
Merge remote-tracking branch 'upstream/dev' into dev
pankajsn 85f4830
Merge remote-tracking branch 'upstream/dev' into dev
pankajsn 6195ff4
AssemblyInfo fixed
pankajsn 286947b
Resolved merge conflicts
pankajsn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="xunit.runner.console" version="2.0.0" /> | ||
</packages> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# | ||
# Module manifest for module 'Microsoft.Azure.Commands.LogicApp' | ||
# | ||
# Generated by: Microsoft Corporation | ||
# | ||
# Generated on: 10/22/2015 | ||
# | ||
|
||
@{ | ||
|
||
# Version number of this module. | ||
ModuleVersion = '1.0.0' | ||
|
||
# ID used to uniquely identify this module | ||
GUID = '8A7D44BB-E747-4265-8F22-B3937961D709' | ||
|
||
# Author of this module | ||
Author = 'Microsoft Corporation' | ||
|
||
# Company or vendor of this module | ||
CompanyName = 'Microsoft Corporation' | ||
|
||
# Copyright statement for this module | ||
Copyright = 'Microsoft Corporation. All rights reserved.' | ||
|
||
# Description of the functionality provided by this module | ||
Description = 'Microsoft Azure PowerShell - LogicApp cmdlets for Azure Resource Manager' | ||
|
||
# Minimum version of the Windows PowerShell engine required by this module | ||
PowerShellVersion = '3.0' | ||
|
||
# Name of the Windows PowerShell host required by this module | ||
PowerShellHostName = '' | ||
|
||
# Minimum version of the Windows PowerShell host required by this module | ||
PowerShellHostVersion = '' | ||
|
||
# Minimum version of the .NET Framework required by this module | ||
DotNetFrameworkVersion = '4.0' | ||
|
||
# Minimum version of the common language runtime (CLR) required by this module | ||
CLRVersion='4.0' | ||
|
||
# Processor architecture (None, X86, Amd64, IA64) required by this module | ||
ProcessorArchitecture = 'None' | ||
|
||
# Modules that must be imported into the global environment prior to importing this module | ||
RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.4'} ) | ||
|
||
# Assemblies that must be loaded prior to importing this module | ||
RequiredAssemblies = @() | ||
|
||
# Script files (.ps1) that are run in the caller's environment prior to importing this module | ||
ScriptsToProcess = @() | ||
|
||
# Type files (.ps1xml) to be loaded when importing this module | ||
TypesToProcess = @() | ||
|
||
# Format files (.ps1xml) to be loaded when importing this module | ||
FormatsToProcess = @( | ||
'.\Microsoft.Azure.Commands.LogicApp.format.ps1xml' | ||
) | ||
|
||
# Modules to import as nested modules of the module specified in ModuleToProcess | ||
NestedModules = @( | ||
'.\Microsoft.Azure.Commands.LogicApp.dll' | ||
) | ||
|
||
# Functions to export from this module | ||
FunctionsToExport = '*' | ||
|
||
# Cmdlets to export from this module | ||
CmdletsToExport = '*' | ||
|
||
# Variables to export from this module | ||
VariablesToExport = '*' | ||
|
||
# Aliases to export from this module | ||
AliasesToExport = @() | ||
|
||
# List of all modules packaged with this module | ||
ModuleList = @() | ||
|
||
# List of all files packaged with this module | ||
FileList = @() | ||
|
||
# Private data to pass to the module specified in ModuleToProcess | ||
PrivateData = '' | ||
|
||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Your changes will not go out as part of February release. Please add a new tag
2016.03.08 version 1.3.0
and then add your change log text.
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.
[Fixed]: Moved to new section as suggested. Below tag indicates next release in March. I just want to know, What is the process if we want to release these changes early?
From: Hovsep [mailto:notifications@github.com]
Sent: Monday, February 1, 2016 3:22 PM
To: Azure/azure-powershell azure-powershell@noreply.github.com
Cc: Pankaj Singh Negi Pankaj.Negi@microsoft.com
Subject: Re: [azure-powershell] Azure Logic App PowerShell Cmdlets (#1753)
In ChangeLog.mdhttps://github.com//pull/1753#discussion_r51498279:
Your changes will not go out as part of February release. Please add a new tag
2016.03.08 version 1.3.0
and then add your change log text.
—
Reply to this email directly or view it on GitHubhttps://github.com//pull/1753/files#r51498279.