-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDapper.Mapper.csproj
More file actions
executable file
·65 lines (52 loc) · 2.83 KB
/
Copy pathDapper.Mapper.csproj
File metadata and controls
executable file
·65 lines (52 loc) · 2.83 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<DebugType Condition="$(codecov) == 'true'">full</DebugType>
<DebugType Condition="$(codecov) != 'true'">pdbonly</DebugType>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<NoWarn>S107,S2436</NoWarn>
<TargetFrameworks>net40;net45;net451;netstandard1.3</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Version>0.0.0</Version>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup>
<Authors>Arjen Post</Authors>
<Copyright>Copyright 2018 Arjen Post</Copyright>
<Description>Dapper.Mapper is an extension to Dapper multi mapping which figures out the relationships between the returned objects and automatically assigns them. Instead of explicitly writing this: 'var employee = connection.Query<Employee, Department, Employee>(sql, (employee, department) => employee.Department = department; return employee;);' Dapper.Mapper allows you to write this: 'var employee = connection.Query<Employee, Department>(sql);'.</Description>
<PackageId>Dapper.Mapper</PackageId>
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/dotarj/Dapper.Mapper</PackageProjectUrl>
<PackageTags>orm;sql;micro-orm;dapper</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/dotarj/Dapper.Mapper</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="1.50.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net40' OR '$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net451'">
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
<PackageReference Include="Microsoft.CSharp" Version="4.0.1" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net451' OR '$(TargetFramework)' == 'netstandard1.3'">
<DefineConstants>$(DefineConstants);ASYNC</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
<DefineConstants>$(DefineConstants);NETSTANDARD</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="../../stylecop.json" Visible="False" />
</ItemGroup>
<PropertyGroup>
<CodeAnalysisRuleSet>../../stylecop.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
</Project>