PowerShell/tools/packaging/projects/nuget/powershell.nuspec

21 lines
927 B
XML

<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>$PackageName$-$runtime$</id>
<version>$version$</version>
<title>PowerShell for $runtime$</title>
<authors>PowerShell</authors>
<owners>PowerShell</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MIT</license>
<projectUrl>https://github.com/powershell/powershell</projectUrl>
<iconUrl>https://github.com/PowerShell/PowerShell/blob/master/assets/Powershell_64.png</iconUrl>
<description>This package contains PowerShell for $runtime$.</description>
<copyright>Copyright (c) Microsoft Corporation. All rights reserved.</copyright>
<tags>PowerShell</tags>
<contentFiles>
<files include="**" buildAction="None" copyToOutput="true" flatten="false"/>
</contentFiles>
</metadata>
</package>