-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBenchmarkDotNetVisualizer.csproj
More file actions
72 lines (65 loc) · 3.33 KB
/
BenchmarkDotNetVisualizer.csproj
File metadata and controls
72 lines (65 loc) · 3.33 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;<!--netcoreapp3.0;netcoreapp3.1;net5.0;-->net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AssemblyName>BenchmarkDotNetVisualizer</AssemblyName>
<PackageId>BenchmarkDotNetVisualizer</PackageId>
<Title>BenchmarkDotNetVisualizer</Title>
<Product>BenchmarkDotNetVisualizer</Product>
<Version>2.1.0</Version>
<PackageVersion>2.1.0</PackageVersion>
<AssemblyVersion>2.1.0</AssemblyVersion>
<Authors>Mohammad Javad Ebrahimi</Authors>
<Company>Mohammad Javad Ebrahimi</Company>
<Copyright>Copyright © Mohammad Javad Ebrahimi 2025</Copyright>
<Description>
Visualizes your BenchmarkDotNet benchmarks to colorful images, feature-rich HTML, and customizable markdown files (and maybe powerful charts in the future!)
</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>BenchmarkDotNet Benchmark Benchmarking Exporter Visualizer Visualization</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/mjebrahimi/BenchmarkDotNetVisualizer</PackageProjectUrl>
<RepositoryUrl>https://github.com/mjebrahimi/BenchmarkDotNetVisualizer</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageIcon>package-icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) -->
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<Compile Remove="DataProcessor.T.cs" />
<Compile Remove="Utilities\EnumerableExtensions.Orderer.T.cs" />
<Compile Remove="Utilities\FileLockHunter.cs" />
<Compile Remove="Utilities\HtmlHelper.T.cs" />
<Compile Remove="Utilities\MarkdownHelper.T.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<!--<PackageReference Include="NuGetizer" Version="1.2.0" PrivateAssets="all" />-->
<PackageReference Include="BenchmarkDotNet" Version="0.15.2" />
<PackageReference Include="DeepCloner" Version="0.10.4" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'!='netstandard2.1'">
<PackageReference Include="PuppeteerSharp" Version="20.2.2" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.1'">
<PackageReference Include="PuppeteerSharp" Version="[18.1.0]" />
<PackageReference Include="SixLabors.ImageSharp" Version="[2.1.11]" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="package-icon.png" Pack="true" PackagePath="" />
<None Include="$(SolutionDir)\README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>