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

Commit

Permalink
fix up versions and psd1 info (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt authored Apr 12, 2018
1 parent 53c6a88 commit 6aea0ff
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 17 deletions.
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
'
}

}
}

0 comments on commit 6aea0ff

Please sign in to comment.