可移植的模块Portable Modules
移植 PSSnapInPorting a PSSnapIn
在 PowerShell Core 中不支持 PowerShell 管理单元 (PSSnapIn)。但是,很容易将 PSSnapIn 转换为 PowerShell 模块。通常情况下,PSSnapIn 注册代码处于单个源文件的类派生自PSSnapIn。从生成; 中删除此源文件不再需要它。
使用若要创建新的模块清单,即无需 PSSnapIn 注册代码。一些 PSSnapIn (如说明) 中的值可以在模块清单中重复使用。
模块清单中的属性应设置为实现 cmdlet 的程序集 (dll) 的名称。
.NET 可移植性分析器 (又称 APIPort)The .NET Portability Analyzer (aka APIPort)
为端口模块为 Windows PowerShell,若要使用 PowerShell Core,开始编写。对已编译程序集以确定是否与.NET Framework、.NET Core 和其他.NET 运行时兼容的模块中使用的.NET Api 运行此工具。如果它们存在,则该工具建议备用 Api。否则,可能需要添加运行时检查并限制在特定的运行时中不可用的功能。
如果创建一个新的模块,建议是使用。
一旦安装了.NET CLI,安装的模板库生成一个简单的 PowerShell 模块。该模块将与 Windows PowerShell、 PowerShell Core、 Windows、 Linux 和 macOS 兼容。
下面的示例演示如何安装模板:
Restoring packages for C:\Users\Steve\.templateengine\dotnetcli\v2.1.302\scratch\restore.csproj...
Installing Microsoft.PowerShell.Standard.Module.Template 0.1.3.
Generating MSBuild file C:\Users\Steve\.templateengine\dotnetcli\v2.1.302\scratch\obj\restore.csproj.nuget.g.props.
Generating MSBuild file C:\Users\Steve\.templateengine\dotnetcli\v2.1.302\scratch\obj\restore.csproj.nuget.g.targets.
Restore completed in 1.66 sec for C:\Users\Steve\.templateengine\dotnetcli\v2.1.302\scratch\restore.csproj.
Usage: new [options]
Options:
-h, --help Displays help for this command.
-l, --list Lists templates containing the specified name. If no name is specified, lists all templates.
-n, --name The name for the output being created. If no name is specified, the name of the current directory is used.
-o, --output Location to place the generated output.
-i, --install Installs a source or a template pack.
--nuget-source Specifies a NuGet source to use during install.
--type Filters templates based on available types. Predefined values are "project", "item" or "other".
--force Forces content to be generated even if it would change existing files.
-lang, --language Filters templates based on language and specifies the language of the template to create.
Templates Short Name Language Tags
----------------------------------------------------------------------------------------------------------------------------
Console Application console [C#], F#, VB Common/Console
Class library classlib [C#], F#, VB Common/Library
PowerShell Standard Module psmodule [C#] Library/PowerShell/Module
创建新的模块项目Creating a New Module Project
生成模块Building the Module
使用标准.NET CLI 命令来生成项目。
dotnet build
在生成该模块之后, 可以将其导入并执行示例 cmdlet。
ipmo .\bin\Debug\netstandard2.0\myModule.dll
Test-SampleCmdlet -?
Test-SampleCmdlet -FavoriteNumber 7 -FavoritePet Cat
以下各节详细说明某些使用此模板的技术。
.NET standard是所有.NET 实现中可用的.NET Api 的正式规范。管理面向.NET Standard 适用于与该版本的.NET Standard 兼容的.NET Framework 和.NET Core 版本的代码。
备注
虽然 API 可能存在于.NET Standard,.NET Core 中的 API 实现可能会引发PlatformNotSupportedException
在运行时,因此若要验证与 Windows PowerShell 和 PowerShell Core,兼容性的最佳做法是为你的模块在这两个环境中运行测试。如果你的模块是要将跨平台还在 Linux 和 macOS 上运行测试。
面向.NET Standard 可帮助确保,随着该模块后,不兼容的 Api 不会意外地获取引入到模块。在编译时,而不是运行时发现不兼容问题。
库是所有的 PowerShell 版本大于或等于该标准的版本中提供的 PowerShell Api 的正式规范。
例如, PowerShell Standard 5.1兼容 Windows PowerShell 5.1 和 PowerShell Core 6.0 或更高版本。
我们建议你使用 PowerShell 标准库模块编译。该库可确保 Api 的可用性和在 Windows PowerShell 和 PowerShell Core 6 中实现。PowerShell 标准旨在始终是向前兼容。使用 PowerShell 标准库 5.1 构建的模块将始终与将来版本的 PowerShell 兼容。
指示使用 Windows PowerShell 和 PowerShell Core 的兼容性Indicating Compatibility With Windows PowerShell and PowerShell Core
在验证之后,您的模块中适用于 Windows PowerShell 和 PowerShell Core,模块清单应显式指示兼容性通过使用CompatiblePSEditions属性。值为Desktop
意味着该模块是使用 Windows PowerShell,而值兼容Core
意味着该模块与 PowerShell Core 兼容。包括Desktop
和Core
意味着该模块是使用 Windows PowerShell 和 PowerShell Core 兼容。
备注
Core
并不意味着该模块适用于 Windows、 Linux 和 macOS。CompatiblePSEditions PowerShell v5 中引入了属性。模块清单,使用CompatiblePSEditions属性无法加载 PowerShell v5 之前的版本中。
指示操作系统兼容性Indicating OS Compatibility
首先,请验证您的模块中适用于 Linux 和 macOS。接下来,指示与在模块清单中的这些操作系统的兼容性。这使用户更轻松地找到你的模块时发布到其操作系统PowerShell 库。
例如:
@{
GUID = "4ae9fd46-338a-459c-8186-07f910774cb8"
Author = "Microsoft Corporation"
CompanyName = "Microsoft Corporation"
Copyright = "(C) Microsoft Corporation. All rights reserved."
HelpInfoUri = "https://go.microsoft.com/fwlink/?linkid=855962"
ModuleVersion = "1.2.4"
PowerShellVersion = "3.0"
ClrVersion = "4.0"
RootModule = "PackageManagement.psm1"
Description = 'PackageManagement (a.k.a. OneGet) is a new way to discover and install software packages from around the web.
It is a manager or multiplexer of existing package managers (also called package providers) that unifies Windows package management with a single Windows PowerShell interface. With PackageManagement, you can do the following.
- Discover software packages
- Seamlessly install, uninstall, and inventory packages from one or more software repositories'
CmdletsToExport = @(
'Find-Package',
'Get-Package',
'Get-PackageProvider',
'Get-PackageSource',
'Install-Package',
'Import-PackageProvider'
'Find-PackageProvider'
'Install-PackageProvider'
'Register-PackageSource',
'Set-PackageSource',
'Unregister-PackageSource',
'Uninstall-Package'
'Save-Package'
)
FormatsToProcess = @('PackageManagement.format.ps1xml')
PrivateData = @{
PSData = @{
Tags = @('PackageManagement', 'PSEdition_Core', 'PSEdition_Desktop', 'Windows', 'Linux', 'macOS')
ProjectUri = 'https://oneget.org'
}
}