forked from pester/Pester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pester.nuspec
29 lines (29 loc) · 1.39 KB
/
Pester.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"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Pester</id>
<version>$version$</version>
<title>Pester</title>
<summary>Pester is the ubiquitous test and mock framework for PowerShell</summary>
<description>Pester is testing framework for PowerShell, written in PowerShell.</description>
<tags>powershell unit testing bdd tdd mocking admin</tags>
<authors>Pester Team</authors>
<iconUrl>https://raw.githubusercontent.com/pester/pester/master/images/pester.PNG</iconUrl>
<projectUrl>https://github.com/Pester/Pester</projectUrl>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
</metadata>
<files>
<file src="Pester.psm1" target="$targetBase$" />
<file src="Pester.psd1" target="$targetBase$" />
<file src="LICENSE*" target="$targetBase$" />
<file src="chocolateyInstall.ps1" />
<file src="VERIFICATION.txt" />
<file src="nunit_schema_2.5.xsd" target="$targetBase$" />
<file src="bin\*.*" target="$targetBase$\bin" />
<file src="Functions\**\*.*" target="$targetBase$\Functions" />
<file src="Dependencies\**\*.*" target="$targetBase$\Dependencies" />
<file src="Snippets\*.*" target="$targetBase$\Snippets" />
<file src="en-US\*.*" target="$targetBase$\en-US" />
<file src="lib\**\*.*" target="$targetBase$\lib" />
</files>
</package>