-
Notifications
You must be signed in to change notification settings - Fork 321
Expand file tree
/
Copy pathMicrosoft.Test.Pict.nuspec
More file actions
44 lines (40 loc) · 2.18 KB
/
Microsoft.Test.Pict.nuspec
File metadata and controls
44 lines (40 loc) · 2.18 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Microsoft.Test.Pict</id>
<version>4.0.0</version>
<authors>Jacek Czerwonka</authors>
<license type="file">contents/LICENSE.TXT</license>
<projectUrl>http://github.com/microsoft/pict</projectUrl>
<repository type="git" url="https://github.com/microsoft/pict.git" />
<description>PICT - Combinatorial Testing Tool</description>
</metadata>
<files>
<!-- x64 files -->
<file src="x64/Release/cli/pict.exe" target="contents/win-x64/exe" />
<file src="x64/Release/cli/pict.pdb" target="contents/win-x64/exe" />
<file src="x64/Debug/api/pict.lib" target="contents/win-x64/api/Debug" />
<file src="x64/Release/api/pict.lib" target="contents/win-x64/api/Release" />
<file src="x64/Release/clidll/pict.dll" target="contents/win-x64/dll" />
<file src="x64/Release/clidll/pict.pdb" target="contents/win-x64/dll" />
<!-- x86 (Win32) files -->
<file src="Win32/Release/cli/pict.exe" target="contents/win-x86/exe" />
<file src="Win32/Release/cli/pict.pdb" target="contents/win-x86/exe" />
<file src="Win32/Debug/api/pict.lib" target="contents/win-x86/api/Debug" />
<file src="Win32/Release/api/pict.lib" target="contents/win-x86/api/Release" />
<file src="Win32/Release/clidll/pict.dll" target="contents/win-x86/dll" />
<file src="Win32/Release/clidll/pict.pdb" target="contents/win-x86/dll" />
<!-- ARM64 files -->
<file src="ARM64/Release/cli/pict.exe" target="contents/win-arm64/exe" />
<file src="ARM64/Release/cli/pict.pdb" target="contents/win-arm64/exe" />
<file src="ARM64/Debug/api/pict.lib" target="contents/win-arm64/api/Debug" />
<file src="ARM64/Release/api/pict.lib" target="contents/win-arm64/api/Release" />
<file src="ARM64/Release/clidll/pict.dll" target="contents/win-arm64/dll" />
<file src="ARM64/Release/clidll/pict.pdb" target="contents/win-arm64/dll" />
<!-- Common header file - shared across architectures -->
<file src="api/pictapi.h" target="contents/api" />
<!-- Documentation and license - common for all architectures -->
<file src="doc/pict.md" target="contents" />
<file src="LICENSE.txt" target="contents" />
</files>
</package>