Skip to content

Commit b0e309f

Browse files
committed
Add signed version of AutoMapper.Collection
1 parent f6a6334 commit b0e309f

8 files changed

Lines changed: 74 additions & 2941 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,4 @@ ModelManifest.xml
191191
/.vs
192192
*.GhostDoc.xml
193193
/artifacts
194+
*.lock.json

AutoMapper.Collection.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AutoMapper.Collection.Entit
1919
EndProject
2020
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AutoMapper.Collection.LinqToSQL", "src\AutoMapper.Collection.LinqToSQL\AutoMapper.Collection.LinqToSQL.xproj", "{A0A023B6-D02A-4CD3-9B3D-3B3022DB001A}"
2121
EndProject
22+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AutoMapper.Collection-Signed", "src\AutoMapper.Collection-Signed\AutoMapper.Collection-Signed.xproj", "{17CBAFE0-F758-47FB-86A1-F3AFEB0389B0}"
23+
EndProject
2224
Global
2325
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2426
Debug|Any CPU = Debug|Any CPU
@@ -37,6 +39,10 @@ Global
3739
{A0A023B6-D02A-4CD3-9B3D-3B3022DB001A}.Debug|Any CPU.Build.0 = Debug|Any CPU
3840
{A0A023B6-D02A-4CD3-9B3D-3B3022DB001A}.Release|Any CPU.ActiveCfg = Release|Any CPU
3941
{A0A023B6-D02A-4CD3-9B3D-3B3022DB001A}.Release|Any CPU.Build.0 = Release|Any CPU
42+
{17CBAFE0-F758-47FB-86A1-F3AFEB0389B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
43+
{17CBAFE0-F758-47FB-86A1-F3AFEB0389B0}.Debug|Any CPU.Build.0 = Debug|Any CPU
44+
{17CBAFE0-F758-47FB-86A1-F3AFEB0389B0}.Release|Any CPU.ActiveCfg = Release|Any CPU
45+
{17CBAFE0-F758-47FB-86A1-F3AFEB0389B0}.Release|Any CPU.Build.0 = Release|Any CPU
4046
EndGlobalSection
4147
GlobalSection(SolutionProperties) = preSolution
4248
HideSolutionNode = FALSE
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
5+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
6+
</PropertyGroup>
7+
<PropertyGroup Label="Globals">
8+
<ProjectGuid>17cbafe0-f758-47fb-86a1-f3afeb0389b0</ProjectGuid>
9+
<RootNamespace>AutoMapper.Collection</RootNamespace>
10+
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
11+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
12+
</PropertyGroup>
13+
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
14+
<AssemblyName>AutoMapper.Collection</AssemblyName>
15+
</PropertyGroup>
16+
<PropertyGroup>
17+
<SchemaVersion>2.0</SchemaVersion>
18+
</PropertyGroup>
19+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
20+
<ProjectExtensions>
21+
<VisualStudio>
22+
<UserProperties />
23+
</VisualStudio>
24+
</ProjectExtensions>
25+
</Project>
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"version": "1.2.2-*",
3+
"authors": [ "Tyler Carlson" ],
4+
"description": "Collection updating support for AutoMapper.",
5+
"packOptions": {
6+
"owners": [ "Tyler Carlson" ],
7+
"licenseUrl": "https://raw.githubusercontent.com/TylerCarlson1/Automapper.Collection/master/LICENSE",
8+
"projectUrl": "https://github.com/TylerCarlson1/Automapper.Collection",
9+
"requireLicenseAcceptance": false
10+
},
11+
12+
"buildOptions": {
13+
"publicSign": true,
14+
"keyFile": "../Key.snk",
15+
"compile": {
16+
"include": [ "../AutoMapper.Collection/**/*.cs" ],
17+
"exclude": [ "../AutoMapper.Collection/**/obj/*", "../AutoMapper.Collection/**/bin/*" ]
18+
}
19+
},
20+
21+
"dependencies": {
22+
"AutoMapper" : "4.2.1"
23+
},
24+
25+
"frameworks": {
26+
"net45": {
27+
},
28+
"netstandard1.1": {
29+
"dependencies": {
30+
"Microsoft.CSharp": "4.0.1-rc2-24027",
31+
"NETStandard.Library": "1.5.0-rc2-24027",
32+
"System.Linq.Expressions": "4.0.11-rc2-24027",
33+
"System.Linq.Queryable": "4.0.1-rc2-24027",
34+
"System.Dynamic.Runtime": "4.0.11-rc2-24027"
35+
},
36+
"imports": [
37+
"portable-net45+win8+dnxcore50",
38+
"portable-net45+win8"
39+
]
40+
}
41+
}
42+
}

src/AutoMapper.Collection.EntityFramework/project.lock.json

Lines changed: 0 additions & 106 deletions
This file was deleted.

src/AutoMapper.Collection.LinqToSQL/project.lock.json

Lines changed: 0 additions & 68 deletions
This file was deleted.

0 commit comments

Comments
 (0)