forked from alexcpendleton/NLipsum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNLipsum.nuspec
38 lines (36 loc) · 3.86 KB
/
NLipsum.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
<?xml version="1.0" encoding="utf-16"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NLipsum</id>
<version>1.1.0</version>
<title>NLipsum</title>
<authors>alexcpendleton</authors>
<owners>alexcpendleton</owners>
<licenseUrl>https://opensource.org/licenses/mit</licenseUrl>
<projectUrl>https://github.com/alexcpendleton/NLipsum</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>NLipsum : Lorem Ipsum (Lipsum) Generator and Library for the .NET Framework (C#)</description>
<releaseNotes>
1.1.0: Adds .Net standard support. Fixes author names for Le Masque and Le Bateau Ivre.
1.0.1: Restores accidentally removed default constructor behavior. LipsumGenerator's default constructor uses the LoremIpsum text corpus rather than nothing, like it did in the nuget version 0.1.3.
1.0.0: Adds support for Portable Class Libraries, thanks to mattleibow.
</releaseNotes>
<dependencies>
<group targetFramework="net20">
</group>
<group targetFramework="portable-net403+sl50+netcore45+wpa81+wp8">
</group>
<group targetFramework="netstandard1.0">
<dependency id="NETStandard.Library" version="1.6.1" />
</group>
</dependencies>
</metadata>
<files>
<file src="NLipsum.Core/bin/Release/NLipsum.Core.dll" target="lib\net20" />
<file src="NLipsum.Core/bin/Release/NLipsum.Core.XML" target="lib\net20" />
<file src="NLipsum.Portable/bin/Release/NLipsum.Core.dll" target="lib\portable-net403+sl50+netcore45+wpa81+wp8" />
<file src="NLipsum.Portable/bin/Release/NLipsum.Core.XML" target="lib\portable-net403+sl50+netcore45+wpa81+wp8" />
<file src="NLipsum.NetStd/bin/Release/NLipsum.Core.dll" target="lib\netstandard1.0" />
<file src="NLipsum.NetStd/bin/Release/NLipsum.Core.XML" target="lib\netstandard1.0" />
</files>
</package>