Declare InstallerAction in a separate file

This commit is contained in:
Manuel Thalmann 2024-08-01 22:52:51 +02:00
parent 9c84539b2f
commit 94c7df6913
2 changed files with 7 additions and 6 deletions

View file

@ -1,12 +1,8 @@
. "$PSScriptRoot/Config.ps1";
enum InstallerAction {
Install
Configure
ConfigureUser
}
. "$PSScriptRoot/../Types/InstallerAction.ps1";
$null = New-Module {
. "$PSScriptRoot/../Types/InstallerAction.ps1";
$userArgument = "name";
<#

View file

@ -0,0 +1,5 @@
enum InstallerAction {
Install
Configure
ConfigureUser
}