-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathIntrinio.SDK.nuspec
49 lines (40 loc) · 2.31 KB
/
Intrinio.SDK.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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>Intrinio.SDK</id>
<title>Intrinio</title>
<!-- The package version number that is used when resolving dependencies -->
<version>7.12.0</version>
<!-- Authors contain text that appears directly on the gallery -->
<authors>Intrinio</authors>
<!-- Owners are typically nuget.org identities that allow gallery
users to earily find other packages by the same owners. -->
<owners>Intrinio</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>Access the Intrinio API (official).</description>
<copyright>2022 © Intrinio</copyright>
<licenseUrl>https://www.gnu.org/licenses/gpl-3.0.en.html</licenseUrl>
<!-- Dependencies are automatically installed when the package is installed -->
<dependencies>
<dependency id="NewtonSoft.Json" version="13.0.3" />
<dependency id="JsonSubTypes" version="2.0.1" />
<dependency id="RestSharp" version="112.0.0" />
<dependency id="Polly" version="8.4.1" />
</dependencies>
</metadata>
<files>
<!-- A readme.txt will be displayed when the package is installed -->
<file src="README.md" target="" />
<file src="docs/*.md" target="docs" />
<file src="src/Intrinio.SDK/bin/Release/net8.0/Intrinio.SDK.dll" target="lib/net8.0" />
<file src="src/Intrinio.SDK/bin/Release/net8.0/Intrinio.SDK.pdb" target="lib/net8.0" />
<file src="src/Intrinio.SDK/bin/Release/net8.0/Intrinio.SDK.deps.json" target="lib/net8.0" />
<file src="src/Intrinio.SDK.Test/bin/Release/net8.0/Intrinio.SDK.Test.dll" target="lib/net8.0" />
<file src="src/Intrinio.SDK.Test/bin/Release/net8.0/Intrinio.SDK.Test.pdb" target="lib/net8.0" />
<file src="src/Intrinio.SDK.Test/bin/Release/net8.0/Intrinio.SDK.Test.deps.json" target="lib/net8.0" />
</files>
</package>