forked from dgg/nmoneys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNMoneys.nuspec
More file actions
30 lines (30 loc) · 1.6 KB
/
NMoneys.nuspec
File metadata and controls
30 lines (30 loc) · 1.6 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
<?xml version="1.0"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>NMoneys</id>
<title>NMoneys</title>
<version>6.1.0.0</version>
<authors>Daniel González García</authors>
<licenseUrl>https://raw.githubusercontent.com/dgg/nmoneys/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Implementation of the Money Value Object to support representing moneys in the currencies defined in the ISO 4217 standard.</description>
<summary>
NMoneys (plural) is a simple .Net library to represent monetary quantities. Provides: a) types for representing currencies that conform to the ISO 4217 standard and quantities of money in a given currency.
b) extensible operations with monetary quantities of the same currency. c) ways of formatting the representation of monetary quantities
</summary>
<projectUrl>https://github.com/dgg/nmoneys</projectUrl>
<iconUrl>https://nugetgallery.blob.core.windows.net/icons/NMoneys.2.0.0.0.png</iconUrl>
<tags>.net currency money iso iso4217</tags>
<dependencies>
<group targetFramework="netstandard1.3">
<dependency id="System.Diagnostics.Contracts" version="4.3.0" />
<dependency id="System.Xml.XPath" version="4.3.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="lib\**\NMoneys.dll" target="lib" />
<file src="lib\**\NMoneys.XML" target="lib" />
<file src="lib\**\NMoneys.chm" target="lib" />
</files>
</package>