forked from MoonStorm/FastCrud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDapper.FastCrud.Benchmarks.csproj
103 lines (103 loc) · 4.12 KB
/
Dapper.FastCrud.Benchmarks.csproj
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?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')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{ED7BCE12-A776-437B-A1D1-9E3D3AE5A90B}</ProjectGuid>
<OutputType>Library</OutputType>
<Prefer32Bit>false</Prefer32Bit>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Dapper.FastCrud.Benchmarks</RootNamespace>
<AssemblyName>Dapper.FastCrud.Benchmarks</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<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.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="DapperSteps.cs" />
<None Include="DeclarativeSqlSteps_Invalid.cs" />
<Compile Include="EfDbContext.cs" />
<Compile Include="EfSteps.cs" />
<Compile Include="EntityGenerationSteps.cs" />
<Compile Include="FastCrudSteps.cs" />
<Compile Include="Benchmarks.feature.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Benchmarks.feature</DependentUpon>
</Compile>
<Compile Include="DapperExtensionsSteps.cs" />
<Compile Include="SimpleCrudSteps.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<None Include="app.config">
<SubType>Designer</SubType>
</None>
<None Include="Benchmarks.feature">
<Generator>SpecFlowSingleFileGenerator</Generator>
<LastGenOutput>Benchmarks.feature.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper">
<Version>1.50.2</Version>
</PackageReference>
<PackageReference Include="Dapper.SimpleCRUD">
<Version>1.13.0</Version>
</PackageReference>
<PackageReference Include="DapperExtensions">
<Version>1.5.0</Version>
</PackageReference>
<PackageReference Include="EntityFramework">
<Version>6.1.3</Version>
</PackageReference>
<PackageReference Include="NUnit">
<Version>3.10.1</Version>
</PackageReference>
<PackageReference Include="NUnit3TestAdapter">
<Version>3.10.0</Version>
</PackageReference>
<PackageReference Include="SpecFlow">
<Version>2.3.1</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Dapper.FastCrud.Tests\Dapper.FastCrud.Tests.csproj">
<Project>{0fc75c39-9eb9-445c-ac0c-e1fbf79bbdf2}</Project>
<Name>Dapper.FastCrud.Tests</Name>
</ProjectReference>
<ProjectReference Include="..\Dapper.FastCrud\Dapper.FastCrud.csproj">
<Project>{a2b22949-0db7-4130-b813-420b839774b2}</Project>
<Name>Dapper.FastCrud</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>