-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from muratiakos/psgallery
Release 1.5.2
- Loading branch information
Showing
26 changed files
with
122 additions
and
71 deletions.
There are no files selected for viewing
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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 |
---|---|---|
@@ -1,30 +1,31 @@ | ||
# | ||
# Module manifest for 'PSWebConfig' module | ||
# Created by: Akos Murati <[email protected]> | ||
# Generated on: 10/09/2015 | ||
# Generated on: 02/28/2016 | ||
# | ||
|
||
@{ | ||
|
||
# Script module or binary module file associated with this manifest. | ||
RootModule = 'PSWebConfig.psm1' | ||
|
||
# Version number of this module. | ||
ModuleVersion = '1.5.0.0' | ||
ModuleVersion = '1.5.2.0' | ||
|
||
# ID used to uniquely identify this module | ||
GUID = '37abef2c-d883-46be-ce1a-53d16477d01d' | ||
|
||
# Author of this module | ||
Author = '[email protected]' | ||
Author = 'Akos Murati ([email protected])' | ||
|
||
# Company or vendor of this module | ||
CompanyName = 'murati.hu' | ||
|
||
# Copyright statement for this module | ||
Copyright = '(c) 2016. All rights reserved.' | ||
Copyright = '(c) 2016 murati.hu . All rights reserved.' | ||
|
||
# Description of the functionality provided by this module | ||
Description = 'PowerShell module for decrypting, inspecting and testing web.config and application config files in remote and local scenarios.' | ||
Description = 'A PowerShell module for decrypting, inspecting and testing web.config and application config files in remote and local scenarios without the WebAdministration module.' | ||
|
||
# Minimum version of the Windows PowerShell engine required by this module | ||
# PowerShellVersion = '' | ||
|
@@ -45,7 +46,7 @@ Description = 'PowerShell module for decrypting, inspecting and testing web.conf | |
# ProcessorArchitecture = '' | ||
|
||
# Modules that must be imported into the global environment prior to importing this module | ||
# RequiredModules = @('') | ||
# RequiredModules = @() | ||
|
||
# Assemblies that must be loaded prior to importing this module | ||
# RequiredAssemblies = @() | ||
|
@@ -54,10 +55,10 @@ Description = 'PowerShell module for decrypting, inspecting and testing web.conf | |
# ScriptsToProcess = @() | ||
|
||
# Type files (.ps1xml) to be loaded when importing this module | ||
#TypesToProcess = @() | ||
# TypesToProcess = @() | ||
|
||
# Format files (.ps1xml) to be loaded when importing this module | ||
#FormatsToProcess = @('') | ||
# FormatsToProcess = @() | ||
|
||
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess | ||
# NestedModules = @() | ||
|
@@ -78,25 +79,66 @@ FunctionsToExport = @( | |
) | ||
|
||
# Cmdlets to export from this module | ||
#CmdletsToExport = '*' | ||
# CmdletsToExport = '*' | ||
|
||
# Variables to export from this module | ||
# VariablesToExport = '*' | ||
|
||
# Aliases to export from this module | ||
# AliasesToExport = '*' | ||
|
||
# DSC resources to export from this module | ||
# DscResourcesToExport = @() | ||
|
||
# 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 RootModule/ModuleToProcess | ||
# PrivateData = '' | ||
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. | ||
PrivateData = @{ | ||
|
||
PSData = @{ | ||
|
||
# Tags applied to this module. These help with module discovery in online galleries. | ||
Tags = @( | ||
'web.config', | ||
'app.config', | ||
|
||
'decrypt', | ||
'test', | ||
'inspect', | ||
'connectionString', | ||
'appSetting', | ||
'endpoint', | ||
|
||
'IIS', | ||
'aspnet_regiis', | ||
'config', | ||
'configuration', | ||
'section', | ||
'WebAdministration' | ||
) | ||
|
||
# A URL to the license for this module. | ||
LicenseUri = 'https://github.com/muratiakos/PSWebConfig/blob/master/LICENSE' | ||
|
||
# A URL to the main website for this project. | ||
ProjectUri = 'https://github.com/muratiakos/PSWebConfig' | ||
|
||
# A URL to an icon representing this module. | ||
# IconUri = '' | ||
|
||
# ReleaseNotes of this module | ||
# ReleaseNotes = '' | ||
|
||
} # End of PSData hashtable | ||
|
||
} # End of PrivateData hashtable | ||
|
||
# HelpInfo URI of this module | ||
# HelpInfoURI = '' | ||
HelpInfoURI = 'https://github.com/muratiakos/PSWebConfig' | ||
|
||
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. | ||
# DefaultCommandPrefix = '' | ||
|
File renamed without changes.
File renamed without changes.
This file contains 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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# Load module from the local filesystem, instead from the ModulePath | ||
Remove-Module PSWebConfig -Force -ErrorAction SilentlyContinue | ||
Import-Module (Split-Path $PSScriptRoot -Parent) | ||
|
||
$script:FunctionPath = Resolve-Path (Join-Path $PSScriptRoot '../Functions') | ||
$script:FixturePath = Resolve-Path (Join-Path $PSScriptRoot 'Fixtures') |
This file contains 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 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
11 changes: 5 additions & 6 deletions
11
Tests/Get-PSAppSetting.tests.ps1 → ...s/PSAppSetting/Get-PSAppSetting.tests.ps1
This file contains 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 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
6 changes: 4 additions & 2 deletions
6
Tests/Test_ConnectionString.tests.ps1 → ...ionString/Test_ConnectionString.tests.ps1
This file contains 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
11 changes: 5 additions & 6 deletions
11
Tests/Get-PSEndpoint.tests.ps1 → Tests/PSUri/Get-PSEndpoint.tests.ps1
This file contains 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
11 changes: 5 additions & 6 deletions
11
Tests/Get-PSUri.tests.ps1 → Tests/PSUri/Get-PSUri.tests.ps1
This file contains 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 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
Oops, something went wrong.