Skip to content

Commit 1d516f9

Browse files
authored
Merge pull request #58 from LeeCampbell/NetStandardSupport
Net standard support
2 parents 3e7ad9d + 792a019 commit 1d516f9

File tree

169 files changed

+978
-2549
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+978
-2549
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
gh-pages
22
Working/
33
build/runbuild.txt
4+
BenchmarkDotNet.Artifacts/
45

56
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
67
[Bb]in/
File renamed without changes.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFrameworks>net47;netcoreapp1.1</TargetFrameworks>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="BenchmarkDotNet" Version="0.10.6" />
10+
</ItemGroup>
11+
12+
<ItemGroup Condition="'$(TargetFramework)' == 'net47'">
13+
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows">
14+
<Version>0.10.6</Version>
15+
</PackageReference>
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<ProjectReference Include="..\HdrHistogram\HdrHistogram.csproj" />
20+
</ItemGroup>
21+
22+
</Project>

0 commit comments

Comments
 (0)