forked from Aaronontheweb/dotnet-slopwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
41 lines (40 loc) · 2.03 KB
/
Copy pathDirectory.Build.props
File metadata and controls
41 lines (40 loc) · 2.03 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
<Project>
<PropertyGroup>
<Copyright>Copyright © 2025-$([System.DateTime]::Now.Year) Aaron Stannard</Copyright>
<Authors>Aaron Stannard</Authors>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<VersionPrefix>0.4.0</VersionPrefix>
<PackageReleaseNotes>**Bug Fixes:**
* `--config` flag now properly loads custom suppression configurations during analysis - the option was previously documented but not wired into the analysis pipeline (PR #71)
* Hook mode now falls back to full file analysis when `git status` is unavailable (e.g., outside a git repository), instead of silently returning no results (PR #71)
**Documentation:**
* Updated README examples to reflect correct `.slopwatch/config.json` schema, SW006 severity levels, and local tool installation instructions (PR #71)</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<!-- Target framework versions -->
<NetCoreVersion>net8.0</NetCoreVersion>
<NetCoreTestVersion>net8.0</NetCoreTestVersion>
</PropertyGroup>
<!-- GitHub SourceLink -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<!-- NuGet package properties -->
<PropertyGroup>
<PackageTags>slopwatch;llm;code-quality;linter;dotnet-tool;ai-safety</PackageTags>
<PackageProjectUrl>https://github.com/Aaronontheweb/dotnet-slopwatch</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\README.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)\images\logo.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>