forked from IronLanguages/dlr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynamicLanguageRuntime.nuspec
More file actions
40 lines (40 loc) · 1.74 KB
/
DynamicLanguageRuntime.nuspec
File metadata and controls
40 lines (40 loc) · 1.74 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
<?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>DynamicLanguageRuntime</id>
<title>Dynamic Language Runtime</title>
<version>1.3.5</version>
<authors>DLR Contributors,Microsoft</authors>
<owners>DLR Community</owners>
<projectUrl>https://ironpython.net</projectUrl>
<repository type="git" url="https://github.com/IronLanguages/dlr.git" />
<license type="expression">Apache-2.0</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Dynamic Language Runtime</description>
<summary>Dynamic Language Runtime</summary>
<language>en-US</language>
<tags>dynamic dlr</tags>
<dependencies>
<group targetFramework="net462">
</group>
<group targetFramework="netstandard2.0">
<dependency id="System.CodeDom" version="4.7.0" />
<dependency id="System.Configuration.ConfigurationManager" version="4.7.0" />
<dependency id="System.Reflection.Emit" version="4.7.0" />
<dependency id="System.Reflection.Emit.Lightweight" version="4.7.0" />
</group>
<group targetFramework="net8.0">
<dependency id="System.CodeDom" version="8.0.0" />
</group>
<group targetFramework="net10.0">
<dependency id="System.CodeDom" version="10.0.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="**\*.dll" target="lib" exclude="net6.0\*;net9.0*\*" />
<file src="**\*.pdb" target="lib" exclude="net6.0\*;net9.0*\*" />
<file src="**\*.xml" target="lib" exclude="net6.0\*;net9.0*\*" />
<file src="README.md;LICENSE" />
</files>
</package>