-
Notifications
You must be signed in to change notification settings - Fork 14
/
nuspec.mustache
62 lines (53 loc) · 2.32 KB
/
nuspec.mustache
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
62
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<!-- The identifier that must be unique within the hosting gallery -->
<id>$id$</id>
<title>{{packageTitle}}</title>
<!-- The package version number that is used when resolving dependencies -->
<version>$version$</version>
<!-- Authors contain text that appears directly on the gallery -->
<authors>$author$</authors>
<!-- Owners are typically nuget.org identities that allow gallery
users to easily find other packages by the same owners. -->
<owners>$author$</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<developmentDependency>false</developmentDependency>
<!-- The description can be used in package manager UI. Note that the
nuget.org gallery uses information you add in the portal. -->
<description>{{packageDescription}}</description>
{{#termsOfService}}
<copyright>{{.}}</copyright>
{{/termsOfService}}
{{#licenseUrl}}
<licenseUrl>{{.}}</licenseUrl>
{{/licenseUrl}}
<!-- Dependencies are automatically installed when the package is installed -->
<dependencies>
<dependency id="Newtonsoft.Json" version="13.0.3" />
{{#useRestSharp}}
{{^useCustomTemplateCode}}
<dependency id="RestSharp" version="110.2.0" />
{{/useCustomTemplateCode}}
{{#useCustomTemplateCode}}
<dependency id="RestSharp" version="112.0.0" />
{{/useCustomTemplateCode}}
{{/useRestSharp}}
{{#useCompareNetObjects}}
<dependency id="CompareNETObjects" version="4.61.0" />
{{/useCompareNetObjects}}
<dependency id="JsonSubTypes" version="2.0.1" />
{{#validatable}}
<dependency id="System.ComponentModel.Annotations" version="5.0.0" />
{{/validatable}}
{{#supportsRetry}}
<dependency id="Polly" version="8.1.0" />
{{/supportsRetry}}
</dependencies>
</metadata>
<files>
<!-- A readme.txt will be displayed when the package is installed -->
<file src="..\..\README.md" target="" />
<file src="..\..\docs\**\*.*" target="docs" />
</files>
</package>