-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (20 loc) · 967 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
20 lines (20 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageVersion>0.2.0</PackageVersion>
<Authors>Ilkka Lehtoranta</Authors>
<Company>Ilkka Lehtoranta</Company>
<Copyright>Copyright (c) 2026 Ilkka Lehtoranta</Copyright>
<PackageReleaseNotes>Detect method-group-to-delegate conversions in hot paths.</PackageReleaseNotes>
<RepositoryUrl>https://github.com/ilehtoranta/HotPathGuard</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ilehtoranta/HotPathGuard</PackageProjectUrl>
<PackageTags>roslyn;analyzer;performance;allocation;hotpath</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);NU1900</NoWarn>
</PropertyGroup>
</Project>