forked from lifeisforu/NodeGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNodeGraph.nuspec
More file actions
61 lines (47 loc) · 2.41 KB
/
NodeGraph.nuspec
File metadata and controls
61 lines (47 loc) · 2.41 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<!-- The identifier that must be unique within the hosting gallery -->
<id>Lifeisforu.NodeGraph</id>
<!-- The package version number that is used when resolving dependencies -->
<version>0.3.2</version>
<!-- Authors contain text that appears directly on the gallery -->
<authors>lifeisforu</authors>
<!--
Owners are typically nuget.org identities that allow gallery
users to easily find other packages by the same owners.
-->
<owners>lifeisforu</owners>
<!-- Project URL provides a link for the gallery -->
<projectUrl>https://github.com/lifeisforu/NodeGraph</projectUrl>
<!-- License information is displayed on the gallery -->
<license type="expression">MIT</license>
<!-- The icon is used in Visual Studio's package manager UI -->
<iconUrl>https://github.com/lifeisforu/NodeGraph/blob/master/Resources/Images/NodeGraphIcon.png</iconUrl>
<!--
If true, this value prompts the user to accept the license when
installing the package.
-->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!-- Any details about this particular release -->
<releaseNotes>1. Visibility-bug of PropertyEditor has been fixed when property-port is deserialized.
2. Supporting for editable-display-name for property-port has been added by double-clicking.</releaseNotes>
<!--
The description can be used in package manager UI. Note that the
nuget.org gallery uses information you add in the portal.
-->
<description>WPF NodeGraph inspired by UE4's Blueprint Editor</description>
<!-- Copyright information -->
<copyright>Copyright ©2019 lifeisforu</copyright>
<!-- Tags appear in the gallery and can be used for tag searches -->
<tags>wpf node graph visual script flowchart blueprint</tags>
<!-- Dependencies are automatically installed when the package is installed -->
<dependencies>
<dependency id="PropertyTools.Wpf" version="2.0.1" />
</dependencies>
</metadata>
<!-- A readme.txt to display when the package is installed -->
<files>
<file src="" target="" />
</files>
</package>