Skip to content

Commit

Permalink
upgrade to rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
chaowlert committed Jun 18, 2016
1 parent 6f8e1e0 commit db42b8e
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,4 @@ deploy/archive
deploy/output
/src/.vs/config
project.lock.json
/src/.vs
6 changes: 0 additions & 6 deletions src/Mapster/Mapster.nuget.targets

This file was deleted.

2 changes: 1 addition & 1 deletion src/Mapster/Mapster.xproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ProjectGuid>c1137dae-26d6-47bd-985a-ba619549e633</ProjectGuid>
<RootNamespace>Mapster</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
Expand Down
3 changes: 2 additions & 1 deletion src/Mapster/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Reflection;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

Expand Down
8 changes: 4 additions & 4 deletions src/Mapster/global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"projects": [ ],
"sdk": {
"version": "1.0.0-rc1-update1"
}
"projects": [ ],
"sdk": {
"version": "1.0.0-preview1-002702"
}
}
28 changes: 16 additions & 12 deletions src/Mapster/project.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
{
"version": "2.3.0",
"version": "2.4.0",
"description": "A fast, fun and stimulating object to object mapper. Kind of like AutoMapper, just simpler and way, way faster.",
"summary": "A fast, fun and stimulating object to object mapper. Kind of like AutoMapper, but simpler and way faster.",
"iconUrl": "http://www.fancyicons.com/free-icons/103/pretty-office-5/png/128/order_128.png",
"packOptions": {
"summary": "A fast, fun and stimulating object to object mapper. Kind of like AutoMapper, but simpler and way faster.",
"iconUrl": "http://www.fancyicons.com/free-icons/103/pretty-office-5/png/128/order_128.png",
"tags": [ "Mapper", "AutoMapper", "Fast", "Mapping" ],
"projectUrl": "https://github.com/chaowlert/Mapster",
"licenseUrl": "https://github.com/chaowlert/Mapster/blob/master/LICENSE"
},
"authors": [ "chaowlert", "eric_swann" ],
"tags": [ "Mapper", "AutoMapper", "Fast", "Mapping" ],
"projectUrl": "https://github.com/chaowlert/Mapster",
"licenseUrl": "https://github.com/chaowlert/Mapster/blob/master/LICENSE",
"copyright": "Copyright (c) 2016 Chaowlert Chaisrichalermpol, Eric Swann",
"compilationOptions": {
"buildOptions": {
"keyFile": "Mapster.snk"
},
"frameworks": {
"net4": {
"compilationOptions": {
"buildOptions": {
"define": [ "NET4" ]
}
},
"net45": { },
"dotnet5.4": {
"netstandard1.3": {
"dependencies": {
"Microsoft.CSharp": "4.0.0",
"System.Collections.NonGeneric": "4.0.0",
"System.Linq.Queryable": "4.0.0"
"Microsoft.CSharp": "4.0.1-rc2-24027",
"NETStandard.Library": "1.5.0-rc2-24027",
"System.Collections.NonGeneric": "4.0.1-rc2-24027",
"System.Linq.Queryable": "4.0.1-rc2-24027",
"System.Reflection.TypeExtensions": "4.1.0-rc2-24027"
}
}
}
Expand Down

0 comments on commit db42b8e

Please sign in to comment.