Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
on:
push:
branches:
- master
- main

jobs:
build:

runs-on: windows-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v1
- name: Install Prerequisites
run: .\build\psf-prerequisites.ps1
shell: powershell
- name: Install Prerequisites
run: .\build\vsts-help.ps1
shell: powershell
- name: Validate
run: .\build\vsts-validate.ps1
shell: powershell
- name: Build
run: .\build\vsts-build.ps1 -ApiKey $env:APIKEY
shell: powershell
env:
APIKEY: ${{ secrets.ApiKey }}
- name: Release
run: .\build\vsts-release.ps1
shell: powershell
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18 changes: 18 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on: [pull_request]

jobs:
validate:

runs-on: windows-latest

steps:
- uses: actions/checkout@v1
- name: Install Prerequisites
run: .\build\psf-prerequisites.ps1
shell: powershell
- name: Install Prerequisites
run: .\build\vsts-help.ps1
shell: powershell
- name: Validate
run: .\build\vsts-validate.ps1
shell: powershell
14 changes: 13 additions & 1 deletion PSFramework/PSFramework.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
RootModule = 'PSFramework.psm1'

# Version number of this module.
ModuleVersion = '1.12.346'
ModuleVersion = '1.13.406'

# ID used to uniquely identify this module
GUID = '8028b914-132b-431f-baa9-94a6952f21ff'
Expand Down Expand Up @@ -38,25 +38,30 @@
'Add-PSFFilterCondition'
'Add-PSFLoggingProviderRunspace'
'Add-PSFRunspaceWorker'
'Add-PSFTeppCompletion'
'Clear-PSFMessage'
'Clear-PSFresultCache'
'Compare-PSFArray'
'ConvertFrom-PSFArray'
'ConvertFrom-PSFClixml'
'ConvertTo-PSFClixml'
'ConvertTo-PSFPsd1'
'Disable-PSFConsoleInterrupt'
'Disable-PSFLoggingProvider'
'Disable-PSFTaskEngineTask'
'Enable-PSFConsoleInterrupt'
'Enable-PSFTaskEngineTask'
'Export-PSFClixml'
'Export-PSFConfig'
'Export-PSFJson'
'Export-PSFModuleClass'
'Export-PSFPowerShellDataFile'
'Get-PSFCallback'
'Get-PSFConfig'
'Get-PSFConfigValue'
'Get-PSFDynamicContentObject'
'Get-PSFFeature'
'Get-PSFFileContent'
'Get-PSFFilterCondition'
'Get-PSFFilterConditionSet'
'Get-PSFLicense'
Expand All @@ -77,11 +82,13 @@
'Get-PSFTaskEngineCache'
'Get-PSFTaskEngineTask'
'Get-PSFTempItem'
'Get-PSFTeppCompletion'
'Get-PSFTypeSerializationData'
'Get-PSFUserChoice'
'Import-PSFClixml'
'Import-PSFCmdlet'
'Import-PSFConfig'
'Import-PSFJson'
'Import-PSFLocalizedString'
'Import-PSFLoggingProvider'
'Import-PSFPowerShellDataFile'
Expand Down Expand Up @@ -115,6 +122,7 @@
'Register-PSFMessageEvent'
'Register-PSFMessageTransform'
'Register-PSFParameterClassMapping'
'Register-PSFPsd1Converter'
'Register-PSFRunspace'
'Register-PSFSessionObjectType'
'Register-PSFSupportDataProvider'
Expand All @@ -131,6 +139,7 @@
'Remove-PSFMessageLevelModifier'
'Remove-PSFRunspaceWorkflow'
'Remove-PSFTempItem'
'Remove-PSFTeppCompletion'
'Reset-PSFConfig'
'Resolve-PSFDefaultParameterValue'
'Resolve-PSFItem'
Expand All @@ -139,6 +148,7 @@
'Select-PSFPropertyValue'
'Set-PSFDynamicContentObject'
'Set-PSFFeature'
'Set-PSFFileContent'
'Set-PSFLoggingProvider'
'Set-PSFPath'
'Set-PSFResultCache'
Expand Down Expand Up @@ -173,6 +183,7 @@

# Cmdlets to export from this module
CmdletsToExport = @(
'Assert-PSFInternalCommand'
'ConvertTo-PSFHashtable'
'Invoke-PSFCallback'
'Invoke-PSFProtectedCommand'
Expand All @@ -181,6 +192,7 @@
'Set-PSFConfig'
'Set-PSFObjectOrder'
'Test-PSFShouldProcess'
'Update-PSFTeppCompletion'
'Write-PSFMessage'
)

Expand Down
Binary file modified PSFramework/bin/PSFramework.dll
Binary file not shown.
Binary file modified PSFramework/bin/PSFramework.pdb
Binary file not shown.
Loading
Loading