Skip to content

Commit

Permalink
Fix #182
Browse files Browse the repository at this point in the history
Temporary fix to alleviate errors from dotnet list parsing
  • Loading branch information
digitalcoyote committed Apr 25, 2024
1 parent 82f8f86 commit c88387b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Src/NuGetDefense.Lib/NuGetDefense.Lib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@
<Description>NuGetDefense ~ Check for Known Vulnerabilities at Build</Description>
<PackageDescription>NuGetDefense was inspired by [OWASP SafeNuGet](https://nuget.org/packages/SafeNuGet/) but aims to check with multiple sources for known vulnerabilities.</PackageDescription>
<Copyright>Curtis Carter 2023</Copyright>
<Version>3.2.4.0</Version>
<Version>3.2.5.0</Version>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<None Include="../../README.md" Pack="true" PackagePath="\" />
<PackageReference Include="ByteDev.DotNet" Version="7.2.1" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.3" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.4" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NuGet.Versioning" Version="6.9.1" />
<PackageReference Include="NuGetDefense.Core" Version="2.0.8" />
<PackageReference Include="NuGetDefense.Core" Version="2.0.8.2" />
<PackageReference Include="NuGetDefense.GitHubAdvisoryDatabase" Version="2.0.6" />
<PackageReference Include="NuGetDefense.NVD" Version="2.1.1" />
<PackageReference Include="NuGetDefense.OSSIndex" Version="2.1.3" />
Expand Down
2 changes: 1 addition & 1 deletion Src/NuGetDefense.Lib/Scanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace NuGetDefense;

public class Scanner
{
public const string Version = "3.2.4.0";
public const string Version = "3.2.5.0";
public const string UserAgentString = @$"NuGetDefense/{Version}";
public const string DefaultSettingsFileName = "NuGetDefense.json";
public const string DefaultVulnerabilityDataFileName = "VulnerabilityData.bin";
Expand Down
6 changes: 3 additions & 3 deletions Src/NuGetDefense/NuGetDefense.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Nullable>enable</Nullable>
<AssemblyVersion>3.2.4.0</AssemblyVersion>
<FileVersion>3.2.4.0</FileVersion>
<AssemblyVersion>3.2.5.0</AssemblyVersion>
<FileVersion>3.2.5.0</FileVersion>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand All @@ -37,7 +37,7 @@
<PackageId>NuGetDefense.Tool</PackageId>
<PackAsTool>true</PackAsTool>
<ToolCommandName>nugetdefense</ToolCommandName>
<Version>3.2.4.0</Version>
<Version>3.2.5.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Src/NuGetDefense/NuGetDefense.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>NuGetDefense</id>
<title>NuGetDefense</title>
<version>3.2.4.0</version>
<version>3.2.5.0</version>
<authors>Curtis Carter</authors>
<owners>Curtis Carter</owners>
<projectUrl>https://digitalcoyote.github.io/NuGetDefense/</projectUrl>
Expand All @@ -12,7 +12,7 @@
<description>
vulnerabilities.
</description>
<releaseNotes>https://github.com/digitalcoyote/NuGetDefense/releases/tag/v3.2.4.0</releaseNotes>
<releaseNotes>https://github.com/digitalcoyote/NuGetDefense/releases/tag/v3.2.5.0</releaseNotes>
<repository type="git" url="https://github.com/digitalcoyote/NuGetDefense.git"/>
<license type="expression">MIT</license>
<icon>images\icon.png</icon>
Expand Down

0 comments on commit c88387b

Please sign in to comment.