This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from henkmollema/net35
.NET 3.5 support. Issue #14.
- Loading branch information
Showing
23 changed files
with
170 additions
and
14 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{E3672FC6-FC8E-453F-A007-E144AE983997}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>Dapper.FluentMap</RootNamespace> | ||
<AssemblyName>Dapper.FluentMap</AssemblyName> | ||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<TargetFrameworkProfile /> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE;NET35</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DocumentationFile>bin\Release\Dapper.FluentMap.XML</DocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Dapper"> | ||
<HintPath>..\packages\Dapper.1.27\lib\net35\Dapper.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Data" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="packages.config" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="..\Dapper.FluentMap\Configuration\FluentConventionConfiguration.cs"> | ||
<Link>Configuration\FluentConventionConfiguration.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\Configuration\FluentMapConfiguration.cs"> | ||
<Link>Configuration\FluentMapConfiguration.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\Conventions\Convention.cs"> | ||
<Link>Conventions\Convention.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\Conventions\ConventionPropertyConfiguration.cs"> | ||
<Link>Conventions\ConventionPropertyConfiguration.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\Conventions\PropertyConventionConfiguration.cs"> | ||
<Link>Conventions\PropertyConventionConfiguration.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\FluentMapper.cs"> | ||
<Link>FluentMapper.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\Mapping\EntityMap.cs"> | ||
<Link>Mapping\EntityMap.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\Mapping\PropertyMap.cs"> | ||
<Link>Mapping\PropertyMap.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\Properties\AssemblyInfo.cs"> | ||
<Link>Properties\AssemblyInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\TypeMaps\FluentConventionTypeMap.cs"> | ||
<Link>TypeMaps\FluentConventionTypeMap.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\TypeMaps\FluentTypeMap.cs"> | ||
<Link>TypeMaps\FluentTypeMap.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\TypeMaps\MultiTypeMap.cs"> | ||
<Link>TypeMaps\MultiTypeMap.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\Utils\DictionaryExtensions.cs"> | ||
<Link>Utils\DictionaryExtensions.cs</Link> | ||
</Compile> | ||
<Compile Include="..\Dapper.FluentMap\Utils\ReflectionHelper.cs"> | ||
<Link>Utils\ReflectionHelper.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Dapper" version="1.27" targetFramework="net35" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Dapper" version="1.26" targetFramework="net40" /> | ||
<package id="Dapper" version="1.27" targetFramework="net40" /> | ||
<package id="Dommel" version="1.1.0" targetFramework="net40" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Dapper" version="1.26" targetFramework="net45" /> | ||
<package id="Dapper" version="1.27" targetFramework="net45" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Dapper" version="1.26" targetFramework="net40" /> | ||
<package id="Dapper" version="1.27" targetFramework="net40" /> | ||
</packages> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13 changes: 13 additions & 0 deletions
13
...packages/Dapper.1.26/lib/net35/Dapper.xml → ...packages/Dapper.1.27/lib/net35/Dapper.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
13 changes: 13 additions & 0 deletions
13
...packages/Dapper.1.26/lib/net40/Dapper.xml → ...packages/Dapper.1.27/lib/net40/Dapper.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
23 changes: 23 additions & 0 deletions
23
...packages/Dapper.1.26/lib/net45/Dapper.xml → ...packages/Dapper.1.27/lib/net45/Dapper.xml
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters