Skip to content

Commit

Permalink
Moq.Dapper to .NET Standard
Browse files Browse the repository at this point in the history
  • Loading branch information
UnoSD committed Feb 8, 2018
1 parent cde564f commit 62fdd1c
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 98 deletions.
7 changes: 5 additions & 2 deletions Moq.Dapper.sln
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26228.4
VisualStudioVersion = 15.0.27130.2010
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Moq.Dapper.Test", "Moq.Dapper.Test\Moq.Dapper.Test.csproj", "{3AF05DC6-580D-410B-9AA4-E0DAB3048992}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Moq.Dapper", "Moq.Dapper\Moq.Dapper.csproj", "{7430287C-81CF-4BB0-889A-D73AAA7E8313}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Moq.Dapper", "Moq.Dapper\Moq.Dapper.csproj", "{7430287C-81CF-4BB0-889A-D73AAA7E8313}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Moq.DataContext", "Moq.DataContext\Moq.DataContext.csproj", "{EF1DFF93-6C0B-4ADB-891A-C2C6A1E17AB0}"
EndProject
Expand All @@ -31,4 +31,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {33BDBCCA-3DEC-419D-B0CC-CFBAA836A4DA}
EndGlobalSection
EndGlobal
79 changes: 25 additions & 54 deletions Moq.Dapper/Moq.Dapper.csproj
Original file line number Diff line number Diff line change
@@ -1,59 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7430287C-81CF-4BB0-889A-D73AAA7E8313}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Moq.Dapper</RootNamespace>
<AssemblyName>Moq.Dapper</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<TargetFramework>netstandard2.0</TargetFramework>
<Version>1.0.0.4</Version>
<PackageId>Moq.Dapper</PackageId>
<Description>Moq extensions for Dapper methods.</Description>
<Copyright>Copyright 2017</Copyright>
<FileVersion>1.0.0.0</FileVersion>
<Company>Stefano d'Antonio</Company>
<Authors>Stefano d'Antonio</Authors>
<Product>Moq.Dapper</Product>
<PackageLicenseUrl>https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/UnoSD/Moq.Dapper</PackageProjectUrl>
<RepositoryUrl></RepositoryUrl>
<PackageTags>Moq Dapper Test</PackageTags>
<PackageReleaseNotes>First release.</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</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 Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Castle.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
<HintPath>..\packages\Castle.Core.4.0.0\lib\net45\Castle.Core.dll</HintPath>
</Reference>
<Reference Include="Dapper, Version=1.50.2.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapper.1.50.2\lib\net451\Dapper.dll</HintPath>
</Reference>
<Reference Include="Moq, Version=4.7.1.0, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">
<HintPath>..\packages\Moq.4.7.1\lib\net45\Moq.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="DbConnectionInterfaceMockExtensions.cs" />
<Compile Include="DbConnectionMockExtensions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup />

<ItemGroup>
<None Include="packages.config" />
<PackageReference Include="Dapper" Version="1.50.2" />
<PackageReference Include="Moq" Version="4.7.1" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

</Project>
17 changes: 0 additions & 17 deletions Moq.Dapper/Moq.Dapper.nuspec

This file was deleted.

18 changes: 0 additions & 18 deletions Moq.Dapper/Properties/AssemblyInfo.cs

This file was deleted.

7 changes: 0 additions & 7 deletions Moq.Dapper/packages.config

This file was deleted.

0 comments on commit 62fdd1c

Please sign in to comment.