Skip to content

Commit 5e871dc

Browse files
committed
Updating to v1.0!
1 parent 0148d44 commit 5e871dc

File tree

5 files changed

+12
-46
lines changed

5 files changed

+12
-46
lines changed

AgileMapper.sln

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ VisualStudioVersion = 15.0.27130.2027
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{05AB6D17-6066-41D5-8E79-31C342DFC2DC}"
77
ProjectSection(SolutionItems) = preProject
8-
AgileMapper\AgileObjects.AgileMapper.nuspec = AgileMapper\AgileObjects.AgileMapper.nuspec
98
common.props = common.props
109
CommonAssemblyInfo.cs = CommonAssemblyInfo.cs
1110
LICENCE.md = LICENCE.md
@@ -52,7 +51,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgileMapper.UnitTests.Commo
5251
EndProject
5352
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgileMapper.PerformanceTesting", "AgileMapper.PerformanceTesting\AgileMapper.PerformanceTesting.csproj", "{F377844C-1A00-4685-8C04-07E6067C2812}"
5453
EndProject
55-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AgileMapper.PerformanceTester.NetCore21", "AgileMapper.PerformanceTester.NetCore21\AgileMapper.PerformanceTester.NetCore21.csproj", "{B5BA0B88-48C7-47AE-9236-719BFE67B0A9}"
54+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AgileMapper.PerformanceTester.NetCore21", "AgileMapper.PerformanceTester.NetCore21\AgileMapper.PerformanceTester.NetCore21.csproj", "{B5BA0B88-48C7-47AE-9236-719BFE67B0A9}"
5655
EndProject
5756
Global
5857
GlobalSection(SolutionConfigurationPlatforms) = preSolution

AgileMapper/AgileMapper.csproj

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
<Import Project="..\common.props" />
33

44
<PropertyGroup>
5-
<Summary>A zero-configuration, highly-configurable object-object mapper with viewable execution plans. Projects queries, transforms, deep clones, updates and merges via extension methods, or a static or instance API. Targets .NET Standard 1.0 and .NET 4.0.</Summary>
6-
<Description>A zero-configuration, highly-configurable object-object mapper with viewable execution plans. Projects queries, transforms, deep clones, updates and merges via extension methods, or a static or instance API. Targets .NET Standard 1.0 and .NET 4.0.</Description>
5+
<Description>A zero-configuration, highly-configurable object-object mapper with viewable execution plans. Projects queries, transforms, deep clones, updates and merges via extension methods, or a static or instance API. Targets .NET Standard 1.0+ and .NET 3.5+</Description>
76
<AssemblyTitle>AgileObjects.AgileMapper</AssemblyTitle>
87
<TargetFrameworks>netstandard1.0;netstandard1.3;net35;net40</TargetFrameworks>
98
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -20,6 +19,11 @@
2019
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
2120
<RootNamespace>AgileObjects.AgileMapper</RootNamespace>
2221
<Copyright>Copyright © AgileObjects Ltd 2018</Copyright>
22+
<PackageReleaseNotes>- Making entity key mapping behaviour configurable
23+
- Support for auto-reversal of configured data sources
24+
- Updating to use ReadableExpressions v2.0
25+
- Added shorthand .Map(s =&gt; s.Value, t =&gt; t.Value) API method
26+
- Performance and memory use improvements</PackageReleaseNotes>
2327
</PropertyGroup>
2428

2529
<ItemGroup>

AgileMapper/AgileObjects.AgileMapper.nuspec

-37
This file was deleted.

VersionInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
using System.Reflection;
22

3-
[assembly: AssemblyVersion("0.28.0")]
4-
[assembly: AssemblyFileVersion("0.28.0")]
3+
[assembly: AssemblyVersion("1.0.0")]
4+
[assembly: AssemblyFileVersion("1.0.0")]

common.props

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
1010
<RepositoryType>git</RepositoryType>
1111
<RepositoryUrl>https://github.com/AgileObjects/AgileMapper</RepositoryUrl>
12-
<Version>0.28.0</Version>
13-
<AssemblyVersion>0.28.0.0</AssemblyVersion>
14-
<FileVersion>0.28.0.0</FileVersion>
12+
<Version>1.0.0</Version>
13+
<AssemblyVersion>1.0.0.0</AssemblyVersion>
14+
<FileVersion>1.0.0.0</FileVersion>
1515
</PropertyGroup>
1616

1717
</Project>

0 commit comments

Comments
 (0)