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

fix up versions and psd1 info #20

Merged
merged 1 commit into from
Apr 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,23 @@
CompanyName="Microsoft Corporation"
Copyright="© Microsoft Corporation. All rights reserved."
Description='PowerShell module for working with Bosch Sensortec BME280 sensor.'
ModuleVersion="1.0.0.0"
PowerShellVersion="3.0"
ModuleVersion="0.1.0"
FunctionsToExport = @('Get-BME280ChipID','Get-BME280Data','Get-BME280Device')
DotNetFrameworkVersion = 4.5
CmdletsToExport = '*'
AliasesToExport = @()
NestedModules=@('Microsoft.PowerShell.IoT','Microsoft.PowerShell.IoT.BME280.psm1')
HelpInfoURI = 'https://go.microsoft.com/fwlink/?LinkId=393254'
HelpInfoURI = 'https://github.com/PowerShell/PowerShell-IoT'
# 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.
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'IoT','RaspberryPi','Raspbian','BME280'

# A URL to the license for this module.
LicenseUri = 'https://github.com/PowerShell/PowerShell-IoT/blob/master/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/PowerShell/PowerShell-IoT'
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,23 @@
CompanyName="Microsoft Corporation"
Copyright="© Microsoft Corporation. All rights reserved."
Description='PowerShell module for plant growth'
ModuleVersion="1.0.0.0"
PowerShellVersion="3.0"
ModuleVersion="0.1.0"
FunctionsToExport = '*'
DotNetFrameworkVersion = 4.5
CmdletsToExport = '*'
AliasesToExport = @()
NestedModules=@('Microsoft.PowerShell.IoT','Microsoft.PowerShell.IoT.Plant.psm1')
HelpInfoURI = 'https://go.microsoft.com/fwlink/?LinkId=393254'
HelpInfoURI = 'https://github.com/PowerShell/PowerShell-IoT'
# 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.
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'IoT','RaspberryPi','Raspbian','Plant'

# A URL to the license for this module.
LicenseUri = 'https://github.com/PowerShell/PowerShell-IoT/blob/master/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/PowerShell/PowerShell-IoT'
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,23 @@
CompanyName="Microsoft Corporation"
Copyright="© Microsoft Corporation. All rights reserved."
Description='PowerShell module for working with SSD1306 I2C OLED display.'
ModuleVersion="1.0.0.0"
PowerShellVersion="3.0"
ModuleVersion="0.1.0"
FunctionsToExport = @('New-OledDisplay','Set-OledText')
DotNetFrameworkVersion = 4.5
CmdletsToExport = '*'
AliasesToExport = @()
NestedModules=@('Microsoft.PowerShell.IoT','Microsoft.PowerShell.IoT.SSD1306.psm1')
HelpInfoURI = 'https://go.microsoft.com/fwlink/?LinkId=393254'
HelpInfoURI = 'https://github.com/PowerShell/PowerShell-IoT'
# 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.
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'IoT','RaspberryPi','Raspbian','SSD1306'

# A URL to the license for this module.
LicenseUri = 'https://github.com/PowerShell/PowerShell-IoT/blob/master/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/PowerShell/PowerShell-IoT'
}
}
}
31 changes: 26 additions & 5 deletions src/Microsoft.PowerShell.IoT/Microsoft.PowerShell.IoT.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,34 @@
Author="Microsoft Corporation"
CompanyName="Microsoft Corporation"
Copyright="© Microsoft Corporation. All rights reserved."
Description='PowerShell IoT'
ModuleVersion="0.0.1"
PowerShellVersion="3.0"
Description='A PowerShell module for interacting with hardware sensors and devices using common protocols: GPIO, I2C & SPI.'
ModuleVersion="0.1.0"
FunctionsToExport = '*'
DotNetFrameworkVersion = 4.5
CmdletsToExport = '*'
AliasesToExport = @()
NestedModules=@('Microsoft.PowerShell.IoT.dll')
HelpInfoURI = 'https://go.microsoft.com/fwlink/?LinkId=393254'
HelpInfoURI = 'https://github.com/PowerShell/PowerShell-IoT'
# 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.
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'IoT','RaspberryPi','Raspbian','GPIO','I2C','SPI'

# A URL to the license for this module.
LicenseUri = 'https://github.com/PowerShell/PowerShell-IoT/blob/master/LICENSE.txt'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/PowerShell/PowerShell-IoT'

# A URL to an icon representing this module.
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '## 0.1.0

Initial preview of PowerShell IoT
'
}

}
}