Skip to content

Commit 44aeaee

Browse files
committed
Fix for exported elements
1 parent 9abb8ba commit 44aeaee

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

UnitySetup/UnitySetup.psd1

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,19 @@ ScriptsToProcess = @("UnitySetupInit.ps1")
7373
# NestedModules = @()
7474

7575
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
76-
FunctionsToExport = '*'
77-
76+
FunctionsToExport = @(
77+
'Find-UnitySetupInstaller',
78+
'Get-UnityProjectInstance',
79+
'Get-UnitySetupInstance',
80+
'Install-UnitySetupInstance',
81+
'Select-UnitySetupInstance',
82+
'Start-UnityEditor'
83+
)
7884
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
79-
CmdletsToExport = '*'
85+
CmdletsToExport = @()
8086

8187
# Variables to export from this module
82-
# VariablesToExport = @()
88+
VariablesToExport = @()
8389

8490
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
8591
AliasesToExport = @()

0 commit comments

Comments
 (0)