• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

samsmithnz / RepoGovernance / 6871646540

15 Nov 2023 01:19AM UTC coverage: 69.053% (+0.6%) from 68.496%
6871646540

Pull #660

github

web-flow
Merge f76d366d2 into 52b914122
Pull Request #660: Update to .NET 8

217 of 360 branches covered (0.0%)

Branch coverage included in aggregate %.

651 of 897 relevant lines covered (72.58%)

23.15 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/RepoGovernance.Core/Models/NuGetPackages/Package.cs
1
namespace RepoGovernance.Core.Models.NuGetPackages
2
{
3
    public class Package
4
    {
5
        public string id { get; set; }
×
6
        public string requestedVersion { get; set; }
×
7
        public string resolvedVersion { get; set; }
×
8
        public string latestVersion { get; set; }
×
9
        public string[] deprecationReasons { get; set; }
×
10
        public List<Vulnerability> vulnerabilities { get; set; }
×
11
        public string GetFirstVulnerability()
12
        {
×
13
            if (vulnerabilities != null && vulnerabilities.Count > 0)
×
14
            {
×
15
                return vulnerabilities[0].severity;
×
16
            }
17
            return string.Empty;
×
18
        }
×
19
    }
20
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc