forked from AutoMapper/AutoMapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AutoMapper.nuspec
49 lines (49 loc) · 3.5 KB
/
AutoMapper.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" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>AutoMapper</id>
<version>$version$</version>
<authors>Jimmy Bogard</authors>
<owners>Jimmy Bogard</owners>
<licenseUrl>https://github.com/AutoMapper/AutoMapper/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>http://automapper.org/</projectUrl>
<iconUrl>https://s3.amazonaws.com/automapper/icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A convention-based object-object mapper. AutoMapper uses a fluent configuration API to define an object-object mapping strategy. AutoMapper uses a convention-based matching algorithm to match up source to destination values. Currently, AutoMapper is designed for model projection scenarios to flatten complex object models to DTOs and other simple objects, whose design is better suited for serialization, communication, messaging, or simply an anti-corruption layer between the domain and application layer.</description>
<summary>A convention-based object-object mapper</summary>
<tags></tags>
<dependencies>
<group targetFramework=".NETFramework4.5" />
<group targetFramework=".NETPortable4.5-Profile111" />
<group targetFramework=".NETStandard1.1">
<dependency id="NETStandard.Library" version="[1.6.0, )" />
<dependency id="System.Linq.Queryable" version="[4.0.1, )" />
<dependency id="System.ComponentModel.TypeConverter" version="[4.1.0, )" />
<dependency id="System.Dynamic.Runtime" version="[4.0.11, )" />
<dependency id="Microsoft.CSharp" version="[4.0.1, )" />
</group>
<group targetFramework=".NETStandard1.3">
<dependency id="NETStandard.Library" version="[1.6.0, )" />
<dependency id="System.Linq.Queryable" version="[4.0.1, )" />
<dependency id="System.Collections.Specialized" version="[4.0.1, )" />
<dependency id="System.ComponentModel.TypeConverter" version="[4.1.0, )" />
<dependency id="System.Dynamic.Runtime" version="[4.0.11, )" />
<dependency id="Microsoft.CSharp" version="[4.0.1, )" />
</group>
</dependencies>
</metadata>
<files>
<file src="src\AutoMapper\bin\Release\net45\AutoMapper.dll" target="lib\net45" />
<file src="src\AutoMapper\bin\Release\net45\AutoMapper.pdb" target="lib\net45" />
<file src="src\AutoMapper\bin\Release\net45\AutoMapper.xml" target="lib\net45" />
<file src="src\AutoMapper\bin\Release\netstandard1.1\AutoMapper.dll" target="lib\netstandard1.1" />
<file src="src\AutoMapper\bin\Release\netstandard1.1\AutoMapper.pdb" target="lib\netstandard1.1" />
<file src="src\AutoMapper\bin\Release\netstandard1.1\AutoMapper.xml" target="lib\netstandard1.1" />
<file src="src\AutoMapper\bin\Release\netstandard1.3\AutoMapper.dll" target="lib\netstandard1.3" />
<file src="src\AutoMapper\bin\Release\netstandard1.3\AutoMapper.pdb" target="lib\netstandard1.3" />
<file src="src\AutoMapper\bin\Release\netstandard1.3\AutoMapper.xml" target="lib\netstandard1.3" />
<file src="src\AutoMapper\bin\Release\portable45-net45+win8+wpa81\AutoMapper.dll" target="lib\portable-net45+win8+wpa81" />
<file src="src\AutoMapper\bin\Release\portable45-net45+win8+wpa81\AutoMapper.pdb" target="lib\portable-net45+win8+wpa81" />
<file src="src\AutoMapper\bin\Release\portable45-net45+win8+wpa81\AutoMapper.xml" target="lib\portable-net45+win8+wpa81" />
</files>
</package>