-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathMono.Reflection.nuspec
26 lines (26 loc) · 1.3 KB
/
Mono.Reflection.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
<?xml version="1.0"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Mono.Reflection</id>
<version>2.0.0.0</version>
<title>Mono.Reflection</title>
<authors>Jb Evain</authors>
<owners>Jb Evain</owners>
<licenseUrl>http://opensource.org/licenses/mit-license.php</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectUrl>http://github.com/jbevain/mono.reflection/</projectUrl>
<description>Complement for System.Reflection, including an IL disassembler.</description>
<language>en-US</language>
<tags>assembly assemblies module modules il cil msil bytecode reflection disassembler</tags>
<dependencies>
<group targetFramework=".NETFramework4.0" />
<group targetFramework=".NETStandard2.0" />
</dependencies>
</metadata>
<files>
<file src="bin\Release\net40\Mono.Reflection.dll" target="lib/net40" />
<file src="bin\Release\net40\Mono.Reflection.pdb" target="lib/net40" />
<file src="bin\Release\netstandard2.0\Mono.Reflection.dll" target="lib/netstandard2.0" />
<file src="bin\Release\netstandard2.0\Mono.Reflection.pdb" target="lib/netstandard2.0" />
</files>
</package>