Skip to content

Commit 04ff9bf

Browse files
so that the module manifest has the correct details
1 parent 3445327 commit 04ff9bf

File tree

1 file changed

+14
-18
lines changed

1 file changed

+14
-18
lines changed

source/FabricTools.psd1

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,23 @@ ModuleVersion = '0.0.1'
2121
GUID = '0ba3e49a-b47e-4beb-8434-5a34ad41ae72'
2222

2323
# Author of this module
24-
Author = 'mrrob'
24+
Author = 'The FabricTools Team'
2525

2626
# Company or vendor of this module
27-
CompanyName = 'mrrob'
27+
CompanyName = 'fabrictools.io'
2828

2929
# Copyright statement for this module
30-
Copyright = '(c) mrrob. All rights reserved.'
30+
Copyright = 'Copyright (c) 2025 by FabricTools, licensed under MIT'
3131

3232
# Description of the functionality provided by this module
33-
Description = 'A module to be able to do more with Microsoft Fabric.'
33+
Description = 'A module to be able to do more with Microsoft Fabric.
34+
It lets you pause and resume Fabric capacities.
35+
Adds functionallity previously only available with the REST API as PowerShell functions.
36+
There are also functions to make it easier to monitor usage metrics and refreshes.
37+
It also adds Fabric-friendly aliases for PowerBI functions to make it easier to use the module.'
3438

3539
# Minimum version of the PowerShell engine required by this module
36-
PowerShellVersion = '5.0'
40+
PowerShellVersion = '5.1'
3741

3842
# Name of the PowerShell host required by this module
3943
# PowerShellHostName = ''
@@ -51,7 +55,11 @@ PowerShellVersion = '5.0'
5155
# ProcessorArchitecture = ''
5256

5357
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @()
58+
RequiredModules = @(
59+
@{ ModuleName = 'Az.Accounts' ; ModuleVersion = '4.2.0' },
60+
@{ ModuleName = 'MicrosoftPowerBIMgmt.Profile' ; ModuleVersion = '1.2.1111' },
61+
@{ ModuleName = 'Az.Resources' ; ModuleVersion = '6.15.1' }
62+
)
5563

5664
# Assemblies that must be loaded prior to importing this module
5765
# RequiredAssemblies = @()
@@ -129,15 +137,3 @@ PrivateData = @{
129137
# DefaultCommandPrefix = ''
130138

131139
}
132-
133-
134-
135-
136-
137-
138-
139-
140-
141-
142-
143-

0 commit comments

Comments
 (0)