Skip to content

Commit d2c4a82

Browse files
authored
Merge pull request #10 from mycsharp/benchmarks
Benchmarks
2 parents a995c8c + 51a13b7 commit d2c4a82

File tree

16 files changed

+184
-430
lines changed

16 files changed

+184
-430
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- main
77
pull_request:
8-
types: [closed]
98
branches:
109
- main
1110

Directory.Build.props

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
<Project>
22
<PropertyGroup>
33
<MinClientVersion>2.12</MinClientVersion>
4-
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
54
<Authors>MyCSharp.de, Benjamin Abt, Günther Foidl and Contributors</Authors>
65
<PackageProjectUrl>https://github.com/mycsharp/HttpUserAgentParser</PackageProjectUrl>
76
<PackageLicenseExpression>MIT</PackageLicenseExpression>
87
<DefaultLanguage>en-US</DefaultLanguage>
9-
<IsTestProject>$(MSBuildProjectName.Contains('Test'))</IsTestProject>
108
<Description>HTTP User Agent Parser for .NET</Description>
119
<NoPackageAnalysis>true</NoPackageAnalysis>
1210
<LangVersion>preview</LangVersion>
1311
<Nullable>enable</Nullable>
1412
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1513
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1614
<DebugType>embedded</DebugType>
15+
<IsTestProject>$(MSBuildProjectName.Contains('Test'))</IsTestProject>
16+
<IsBenchmarkProject>$(MsBuildProjectName.Contains('Benchmark'))</IsBenchmarkProject>
17+
<IsPackable>false</IsPackable>
18+
</PropertyGroup>
19+
20+
<PropertyGroup Condition="'$(IsTestProject)' != 'true' AND '$(IsBenchmarkProject)' != 'true'">
21+
<GenerateDocumentationFile Condition="'$(Configuration)' == 'Release'">true</GenerateDocumentationFile>
1722
</PropertyGroup>
1823
</Project>

perf/MyCSharp.HttpUserAgentParser.Benchmarks/ExternalCode/UserAgentServiceUserAgent.cs

Lines changed: 0 additions & 334 deletions
This file was deleted.

0 commit comments

Comments
 (0)