Skip to content

Commit

Permalink
Merge pull request #3 from altCipher/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
acavella authored Feb 1, 2020
2 parents e3c22aa + aded029 commit f89bd08
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 14 deletions.
18 changes: 7 additions & 11 deletions PSOfflineFOD.psd1
Original file line number Diff line number Diff line change
@@ -1,34 +1,30 @@
@{
RootModule = 'PSOfflineFOD.psm1'
ModuleVersion = '0.0.2'
ModuleVersion = '0.0.3'
GUID = 'b5eea96b-8896-4872-abbd-19644f87b0ff'
Author = 'Tony Cavella'
Copyright = 'Copyright (c) 2020 Tony Cavella, licensed under MIT License.'
Description = 'Installs a Windows capability package on the specified operating system image.'
PowerShellVersion = '5.0'
FunctionsToExport = 'Add-WindowsCapabilityOffline'
CmdletsToExport = ''
VariablesToExport = '*'
AliasesToExport = @()
PrivateData = @{
PrivateData = @{
PSData = @{
# The primary categorization of this module (from the TechNet Gallery tech tree).
Category = "Desktop Management"
Category = 'Desktop Management'

# Keyword tags to help users find this module via navigations and search.
Tags = @('powershell', 'fod', 'features', 'capability', 'offline', '1809', 'features on demand', 'Windows')
Tags = @('powershell', 'fod', 'features', 'capability', 'offline', '1809', 'on-demand', 'Windows')

# The web address of an icon which can be used in galleries to represent this module
IconUri = 'https://raw.githubusercontent.com/altCipher/PSOfflineFOD/images/altcipher.png'

# The web address of this module's project or support homepage.
ProjectUri = "https://github.com/altCipher/PSOfflineFOD"
ProjectUri = 'https://github.com/altCipher/PSOfflineFOD'

# The web address of this module's license. Points to a page that's embeddable and linkable.
LicenseUri = "https://github.com/altCipher/PSOfflineFOD/blob/master/LICENSE"
LicenseUri = 'https://github.com/altCipher/PSOfflineFOD/blob/master/LICENSE'

# Release notes for this particular version of the module
ReleaseNotes = 'https://github.com/altCipher/PSOfflineFOD/releases/tag/v0.0.1'
ReleaseNotes = 'https://github.com/altCipher/PSOfflineFOD/releases/tag/v0.0.3'

# Prerelease string of this module
Prerelease = ''
Expand Down
6 changes: 3 additions & 3 deletions PSOfflineFOD.psm1
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<#
Function Add-WindowsCapabilityOffline
{
<#
.SYNOPSIS
Installs a Windows capability package on the specified operating system image.
.DESCRIPTION
Expand All @@ -12,8 +14,6 @@
Add-WindowsCapability
Remove-WindowsCapability
#>
Function Add-WindowsCapabilityOffline
{
[CmdletBinding()]
Param
(
Expand Down

0 comments on commit f89bd08

Please sign in to comment.