-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
34 lines (30 loc) · 1.1 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>0.9.0</VersionPrefix>
<RepositoryUrl>https://github.com/Ne4to/Heartbeat</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Alexey Sosnin</Authors>
<PackageTags>ClrMd diagnostics</PackageTags>
<Description>Diagnostics utility with web UI to analyze .NET application memory dump</Description>
</PropertyGroup>
<PropertyGroup>
<Configurations>Debug;Release;DebugOpenAPI;ReleaseAOT</Configurations>
</PropertyGroup>
<PropertyGroup>
<!--<EnableNETAnalyzers>true</EnableNETAnalyzers>-->
<!--<AnalysisLevel>6.0-all</AnalysisLevel>
<AnalysisMode>all</AnalysisMode>-->
<NoWarn>CA1848,CA2254</NoWarn>
</PropertyGroup>
<!--<PropertyGroup>
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
</PropertyGroup>-->
</Project>