forked from DapperLib/Dapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tooling and project updates (DapperLib#1333)
This is a branch cleaning up old `#if` clauses, `.csproj` bits, Linux build compatibility, and a few other tid-bits (broken out by commit). In general: we're on 3.0 tooling and all previous cruft has been removed.
- Loading branch information
1 parent
7cac382
commit 1481c4d
Showing
38 changed files
with
243 additions
and
338 deletions.
There are no files selected for viewing
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
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
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
103 changes: 48 additions & 55 deletions
103
Dapper.Tests.Performance/Dapper.Tests.Performance.csproj
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,55 +1,48 @@ | ||
<Project> | ||
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" /> | ||
<PropertyGroup> | ||
<AssemblyName>Dapper.Tests.Performance</AssemblyName> | ||
<Title>Dapper.Tests.Performance</Title> | ||
<Description>Dapper Core Performance Suite</Description> | ||
<OutputType>Exe</OutputType> | ||
<GenerateDocumentationFile>false</GenerateDocumentationFile> | ||
<TargetFrameworks>net462</TargetFrameworks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Dapper\Dapper.csproj" /> | ||
<ProjectReference Include="..\Dapper.Contrib\Dapper.Contrib.csproj" /> | ||
<ProjectReference Include="..\Dapper.EntityFramework\Dapper.EntityFramework.csproj" /> | ||
<PackageReference Include="Dashing" Version="2.2.0" /> | ||
<PackageReference Include="Dashing.Weaver" Version="2.2.0" /> | ||
<PackageReference Include="Belgrade.Sql.Client" Version="1.1.4" /> | ||
<PackageReference Include="BenchmarkDotNet" Version="0.11.5" /> | ||
<PackageReference Include="DevExpress.Xpo" Version="19.1.5" /> | ||
<!--<PackageReference Include="BLToolkit" Version="4.3.6" />--> | ||
<PackageReference Include="EntityFramework" Version="6.2.0" /> | ||
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="7.0.0" /> | ||
<PackageReference Include="linq2db.SqlServer" Version="2.9.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.2.6" /> | ||
<PackageReference Include="Microsoft.SqlServer.Types" Version="14.0.1016.290" /> | ||
<PackageReference Include="MySqlConnector" Version="0.56.0" /> | ||
<PackageReference Include="NHibernate" Version="5.2.5" /> | ||
<PackageReference Include="Iesi.Collections" Version="4.0.4" /> | ||
<PackageReference Include="Npgsql" Version="4.0.9" /> | ||
<PackageReference Include="PetaPoco" Version="5.1.306" /> | ||
<PackageReference Include="ServiceStack.OrmLite.SqlServer.Signed" Version="4.5.14" /> | ||
<PackageReference Include="Soma" Version="1.9.0.1" /> | ||
<PackageReference Include="SubSonic" Version="3.0.0.4" /> | ||
<PackageReference Include="Susanoo.SqlServer" Version="1.2.4.2" /> | ||
<PackageReference Include="System.Data.SQLite" Version="1.0.111" /> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Data.Linq" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="NHibernate\*.xml" CopyToOutputDirectory="Always" /> | ||
<Compile Update="Benchmarks.*.cs" DependentUpon="Benchmarks.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Update="SourceLink.Create.GitHub" Version="2.8.3" /> | ||
</ItemGroup> | ||
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" /> | ||
<PropertyGroup> | ||
<WeaveArguments>-p "$(MSBuildThisFileDirectory)$(OutputPath)$(AssemblyName).exe" -t "Dapper.Tests.Performance.Dashing.DashingConfiguration"</WeaveArguments> | ||
</PropertyGroup> | ||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<AssemblyName>Dapper.Tests.Performance</AssemblyName> | ||
<Title>Dapper.Tests.Performance</Title> | ||
<Description>Dapper Core Performance Suite</Description> | ||
<OutputType>Exe</OutputType> | ||
<GenerateDocumentationFile>false</GenerateDocumentationFile> | ||
<TargetFrameworks>net462;netcoreapp3.0</TargetFrameworks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Dapper\Dapper.csproj" /> | ||
<ProjectReference Include="..\Dapper.Contrib\Dapper.Contrib.csproj" /> | ||
<PackageReference Include="Dashing" Version="2.2.0" /> | ||
<PackageReference Include="Belgrade.Sql.Client" Version="1.1.4" /> | ||
<PackageReference Include="BenchmarkDotNet" Version="0.11.5" /> | ||
<PackageReference Include="DevExpress.Xpo" Version="19.1.5" /> | ||
<!--<PackageReference Include="BLToolkit" Version="4.3.6" />--> | ||
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="7.0.0" /> | ||
<PackageReference Include="linq2db.SqlServer" Version="2.9.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.2.6" /> | ||
<PackageReference Include="MySqlConnector" Version="0.56.0" /> | ||
<PackageReference Include="NHibernate" Version="5.2.5" /> | ||
<PackageReference Include="Iesi.Collections" Version="4.0.4" /> | ||
<PackageReference Include="Npgsql" Version="4.0.9" /> | ||
<PackageReference Include="PetaPoco" Version="5.1.306" /> | ||
<PackageReference Include="ServiceStack.OrmLite.SqlServer" Version="5.6.0" /> | ||
<PackageReference Include="System.Data.SQLite" Version="1.0.111" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="NHibernate\*.xml" /> | ||
<Compile Update="Benchmarks.*.cs" DependentUpon="Benchmarks.cs" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'"> | ||
<DefineConstants>$(DefineConstants);NET4X</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net462'"> | ||
<ProjectReference Include="..\Dapper.EntityFramework\Dapper.EntityFramework.csproj" /> | ||
<PackageReference Include="EntityFramework" Version="6.2.0" /> | ||
<PackageReference Include="Microsoft.SqlServer.Types" Version="14.0.1016.290" /> | ||
<PackageReference Include="Soma" Version="1.9.0.1" /> | ||
<PackageReference Include="SubSonic" Version="3.0.0.4" /> | ||
<PackageReference Include="Susanoo.SqlServer" Version="1.2.4.2" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Data.Linq" /> | ||
</ItemGroup> | ||
</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
Oops, something went wrong.