-
Notifications
You must be signed in to change notification settings - Fork 5
/
nuget-powershell.nuspec
29 lines (29 loc) · 1.2 KB
/
nuget-powershell.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<!--
For more info on this file format visit http://docs.nuget.org/docs/reference/nuspec-reference.
-->
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>nuget-powershell</id>
<version>0.2.6-beta</version>
<authors>Sayed Ibrahim Hashimi</authors>
<description>
This is a NuGet package which contains a module that simplifies downloading NuGet packages.
</description>
<language>en-US</language>
<projectUrl>https://github.com/ligershark/nuget-powershell/</projectUrl>
<licenseUrl>https://github.com/ligershark/nuget-powershell/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright 2013-2014 Sayed Ibrahim Hashimi</copyright>
<tags>nuget powershell</tags>
<!-- This is hack to avoid having content in the package -->
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" />
</frameworkAssemblies>
</metadata>
<files>
<file src="nuget-powershell.psm1" target="tools" />
<file src="nuget-powershell.psd1" target="tools" />
<file src="get-nugetps.ps1" target="tools" />
</files>
</package>