-
Notifications
You must be signed in to change notification settings - Fork 0
/
.nuspec
56 lines (44 loc) · 2.29 KB
/
.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
50
51
52
53
54
55
56
<?xml version="1.0"?>
<package xmlns="https://raw.githubusercontent.com/NuGet/NuGet.Client/dev/src/NuGet.Core/NuGet.Packaging/compiler/resources/nuspec.xsd">
<metadata>
<!-- The identifier that must be unique within the hosting gallery -->
<id>FreeFair.ObjectDictionaryMapper</id>
<!-- The package version number that is used when resolving dependencies -->
<version>0.0.1</version>
<!-- Authors contain text that appears directly on the gallery -->
<authors>Dennis Fricke</authors>
<!--
Owners are typically nuget.org identities that allow gallery
users to easily find other packages by the same owners.
-->
<owners>frisch12</owners>
<!-- License and project URLs provide links for the gallery -->
<licenseUrl>https://opensource.org/licenses/MIT</licenseUrl>
<projectUrl>https://github.com/freefair/ObjectDictionaryMapper.git</projectUrl>
<!-- The icon is used in Visual Studio's package manager UI -->
<iconUrl>https://raw.githubusercontent.com/freefair/ObjectDictionaryMapper/master/icon.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>First release</releaseNotes>
<!--
The description can be used in package manager UI. Note that the
nuget.org gallery uses information you add in the portal.
-->
<description>Utility for mapping objects between dictionaries and classes in .NET</description>
<!-- Copyright information -->
<copyright>Copyright ©2018 Dennis Fricke</copyright>
<!-- Tags appear in the gallery and can be used for tag searches -->
<tags>object mapping dictionary objectmapper</tags>
<!-- Dependencies are automatically installed when the package is installed -->
<dependencies>
</dependencies>
</metadata>
<!-- A readme.txt to display when the package is installed -->
<files>
<file src="ObjectDictionaryMapper\bin\Release\ObjectDictionaryMapper.dll" target="lib\net472" />
</files>
</package>