Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Merge pull request #15 from henkmollema/net35
Browse files Browse the repository at this point in the history
.NET 3.5 support. Issue #14.
  • Loading branch information
henkmollema committed Jul 17, 2014
2 parents e58b409 + 952708b commit debec26
Show file tree
Hide file tree
Showing 23 changed files with 170 additions and 14 deletions.
Binary file added nuget/Dapper.FluentMap.1.3.2.nupkg
Binary file not shown.
97 changes: 97 additions & 0 deletions src/Dapper.FluentMap-net35/Dapper.FluentMap-net35.csproj
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>
4 changes: 4 additions & 0 deletions src/Dapper.FluentMap-net35/packages.config
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>
4 changes: 2 additions & 2 deletions src/Dapper.FluentMap.Dommel/Dapper.FluentMap.Dommel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
<DocumentationFile>bin\Release\Dapper.FluentMap.Dommel.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapper, Version=1.25.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="Dapper, Version=1.27.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Dapper.1.26\lib\net40\Dapper.dll</HintPath>
<HintPath>..\packages\Dapper.1.27\lib\net40\Dapper.dll</HintPath>
</Reference>
<Reference Include="Dommel, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
Expand Down
2 changes: 1 addition & 1 deletion src/Dapper.FluentMap.Dommel/packages.config
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>
4 changes: 2 additions & 2 deletions src/Dapper.FluentMap.Tests/Dapper.FluentMap.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapper, Version=1.25.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="Dapper, Version=1.27.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Dapper.1.26\lib\net45\Dapper.dll</HintPath>
<HintPath>..\packages\Dapper.1.27\lib\net45\Dapper.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
Expand Down
2 changes: 1 addition & 1 deletion src/Dapper.FluentMap.Tests/packages.config
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>
6 changes: 6 additions & 0 deletions src/Dapper.FluentMap.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dapper.FluentMap.Dommel", "
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dapper.FluentMap.Tests", "Dapper.FluentMap.Tests\Dapper.FluentMap.Tests.csproj", "{CE214E29-ADBE-43D3-846E-97AED03132CC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dapper.FluentMap-net35", "Dapper.FluentMap-net35\Dapper.FluentMap-net35.csproj", "{E3672FC6-FC8E-453F-A007-E144AE983997}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -27,6 +29,10 @@ Global
{CE214E29-ADBE-43D3-846E-97AED03132CC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CE214E29-ADBE-43D3-846E-97AED03132CC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CE214E29-ADBE-43D3-846E-97AED03132CC}.Release|Any CPU.Build.0 = Release|Any CPU
{E3672FC6-FC8E-453F-A007-E144AE983997}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E3672FC6-FC8E-453F-A007-E144AE983997}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E3672FC6-FC8E-453F-A007-E144AE983997}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E3672FC6-FC8E-453F-A007-E144AE983997}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
11 changes: 5 additions & 6 deletions src/Dapper.FluentMap/Dapper.FluentMap.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,14 @@
<DocumentationFile>bin\Release\Dapper.FluentMap.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapper, Version=1.25.0.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="Dapper, Version=1.27.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Dapper.1.26\lib\net40\Dapper.dll</HintPath>
<HintPath>..\packages\Dapper.1.27\lib\net40\Dapper.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Conventions\Convention.cs" />
Expand All @@ -61,7 +58,9 @@
<Compile Include="Utils\ReflectionHelper.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
2 changes: 1 addition & 1 deletion src/Dapper.FluentMap/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("4bec5ee4-bd0e-4760-badb-5f35d076133f")]

[assembly: AssemblyVersion("1.3.1")]
[assembly: AssemblyVersion("1.3.2")]
2 changes: 1 addition & 1 deletion src/Dapper.FluentMap/packages.config
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 removed src/packages/Dapper.1.26/Dapper.1.26.nupkg
Binary file not shown.
Binary file removed src/packages/Dapper.1.26/lib/net35/Dapper.dll
Binary file not shown.
Binary file removed src/packages/Dapper.1.26/lib/net40/Dapper.dll
Binary file not shown.
Binary file removed src/packages/Dapper.1.26/lib/net45/Dapper.dll
Binary file not shown.
Binary file added src/packages/Dapper.1.27/Dapper.1.27.nupkg
Binary file not shown.
Binary file added src/packages/Dapper.1.27/lib/net35/Dapper.dll
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added src/packages/Dapper.1.27/lib/net40/Dapper.dll
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added src/packages/Dapper.1.27/lib/net45/Dapper.dll
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/packages/repositories.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
<repository path="..\Dapper.FluentMap.Dommel\packages.config" />
<repository path="..\Dapper.FluentMap.Tests\packages.config" />
<repository path="..\Dapper.FluentMap\packages.config" />
<repository path="..\Dapper.FluentMap-net35\packages.config" />
</repositories>

0 comments on commit debec26

Please sign in to comment.