Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Commit 6aea0ff

Browse files
fix up versions and psd1 info (#20)
1 parent 53c6a88 commit 6aea0ff

File tree

4 files changed

+71
-17
lines changed

4 files changed

+71
-17
lines changed

Examples/Microsoft.PowerShell.IoT.BME280/Microsoft.PowerShell.IoT.BME280.psd1

+15-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,23 @@
77
CompanyName="Microsoft Corporation"
88
Copyright="© Microsoft Corporation. All rights reserved."
99
Description='PowerShell module for working with Bosch Sensortec BME280 sensor.'
10-
ModuleVersion="1.0.0.0"
11-
PowerShellVersion="3.0"
10+
ModuleVersion="0.1.0"
1211
FunctionsToExport = @('Get-BME280ChipID','Get-BME280Data','Get-BME280Device')
13-
DotNetFrameworkVersion = 4.5
1412
CmdletsToExport = '*'
1513
AliasesToExport = @()
1614
NestedModules=@('Microsoft.PowerShell.IoT','Microsoft.PowerShell.IoT.BME280.psm1')
17-
HelpInfoURI = 'https://go.microsoft.com/fwlink/?LinkId=393254'
15+
HelpInfoURI = 'https://github.com/PowerShell/PowerShell-IoT'
16+
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
17+
PrivateData = @{
18+
PSData = @{
19+
# Tags applied to this module. These help with module discovery in online galleries.
20+
Tags = 'IoT','RaspberryPi','Raspbian','BME280'
21+
22+
# A URL to the license for this module.
23+
LicenseUri = 'https://github.com/PowerShell/PowerShell-IoT/blob/master/LICENSE.txt'
24+
25+
# A URL to the main website for this project.
26+
ProjectUri = 'https://github.com/PowerShell/PowerShell-IoT'
27+
}
28+
}
1829
}

Examples/Microsoft.PowerShell.IoT.Plant/Microsoft.PowerShell.IoT.Plant.psd1

+15-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,23 @@
77
CompanyName="Microsoft Corporation"
88
Copyright="© Microsoft Corporation. All rights reserved."
99
Description='PowerShell module for plant growth'
10-
ModuleVersion="1.0.0.0"
11-
PowerShellVersion="3.0"
10+
ModuleVersion="0.1.0"
1211
FunctionsToExport = '*'
13-
DotNetFrameworkVersion = 4.5
1412
CmdletsToExport = '*'
1513
AliasesToExport = @()
1614
NestedModules=@('Microsoft.PowerShell.IoT','Microsoft.PowerShell.IoT.Plant.psm1')
17-
HelpInfoURI = 'https://go.microsoft.com/fwlink/?LinkId=393254'
15+
HelpInfoURI = 'https://github.com/PowerShell/PowerShell-IoT'
16+
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
17+
PrivateData = @{
18+
PSData = @{
19+
# Tags applied to this module. These help with module discovery in online galleries.
20+
Tags = 'IoT','RaspberryPi','Raspbian','Plant'
21+
22+
# A URL to the license for this module.
23+
LicenseUri = 'https://github.com/PowerShell/PowerShell-IoT/blob/master/LICENSE.txt'
24+
25+
# A URL to the main website for this project.
26+
ProjectUri = 'https://github.com/PowerShell/PowerShell-IoT'
27+
}
28+
}
1829
}

Examples/Microsoft.PowerShell.IoT.SSD1306/Microsoft.PowerShell.IoT.SSD1306.psd1

+15-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,23 @@
77
CompanyName="Microsoft Corporation"
88
Copyright="© Microsoft Corporation. All rights reserved."
99
Description='PowerShell module for working with SSD1306 I2C OLED display.'
10-
ModuleVersion="1.0.0.0"
11-
PowerShellVersion="3.0"
10+
ModuleVersion="0.1.0"
1211
FunctionsToExport = @('New-OledDisplay','Set-OledText')
13-
DotNetFrameworkVersion = 4.5
1412
CmdletsToExport = '*'
1513
AliasesToExport = @()
1614
NestedModules=@('Microsoft.PowerShell.IoT','Microsoft.PowerShell.IoT.SSD1306.psm1')
17-
HelpInfoURI = 'https://go.microsoft.com/fwlink/?LinkId=393254'
15+
HelpInfoURI = 'https://github.com/PowerShell/PowerShell-IoT'
16+
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
17+
PrivateData = @{
18+
PSData = @{
19+
# Tags applied to this module. These help with module discovery in online galleries.
20+
Tags = 'IoT','RaspberryPi','Raspbian','SSD1306'
21+
22+
# A URL to the license for this module.
23+
LicenseUri = 'https://github.com/PowerShell/PowerShell-IoT/blob/master/LICENSE.txt'
24+
25+
# A URL to the main website for this project.
26+
ProjectUri = 'https://github.com/PowerShell/PowerShell-IoT'
27+
}
28+
}
1829
}

src/Microsoft.PowerShell.IoT/Microsoft.PowerShell.IoT.psd1

+26-5
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,34 @@
66
Author="Microsoft Corporation"
77
CompanyName="Microsoft Corporation"
88
Copyright="© Microsoft Corporation. All rights reserved."
9-
Description='PowerShell IoT'
10-
ModuleVersion="0.0.1"
11-
PowerShellVersion="3.0"
9+
Description='A PowerShell module for interacting with hardware sensors and devices using common protocols: GPIO, I2C & SPI.'
10+
ModuleVersion="0.1.0"
1211
FunctionsToExport = '*'
13-
DotNetFrameworkVersion = 4.5
1412
CmdletsToExport = '*'
1513
AliasesToExport = @()
1614
NestedModules=@('Microsoft.PowerShell.IoT.dll')
17-
HelpInfoURI = 'https://go.microsoft.com/fwlink/?LinkId=393254'
15+
HelpInfoURI = 'https://github.com/PowerShell/PowerShell-IoT'
16+
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
17+
PrivateData = @{
18+
PSData = @{
19+
# Tags applied to this module. These help with module discovery in online galleries.
20+
Tags = 'IoT','RaspberryPi','Raspbian','GPIO','I2C','SPI'
21+
22+
# A URL to the license for this module.
23+
LicenseUri = 'https://github.com/PowerShell/PowerShell-IoT/blob/master/LICENSE.txt'
24+
25+
# A URL to the main website for this project.
26+
ProjectUri = 'https://github.com/PowerShell/PowerShell-IoT'
27+
28+
# A URL to an icon representing this module.
29+
# IconUri = ''
30+
31+
# ReleaseNotes of this module
32+
ReleaseNotes = '## 0.1.0
33+
34+
Initial preview of PowerShell IoT
35+
'
36+
}
37+
38+
}
1839
}

0 commit comments

Comments
 (0)