diff --git a/src/NuGetUtility/LicenseValidator/LicenseInformationOrigin.cs b/src/NuGetUtility/LicenseValidator/LicenseInformationOrigin.cs index a2fab825..1ca436e2 100644 --- a/src/NuGetUtility/LicenseValidator/LicenseInformationOrigin.cs +++ b/src/NuGetUtility/LicenseValidator/LicenseInformationOrigin.cs @@ -2,6 +2,7 @@ { public enum LicenseInformationOrigin { + Overwrite, Expression, Url, Unknown, diff --git a/src/NuGetUtility/LicenseValidator/LicenseValidator.cs b/src/NuGetUtility/LicenseValidator/LicenseValidator.cs index d35777b8..07605458 100644 --- a/src/NuGetUtility/LicenseValidator/LicenseValidator.cs +++ b/src/NuGetUtility/LicenseValidator/LicenseValidator.cs @@ -59,7 +59,7 @@ public async Task> Validate( private bool IsIgnoredPackage(PackageIdentity identity) { - return _ignoredPackages.Any(ignored => identity.Id.Like(ignored)); + return Array.Exists(_ignoredPackages, ignored => identity.Id.Like(ignored)); } private void AddOrUpdateLicense( @@ -123,19 +123,20 @@ private void ValidateLicenseByMetadata(IPackageMetadata info, switch (info.LicenseMetadata!.Type) { case LicenseType.Expression: + case LicenseType.Overwrite: string licenseId = info.LicenseMetadata!.License; if (IsLicenseValid(licenseId)) { AddOrUpdateLicense(result, info, - LicenseInformationOrigin.Expression, + ToLicenseOrigin(info.LicenseMetadata.Type), info.LicenseMetadata.License); } else { AddOrUpdateLicense(result, info, - LicenseInformationOrigin.Expression, + ToLicenseOrigin(info.LicenseMetadata.Type), new ValidationError(GetLicenseNotAllowedMessage(info.LicenseMetadata.License), context), info.LicenseMetadata.License); } @@ -227,6 +228,13 @@ private string GetLicenseNotAllowedMessage(string license) return $"License {license} not found in list of supported licenses"; } - private record LicenseNameAndVersion(string LicenseName, INuGetVersion Version); + private LicenseInformationOrigin ToLicenseOrigin(LicenseType type) => type switch + { + LicenseType.Overwrite => LicenseInformationOrigin.Overwrite, + LicenseType.Expression => LicenseInformationOrigin.Expression, + _ => throw new ArgumentOutOfRangeException(nameof(type), type, $"This conversion method only supports the {nameof(LicenseType.Overwrite)} and {nameof(LicenseType.Expression)} types for conversion") + }; + + private sealed record LicenseNameAndVersion(string LicenseName, INuGetVersion Version); } } diff --git a/src/NuGetUtility/PackageInformationReader/PackageInformationReader.cs b/src/NuGetUtility/PackageInformationReader/PackageInformationReader.cs index 9247a89b..9e1ad899 100644 --- a/src/NuGetUtility/PackageInformationReader/PackageInformationReader.cs +++ b/src/NuGetUtility/PackageInformationReader/PackageInformationReader.cs @@ -92,7 +92,7 @@ private PackageSearchResult TryGetPackageInfoFromCustomInformation(PackageIdenti return new PackageSearchResult(); } - return new PackageSearchResult(new PackageMetadata(package, resolvedCustomInformation.License)); + return new PackageSearchResult(new PackageMetadata(package, resolvedCustomInformation.License, LicenseType.Overwrite)); } private static async Task TryGetPackageMetadataResource(ISourceRepository repository) diff --git a/src/NuGetUtility/PackageInformationReader/PackageMetadata.cs b/src/NuGetUtility/PackageInformationReader/PackageMetadata.cs index 718e89c7..7c9f3769 100644 --- a/src/NuGetUtility/PackageInformationReader/PackageMetadata.cs +++ b/src/NuGetUtility/PackageInformationReader/PackageMetadata.cs @@ -10,10 +10,10 @@ public PackageMetadata(PackageIdentity identity) Identity = identity; } - public PackageMetadata(PackageIdentity identity, string licenseType) + public PackageMetadata(PackageIdentity identity, string licenseIdentifier, LicenseType licenseType) { Identity = identity; - LicenseMetadata = new LicenseMetadata(LicenseType.Expression, licenseType); + LicenseMetadata = new LicenseMetadata(licenseType, licenseIdentifier); } public PackageIdentity Identity { get; } diff --git a/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/LicenseType.cs b/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/LicenseType.cs index 09aedbcb..7d99eab2 100644 --- a/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/LicenseType.cs +++ b/src/NuGetUtility/Wrapper/NuGetWrapper/Packaging/LicenseType.cs @@ -3,6 +3,7 @@ namespace NuGetUtility.Wrapper.NuGetWrapper.Packaging public enum LicenseType { File, - Expression + Expression, + Overwrite } } diff --git a/tests/NuGetUtility.Test/LicenseValidator/LicenseValidatorTest.cs b/tests/NuGetUtility.Test/LicenseValidator/LicenseValidatorTest.cs index 3d9aee22..1fabbc4f 100644 --- a/tests/NuGetUtility.Test/LicenseValidator/LicenseValidatorTest.cs +++ b/tests/NuGetUtility.Test/LicenseValidator/LicenseValidatorTest.cs @@ -67,13 +67,20 @@ private IPackageMetadata SetupPackageWithLicenseInformationOfType(string package return packageInfo; } - private IPackageMetadata SetupPackageWithProperLicenseInformation(string packageId, + private IPackageMetadata SetupPackageWithExpressionLicenseInformation(string packageId, INuGetVersion packageVersion, string license) { return SetupPackageWithLicenseInformationOfType(packageId, packageVersion, license, LicenseType.Expression); } + private IPackageMetadata SetupPackageWithOverwriteLicenseInformation(string packageId, + INuGetVersion packageVersion, + string license) + { + return SetupPackageWithLicenseInformationOfType(packageId, packageVersion, license, LicenseType.Overwrite); + } + private static IAsyncEnumerable CreateInput(IPackageMetadata metadata, string context) { @@ -119,7 +126,7 @@ public async Task ValidatingLicenses_Should_NotIgnorePackage_If_PackageNameDoesN _fileDownloader, _ignoredLicenses.Append(packageId.Substring(1)).ToArray()); - IPackageMetadata package = SetupPackageWithProperLicenseInformation(packageId, packageVersion, license); + IPackageMetadata package = SetupPackageWithExpressionLicenseInformation(packageId, packageVersion, license); IEnumerable result = await _uut.Validate(LicenseValidatorTest.CreateInput(package, _context)); @@ -255,7 +262,7 @@ public async Task ValidatingLicenses_Should_IgnorePackage_If_IgnoreWildcardMatch [Test] [ExtendedAutoData(typeof(NuGetVersionBuilder))] - public async Task ValidatingLicensesWithProperLicenseInformation_Should_GiveCorrectValidatedLicenseList( + public async Task ValidatingLicensesWithExpressionLicenseInformation_Should_GiveCorrectValidatedLicenseList( string packageId, INuGetVersion packageVersion, string license) @@ -265,7 +272,7 @@ public async Task ValidatingLicensesWithProperLicenseInformation_Should_GiveCorr _fileDownloader, _ignoredLicenses); - IPackageMetadata package = SetupPackageWithProperLicenseInformation(packageId, packageVersion, license); + IPackageMetadata package = SetupPackageWithExpressionLicenseInformation(packageId, packageVersion, license); IEnumerable result = await _uut.Validate(LicenseValidatorTest.CreateInput(package, _context)); @@ -281,6 +288,34 @@ public async Task ValidatingLicensesWithProperLicenseInformation_Should_GiveCorr .Using(new LicenseValidationResultValueEqualityComparer())); } + [Test] + [ExtendedAutoData(typeof(NuGetVersionBuilder))] + public async Task ValidatingLicensesWithOverwriteLicenseInformation_Should_GiveCorrectValidatedLicenseList( + string packageId, + INuGetVersion packageVersion, + string license) + { + _uut = new NuGetUtility.LicenseValidator.LicenseValidator(_licenseMapping, + Array.Empty(), + _fileDownloader, + _ignoredLicenses); + + IPackageMetadata package = SetupPackageWithOverwriteLicenseInformation(packageId, packageVersion, license); + + IEnumerable result = await _uut.Validate(LicenseValidatorTest.CreateInput(package, _context)); + + Assert.That(result, + Is.EquivalentTo(new[] + { + new LicenseValidationResult(packageId, + packageVersion, + _projectUrl.ToString(), + license, + LicenseInformationOrigin.Overwrite) + }) + .Using(new LicenseValidationResultValueEqualityComparer())); + } + private IPackageMetadata SetupPackageWithLicenseUrl(string packageId, INuGetVersion packageVersion, Uri url) @@ -348,7 +383,7 @@ public async Task ValidatingLicensesWithMatchingLicenseUrl_Should_GiveCorrectVal [Test] public async Task ValidatingLicensesWithNotSupportedLicenseMetadata_Should_GiveCorrectResult( - [EnumValuesExcept(LicenseType.Expression)] LicenseType licenseType) + [EnumValuesExcept(LicenseType.Expression, LicenseType.Overwrite)] LicenseType licenseType) { var fixture = new Fixture(); fixture.Customizations.Add(new NuGetVersionBuilder()); @@ -416,12 +451,12 @@ public async Task ValidatingLicensesWithoutLicenseInformation_Should_GiveCorrect [Test] [ExtendedAutoData(typeof(NuGetVersionBuilder))] - public async Task ValidatingLicensesWithProperLicenseInformation_Should_GiveCorrectResult_If_NotAllowed( + public async Task ValidatingLicensesWithExpressionLicenseInformation_Should_GiveCorrectResult_If_NotAllowed( string packageId, INuGetVersion packageVersion, string license) { - IPackageMetadata package = SetupPackageWithProperLicenseInformation(packageId, packageVersion, license); + IPackageMetadata package = SetupPackageWithExpressionLicenseInformation(packageId, packageVersion, license); IEnumerable result = await _uut.Validate(LicenseValidatorTest.CreateInput(package, _context)); @@ -444,12 +479,40 @@ public async Task ValidatingLicensesWithProperLicenseInformation_Should_GiveCorr [Test] [ExtendedAutoData(typeof(NuGetVersionBuilder))] - public async Task ValidatingLicensesWithProperLicenseInformation_Should_GiveCorrectResult_If_Allowed( + public async Task ValidatingLicensesWithOverwriteLicenseInformation_Should_GiveCorrectResult_If_NotAllowed( + string packageId, + INuGetVersion packageVersion, + string license) + { + IPackageMetadata package = SetupPackageWithOverwriteLicenseInformation(packageId, packageVersion, license); + + IEnumerable result = await _uut.Validate(LicenseValidatorTest.CreateInput(package, _context)); + + Assert.That(result, + Is.EquivalentTo(new[] + { + new LicenseValidationResult(packageId, + packageVersion, + _projectUrl.ToString(), + license, + LicenseInformationOrigin.Overwrite, + new List + { + new ValidationError($"License {license} not found in list of supported licenses", + _context) + }) + }) + .Using(new LicenseValidationResultValueEqualityComparer())); + } + + [Test] + [ExtendedAutoData(typeof(NuGetVersionBuilder))] + public async Task ValidatingLicensesWithExpressionLicenseInformation_Should_GiveCorrectResult_If_Allowed( string packageId, INuGetVersion packageVersion) { string validLicense = _allowedLicenses.Shuffle(135643).First(); - IPackageMetadata package = SetupPackageWithProperLicenseInformation(packageId, packageVersion, validLicense); + IPackageMetadata package = SetupPackageWithExpressionLicenseInformation(packageId, packageVersion, validLicense); IEnumerable result = await _uut.Validate(LicenseValidatorTest.CreateInput(package, _context)); @@ -465,6 +528,29 @@ public async Task ValidatingLicensesWithProperLicenseInformation_Should_GiveCorr .Using(new LicenseValidationResultValueEqualityComparer())); } + [Test] + [ExtendedAutoData(typeof(NuGetVersionBuilder))] + public async Task ValidatingLicensesWithOverwriteLicenseInformation_Should_GiveCorrectResult_If_Allowed( + string packageId, + INuGetVersion packageVersion) + { + string validLicense = _allowedLicenses.Shuffle(135643).First(); + IPackageMetadata package = SetupPackageWithOverwriteLicenseInformation(packageId, packageVersion, validLicense); + + IEnumerable result = await _uut.Validate(LicenseValidatorTest.CreateInput(package, _context)); + + Assert.That(result, + Is.EquivalentTo(new[] + { + new LicenseValidationResult(packageId, + packageVersion, + _projectUrl.ToString(), + validLicense, + LicenseInformationOrigin.Overwrite) + }) + .Using(new LicenseValidationResultValueEqualityComparer())); + } + [Test] [ExtendedAutoData(typeof(NuGetVersionBuilder))] public async Task ValidatingLicensesWithMatchingUrlInformation_Should_GiveCorrectResult_If_NotAllowed( diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index c80e522d..43cee324 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index 7aac02c2..8af9394e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 1337488a..7a13dc83 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt index e672cbf4..0be54a5b 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt @@ -1 +1 @@ -[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":3},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":3},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":3},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":3},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":3},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":3},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":3},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":3},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":3},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":4},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":4},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":4},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":4},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":4},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":4},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":4},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":4},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":4},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":4},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":4},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":4},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index 341ea960..7407f31b 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":3},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":3},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":3},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":3},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":3},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":3},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":3},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":3},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":3},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":4},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":4},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":4},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":4},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":4},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":4},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":4},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":4},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":4},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":4},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":4},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index c49ee6ea..a6a4ce73 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":3},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":3},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":3},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":3},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":3},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":3}] \ No newline at end of file +[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":4},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":4},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":4},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":4},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":4},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":4},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":4},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":4},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":4},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":4},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":4}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index e8d8ecbe..d85c7559 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":3},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":3},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":3},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":3},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":3},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":3},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":3},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":3},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":3},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":3},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":3},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":4},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":4},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":4},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":4},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":4},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":4},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":4},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":4},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":4},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":4},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":4},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":4},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index 645ea014..c652d341 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index 287c5052..b09ba98a 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index b0677baa..e3180687 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt index e2d2de89..947d80bb 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt @@ -1 +1 @@ -[{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index 17a4a029..c4129c0d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index c2051638..aff6f74d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3}] \ No newline at end of file +[{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index f6c10107..6ff5a128 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt index b66dd907..9af9336f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt @@ -1 +1 @@ -[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3}] \ No newline at end of file +[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index d06958d0..3b804f4e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3}] \ No newline at end of file +[{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index 9c99fdf1..f7e40923 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index 2f980aef..5f09a371 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 00511e32..4694389e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1 +1 @@ -[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":3},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":3},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":3},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":3},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":3},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":3},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":3},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":3},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":3},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":3},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":4},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":4},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":4},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":4},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":4},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":4},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":4},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":4},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":4},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":4},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":4},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":4},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index 0c10a46c..c8e591a9 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index 75d7d2ea..c0de5298 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index 1d304c3c..99147a5f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index 7aac02c2..8af9394e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 1337488a..7a13dc83 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt index 05f26ad5..d2e3798b 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt @@ -1 +1 @@ -[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index 91b6b7b4..ffbb11dd 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index 858d72c7..905a624c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 5a197c42..5d36124b 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt index 739f3790..48fa5577 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index 8e59b8b7..c12a43c6 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index 43c005f8..b09ba98a 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index e3aeb676..e3180687 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt index 81053a68..1c311ded 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt @@ -1 +1 @@ -[{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index 69ccea6e..b8634b11 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index 581c898e..3aad65c2 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index 7139e39a..a920b864 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt index 2b88d1dc..090e5cb1 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt @@ -1 +1 @@ -[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index 608d6830..c1d307a8 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index a448e4e8..373280e1 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index 9e5538d8..b966fb6b 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt index ad47dbb9..f0ef82d3 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt @@ -1 +1 @@ -[] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 8ce5adbc..f891db8c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1 +1 @@ -[{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index ef46d759..b922d775 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index 07b62dde..63e67c5f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index c80e522d..43cee324 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index 7aac02c2..8af9394e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 1337488a..7a13dc83 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index 13dc79af..d9ef8cf9 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index fe46fee6..720f6ece 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 085ffced..172cef3c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index db129b05..0fa79d7e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index 43c005f8..7d72f58d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index e3aeb676..d38a3f45 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index ecb52d1f..6d066d11 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index 43c005f8..7d72f58d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index d27f209c..ae50b15c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index e92a0a3b..c58cec17 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index fe46fee6..720f6ece 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index d9102064..c1e6fd40 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 00511e32..4694389e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1 +1 @@ -[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":3},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":3},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":3},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":3},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":3},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":3},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":3},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":3},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":3},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":3},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Customer Group Manager","PackageVersion":"8.0.4","PackageProjectUrl":"https://luisa.biz","License":"The RAM panel is down, transmit the online panel so we can transmit the RAM panel!","LicenseInformationOrigin":4},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"District Metrics Analyst","PackageVersion":"4.6.0","PackageProjectUrl":"http://nathaniel.name","License":"overriding the interface won\u0027t do anything, we need to connect the digital GB interface!","LicenseInformationOrigin":4},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Regional Accountability Assistant","PackageVersion":"2.7.5","PackageProjectUrl":"http://barney.com","License":"You can\u0027t program the alarm without overriding the cross-platform RSS alarm!","LicenseInformationOrigin":4},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Product Infrastructure Orchestrator","PackageVersion":"5.0.6","PackageProjectUrl":"http://forrest.com","License":"If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!","LicenseInformationOrigin":4},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"District Directives Analyst","PackageVersion":"9.3.0","PackageProjectUrl":"http://bridie.biz","License":"Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!","LicenseInformationOrigin":4},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Human Optimization Director","PackageVersion":"0.1.8","PackageProjectUrl":"https://crystal.info","License":"We need to transmit the back-end PCI panel!","LicenseInformationOrigin":4},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Product Intranet Assistant","PackageVersion":"2.8.1","PackageProjectUrl":"https://chance.name","License":"You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Product Security Developer","PackageVersion":"4.4.5","PackageProjectUrl":"https://maida.org","License":"parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!","LicenseInformationOrigin":4},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Brand Officer","PackageVersion":"1.1.5","PackageProjectUrl":"https://shayne.name","License":"If we transmit the application, we can get to the SAS application through the wireless SAS application!","LicenseInformationOrigin":4},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Direct Group Consultant","PackageVersion":"8.8.0","PackageProjectUrl":"https://alana.org","License":"I\u0027ll index the neural SDD bus, that should bus the SDD bus!","LicenseInformationOrigin":4},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Customer Applications Developer","PackageVersion":"5.6.1","PackageProjectUrl":"http://kiley.org","License":"We need to connect the bluetooth RAM application!","LicenseInformationOrigin":4},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Direct Research Assistant","PackageVersion":"5.9.7","PackageProjectUrl":"http://danial.org","License":"Try to connect the TCP circuit, maybe it will connect the back-end circuit!","LicenseInformationOrigin":4},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Implementation Assistant","PackageVersion":"2.1.6","PackageProjectUrl":"https://liana.net","License":"Use the auxiliary RSS sensor, then you can program the auxiliary sensor!","LicenseInformationOrigin":4},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index 0c10a46c..c8e591a9 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":3},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":3},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Program Administrator","PackageVersion":"9.8.6","PackageProjectUrl":"https://malcolm.net","License":"I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!","LicenseInformationOrigin":4},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Internal Operations Executive","PackageVersion":"1.8.1","PackageProjectUrl":"http://angel.info","License":"We need to back up the solid state XML application!","LicenseInformationOrigin":4},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"National Tactics Architect","PackageVersion":"6.7.8","PackageProjectUrl":"https://valentina.net","License":"The PNG protocol is down, index the digital protocol so we can index the PNG protocol!","LicenseInformationOrigin":4},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index 75d7d2ea..c0de5298 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":3},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Principal Markets Executive","PackageVersion":"4.2.2","PackageProjectUrl":"https://bettie.com","License":"Try to generate the EXE array, maybe it will generate the mobile array!","LicenseInformationOrigin":4},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index c80e522d..43cee324 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index 7aac02c2..8af9394e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 1337488a..7a13dc83 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index 13dc79af..d9ef8cf9 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index fe46fee6..720f6ece 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 085ffced..172cef3c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index db129b05..0fa79d7e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index 43c005f8..7d72f58d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index e3aeb676..d38a3f45 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index ecb52d1f..6d066d11 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index 43c005f8..7d72f58d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index d27f209c..ae50b15c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index e92a0a3b..c58cec17 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":3},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":3},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":3},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":3}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"National Accounts Liaison","PackageVersion":"7.2.6","ValidationErrors":[{"Error":"Cedrick","Context":"https://zachariah.net"},{"Error":"Marcelle","Context":"https://adah.org"},{"Error":"Barney","Context":"http://erica.org"}],"LicenseInformationOrigin":4},{"PackageId":"Global Response Associate","PackageVersion":"1.9.8","ValidationErrors":[{"Error":"Sandra","Context":"http://antonina.com"},{"Error":"Willow","Context":"https://jason.org"},{"Error":"Orland","Context":"http://rigoberto.com"},{"Error":"Laney","Context":"http://eryn.org"},{"Error":"Amari","Context":"http://viviane.net"},{"Error":"Kelley","Context":"http://doris.net"},{"Error":"Kennedy","Context":"https://milo.net"}],"License":"The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!","LicenseInformationOrigin":4},{"PackageId":"Legacy Creative Liaison","PackageVersion":"0.4.6","ValidationErrors":[{"Error":"Mervin","Context":"http://celestine.info"},{"Error":"Amalia","Context":"https://shanelle.info"},{"Error":"Sheila","Context":"http://darrell.info"},{"Error":"Alec","Context":"https://candice.biz"},{"Error":"Linnea","Context":"http://everardo.info"},{"Error":"Daryl","Context":"https://jerrod.com"},{"Error":"Laila","Context":"http://caleigh.net"},{"Error":"Adolfo","Context":"http://daisha.biz"}],"LicenseInformationOrigin":4},{"PackageId":"Lead Intranet Officer","PackageVersion":"6.4.9","ValidationErrors":[{"Error":"Margaret","Context":"https://michaela.name"},{"Error":"Jody","Context":"http://jakob.org"},{"Error":"Anjali","Context":"https://valentin.info"}],"LicenseInformationOrigin":1},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"Human Usability Specialist","PackageVersion":"3.2.8","PackageProjectUrl":"http://micah.info","ValidationErrors":[{"Error":"Evalyn","Context":"https://myrtis.name"},{"Error":"Ursula","Context":"https://werner.net"},{"Error":"Linwood","Context":"http://rebekah.org"},{"Error":"Cleve","Context":"https://claudie.net"},{"Error":"Theodora","Context":"http://faye.info"}],"LicenseInformationOrigin":0},{"PackageId":"International Integration Orchestrator","PackageVersion":"5.4.5","ValidationErrors":[{"Error":"Steve","Context":"http://lon.org"},{"Error":"Braeden","Context":"https://sunny.name"},{"Error":"Leslie","Context":"http://bettie.info"},{"Error":"Edmund","Context":"http://sadie.info"},{"Error":"Horacio","Context":"https://loraine.name"}],"LicenseInformationOrigin":0},{"PackageId":"Global Branding Associate","PackageVersion":"0.5.9","PackageProjectUrl":"http://cory.com","ValidationErrors":[{"Error":"Suzanne","Context":"http://ima.name"},{"Error":"Earnestine","Context":"http://nathanial.biz"},{"Error":"Connor","Context":"https://augustus.net"},{"Error":"Araceli","Context":"http://hailey.biz"},{"Error":"Janessa","Context":"https://craig.com"},{"Error":"Erica","Context":"http://kristin.org"},{"Error":"Alek","Context":"http://shany.biz"}],"License":"If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!","LicenseInformationOrigin":0},{"PackageId":"Lead Markets Designer","PackageVersion":"2.8.4","PackageProjectUrl":"https://amara.info","ValidationErrors":[{"Error":"Seamus","Context":"http://maybell.info"},{"Error":"Monserrat","Context":"http://katrine.name"},{"Error":"Abel","Context":"https://geovany.com"},{"Error":"Diana","Context":"http://eula.name"},{"Error":"Raphael","Context":"https://zackery.info"}],"LicenseInformationOrigin":2},{"PackageId":"Corporate Tactics Analyst","PackageVersion":"3.0.8","ValidationErrors":[{"Error":"Bill","Context":"http://jairo.net"},{"Error":"Clemmie","Context":"http://shanny.net"},{"Error":"Hildegard","Context":"http://conner.name"},{"Error":"Isabella","Context":"https://kennith.com"},{"Error":"Johanna","Context":"https://ara.org"},{"Error":"Demarco","Context":"https://rae.biz"},{"Error":"Viviane","Context":"http://christine.info"}],"License":"If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus!","LicenseInformationOrigin":2},{"PackageId":"Global Optimization Representative","PackageVersion":"8.2.6","ValidationErrors":[{"Error":"Brandi","Context":"https://aniyah.com"},{"Error":"Tyson","Context":"https://bonita.org"},{"Error":"Jazlyn","Context":"http://madonna.net"},{"Error":"Deangelo","Context":"https://jess.info"},{"Error":"Alvah","Context":"https://hans.net"},{"Error":"Payton","Context":"http://shanna.name"},{"Error":"Providenci","Context":"https://tyra.org"},{"Error":"Flo","Context":"http://isidro.net"},{"Error":"Dawn","Context":"https://anika.org"},{"Error":"Silas","Context":"http://zane.name"}],"LicenseInformationOrigin":2},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Investor Research Facilitator","PackageVersion":"5.7.5","ValidationErrors":[{"Error":"Avery","Context":"http://jarret.biz"},{"Error":"Clarissa","Context":"https://audreanne.name"},{"Error":"Vida","Context":"https://theresia.biz"},{"Error":"Ransom","Context":"http://isom.com"},{"Error":"Anastasia","Context":"http://kamryn.info"},{"Error":"Marlene","Context":"https://cyril.name"},{"Error":"Zetta","Context":"http://pete.org"},{"Error":"Candida","Context":"https://craig.biz"},{"Error":"Timmothy","Context":"https://joanny.biz"},{"Error":"Alfonzo","Context":"http://dorothea.org"}],"LicenseInformationOrigin":0},{"PackageId":"Customer Program Technician","PackageVersion":"1.7.7","ValidationErrors":[{"Error":"Keely","Context":"http://obie.org"},{"Error":"Caleigh","Context":"https://albin.info"},{"Error":"Flavie","Context":"http://lavonne.biz"},{"Error":"Kaitlyn","Context":"http://osborne.org"},{"Error":"Joesph","Context":"https://michael.name"},{"Error":"Kali","Context":"http://shyanne.net"},{"Error":"Austin","Context":"https://marty.net"},{"Error":"Theresia","Context":"http://kristin.net"},{"Error":"Lester","Context":"https://paige.com"}],"LicenseInformationOrigin":1},{"PackageId":"Direct Accounts Associate","PackageVersion":"3.2.6","PackageProjectUrl":"https://vesta.com","ValidationErrors":[{"Error":"Buck","Context":"http://taryn.com"},{"Error":"Hilton","Context":"http://isabel.com"},{"Error":"Rogers","Context":"https://bertrand.biz"},{"Error":"Annetta","Context":"https://remington.org"},{"Error":"Efrain","Context":"http://davion.org"},{"Error":"Merle","Context":"https://abigayle.org"},{"Error":"Jerod","Context":"https://vicenta.info"},{"Error":"Kayli","Context":"https://shaun.net"},{"Error":"Antwan","Context":"https://hazel.net"}],"LicenseInformationOrigin":4},{"PackageId":"Legacy Optimization Orchestrator","PackageVersion":"2.4.2","ValidationErrors":[{"Error":"Damien","Context":"https://edyth.com"},{"Error":"Princess","Context":"http://haylie.biz"},{"Error":"Jordane","Context":"https://gregorio.com"},{"Error":"Opal","Context":"http://abbie.org"},{"Error":"Pablo","Context":"https://maxime.biz"},{"Error":"Shaun","Context":"https://concepcion.net"},{"Error":"Moises","Context":"http://rupert.info"}],"License":"If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Marketing Consultant","PackageVersion":"2.4.9","ValidationErrors":[{"Error":"Angie","Context":"https://ardella.info"},{"Error":"Melissa","Context":"https://sandra.biz"},{"Error":"Pearline","Context":"https://noble.net"},{"Error":"Dusty","Context":"https://verlie.com"}],"LicenseInformationOrigin":4}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index fe46fee6..720f6ece 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index d9102064..c1e6fd40 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":1},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":2},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Principal Functionality Agent","PackageVersion":"1.5.3","ValidationErrors":[{"Error":"Judson","Context":"https://wilson.net"},{"Error":"Guadalupe","Context":"http://otho.info"},{"Error":"General","Context":"https://skylar.name"},{"Error":"Haylie","Context":"http://audreanne.info"}],"License":"connecting the firewall won\u0027t do anything, we need to copy the digital XSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Direct Intranet Facilitator","PackageVersion":"7.1.7","PackageProjectUrl":"https://garnet.net","ValidationErrors":[{"Error":"Alisha","Context":"http://alyson.name"},{"Error":"Carmelo","Context":"http://michele.name"},{"Error":"Miles","Context":"https://freddie.com"},{"Error":"Kade","Context":"https://jaunita.biz"},{"Error":"Marcelina","Context":"http://donna.net"},{"Error":"Darby","Context":"http://joana.org"},{"Error":"Albin","Context":"http://hal.com"},{"Error":"Betsy","Context":"http://quinton.com"},{"Error":"Emmalee","Context":"https://haleigh.name"}],"License":"synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!","LicenseInformationOrigin":2},{"PackageId":"Senior Brand Developer","PackageVersion":"4.4.1","PackageProjectUrl":"http://adelbert.net","ValidationErrors":[{"Error":"Reid","Context":"https://amely.info"},{"Error":"Nikki","Context":"https://mckayla.info"},{"Error":"Kiara","Context":"https://floyd.net"},{"Error":"Libby","Context":"http://wade.biz"},{"Error":"Leola","Context":"https://pietro.info"},{"Error":"Arch","Context":"http://hazle.org"},{"Error":"Eldred","Context":"http://gabriel.net"}],"License":"If we override the system, we can get to the CSS system through the neural CSS system!","LicenseInformationOrigin":3},{"PackageId":"Regional Accounts Technician","PackageVersion":"2.8.7","ValidationErrors":[{"Error":"Dawson","Context":"http://addie.org"},{"Error":"Xander","Context":"https://everette.info"},{"Error":"Otha","Context":"https://cletus.net"},{"Error":"Carlee","Context":"https://jaron.info"},{"Error":"Nannie","Context":"https://isaias.net"}],"LicenseInformationOrigin":0},{"PackageId":"National Solutions Coordinator","PackageVersion":"8.7.3","PackageProjectUrl":"https://adrianna.name","ValidationErrors":[{"Error":"Maximillian","Context":"http://leola.name"},{"Error":"Shaina","Context":"http://dean.name"},{"Error":"Juana","Context":"http://aniya.biz"},{"Error":"Fernando","Context":"http://shanna.com"},{"Error":"Katelyn","Context":"https://judd.com"},{"Error":"Earl","Context":"https://bradford.biz"}],"License":"Use the bluetooth USB panel, then you can calculate the bluetooth panel!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt index ad47dbb9..f0ef82d3 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt @@ -1 +1 @@ -[] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 8ce5adbc..f891db8c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1 +1 @@ -[{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":0},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":1},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":1},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":2},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":2},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":2},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":1},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":2},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":0},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":2},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":2},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":2},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":2},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":1},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":2},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":2},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":2},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":1},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":0},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":0},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":2},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":1},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1},{"PackageId":"Principal Usability Representative","PackageVersion":"9.1.3","PackageProjectUrl":"https://nelson.com","License":"We need to transmit the bluetooth FTP feed!","LicenseInformationOrigin":0},{"PackageId":"Chief Intranet Strategist","PackageVersion":"9.7.0","PackageProjectUrl":"https://john.name","License":"We need to copy the redundant JSON transmitter!","LicenseInformationOrigin":0},{"PackageId":"Customer Accountability Strategist","PackageVersion":"0.5.2","PackageProjectUrl":"https://stuart.com","License":"You can\u0027t parse the firewall without navigating the solid state ADP firewall!","LicenseInformationOrigin":1},{"PackageId":"Chief Directives Executive","PackageVersion":"9.4.9","PackageProjectUrl":"http://jedediah.net","License":"Try to back up the THX interface, maybe it will back up the auxiliary interface!","LicenseInformationOrigin":2},{"PackageId":"District Factors Assistant","PackageVersion":"9.8.2","PackageProjectUrl":"https://ernestine.net","License":"Try to compress the SMS bus, maybe it will compress the bluetooth bus!","LicenseInformationOrigin":3},{"PackageId":"Legacy Interactions Analyst","PackageVersion":"3.0.8","PackageProjectUrl":"http://logan.net","License":"You can\u0027t parse the hard drive without generating the digital AGP hard drive!","LicenseInformationOrigin":3},{"PackageId":"Senior Accountability Specialist","PackageVersion":"0.8.7","PackageProjectUrl":"http://kristina.info","License":"We need to input the cross-platform RAM system!","LicenseInformationOrigin":1},{"PackageId":"National Usability Manager","PackageVersion":"0.3.8","PackageProjectUrl":"http://myriam.name","License":"quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!","LicenseInformationOrigin":2},{"PackageId":"Lead Tactics Executive","PackageVersion":"6.2.9","PackageProjectUrl":"https://maxwell.name","License":"I\u0027ll transmit the online TCP driver, that should driver the TCP driver!","LicenseInformationOrigin":0},{"PackageId":"Principal Accountability Facilitator","PackageVersion":"2.1.4","PackageProjectUrl":"https://dillan.net","License":"Use the back-end XML protocol, then you can reboot the back-end protocol!","LicenseInformationOrigin":0},{"PackageId":"Internal Quality Director","PackageVersion":"5.3.0","PackageProjectUrl":"http://hyman.com","License":"Use the redundant AI alarm, then you can transmit the redundant alarm!","LicenseInformationOrigin":2},{"PackageId":"Chief Web Specialist","PackageVersion":"7.4.0","PackageProjectUrl":"http://keely.net","License":"navigating the monitor won\u0027t do anything, we need to input the wireless JSON monitor!","LicenseInformationOrigin":2},{"PackageId":"Lead Accountability Orchestrator","PackageVersion":"2.6.2","PackageProjectUrl":"https://tre.org","License":"You can\u0027t connect the panel without bypassing the bluetooth SSL panel!","LicenseInformationOrigin":0},{"PackageId":"International Metrics Officer","PackageVersion":"3.7.1","PackageProjectUrl":"https://myrl.info","License":"hacking the array won\u0027t do anything, we need to back up the haptic IB array!","LicenseInformationOrigin":1},{"PackageId":"Forward Data Administrator","PackageVersion":"9.0.6","PackageProjectUrl":"https://michelle.org","License":"Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!","LicenseInformationOrigin":3},{"PackageId":"Regional Data Strategist","PackageVersion":"3.5.3","PackageProjectUrl":"https://sedrick.biz","License":"I\u0027ll transmit the optical USB program, that should program the USB program!","LicenseInformationOrigin":2},{"PackageId":"Product Integration Officer","PackageVersion":"3.3.6","PackageProjectUrl":"https://howard.org","License":"Use the primary PNG matrix, then you can copy the primary matrix!","LicenseInformationOrigin":3},{"PackageId":"Customer Group Technician","PackageVersion":"9.8.2","PackageProjectUrl":"https://sandrine.name","License":"programming the system won\u0027t do anything, we need to synthesize the primary AGP system!","LicenseInformationOrigin":2},{"PackageId":"Lead Factors Planner","PackageVersion":"1.0.4","PackageProjectUrl":"http://mikayla.com","License":"You can\u0027t compress the driver without calculating the back-end SQL driver!","LicenseInformationOrigin":0},{"PackageId":"Corporate Data Assistant","PackageVersion":"7.9.8","PackageProjectUrl":"http://arlene.biz","License":"Try to generate the SMTP feed, maybe it will generate the online feed!","LicenseInformationOrigin":2},{"PackageId":"Human Functionality Associate","PackageVersion":"9.4.1","PackageProjectUrl":"https://bonita.biz","License":"I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!","LicenseInformationOrigin":3},{"PackageId":"Dynamic Research Representative","PackageVersion":"1.6.9","PackageProjectUrl":"https://carol.org","License":"You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!","LicenseInformationOrigin":2},{"PackageId":"Internal Accounts Specialist","PackageVersion":"4.9.2","PackageProjectUrl":"https://wilfredo.biz","License":"The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!","LicenseInformationOrigin":2},{"PackageId":"Corporate Program Facilitator","PackageVersion":"2.7.4","PackageProjectUrl":"https://vida.net","License":"I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!","LicenseInformationOrigin":3},{"PackageId":"Investor Division Planner","PackageVersion":"1.4.6","PackageProjectUrl":"https://evelyn.info","License":"I\u0027ll hack the solid state JSON sensor, that should sensor the JSON sensor!","LicenseInformationOrigin":1},{"PackageId":"National Response Planner","PackageVersion":"7.8.0","PackageProjectUrl":"https://hertha.org","License":"Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!","LicenseInformationOrigin":1},{"PackageId":"National Accountability Administrator","PackageVersion":"5.9.9","PackageProjectUrl":"http://julio.info","License":"Use the neural IB matrix, then you can generate the neural matrix!","LicenseInformationOrigin":1},{"PackageId":"Legacy Branding Orchestrator","PackageVersion":"0.2.6","PackageProjectUrl":"https://keeley.net","License":"We need to bypass the back-end FTP alarm!","LicenseInformationOrigin":3},{"PackageId":"Forward Infrastructure Specialist","PackageVersion":"6.1.6","PackageProjectUrl":"http://melisa.com","License":"quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!","LicenseInformationOrigin":3},{"PackageId":"Future Group Director","PackageVersion":"2.3.4","PackageProjectUrl":"https://luna.info","License":"I\u0027ll synthesize the open-source RSS firewall, that should firewall the RSS firewall!","LicenseInformationOrigin":0},{"PackageId":"Regional Branding Facilitator","PackageVersion":"0.3.9","PackageProjectUrl":"https://otilia.info","License":"We need to connect the optical SQL capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Configuration Planner","PackageVersion":"2.6.3","PackageProjectUrl":"http://willis.name","License":"connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Consultant","PackageVersion":"5.6.2","PackageProjectUrl":"https://eryn.org","License":"Use the digital IB alarm, then you can program the digital alarm!","LicenseInformationOrigin":2},{"PackageId":"District Interactions Developer","PackageVersion":"9.9.4","PackageProjectUrl":"http://adrien.biz","License":"I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!","LicenseInformationOrigin":2},{"PackageId":"Principal Solutions Supervisor","PackageVersion":"6.1.2","PackageProjectUrl":"https://ari.biz","License":"programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!","LicenseInformationOrigin":3},{"PackageId":"Product Paradigm Director","PackageVersion":"6.3.8","PackageProjectUrl":"http://kiera.org","License":"Use the wireless THX array, then you can connect the wireless array!","LicenseInformationOrigin":0},{"PackageId":"Senior Group Designer","PackageVersion":"3.0.6","PackageProjectUrl":"http://keyshawn.net","License":"We need to copy the cross-platform SAS panel!","LicenseInformationOrigin":1},{"PackageId":"Corporate Paradigm Administrator","PackageVersion":"5.5.2","PackageProjectUrl":"http://trace.net","License":"Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!","LicenseInformationOrigin":2},{"PackageId":"Product Interactions Executive","PackageVersion":"5.4.8","PackageProjectUrl":"https://maye.org","License":"We need to override the auxiliary AGP firewall!","LicenseInformationOrigin":3},{"PackageId":"Central Creative Analyst","PackageVersion":"3.6.4","PackageProjectUrl":"http://abigayle.net","License":"programming the driver won\u0027t do anything, we need to calculate the primary SMTP driver!","LicenseInformationOrigin":1},{"PackageId":"Internal Division Assistant","PackageVersion":"0.9.4","PackageProjectUrl":"http://emerson.info","License":"The SMTP card is down, transmit the virtual card so we can transmit the SMTP card!","LicenseInformationOrigin":1},{"PackageId":"Global Usability Manager","PackageVersion":"6.7.0","PackageProjectUrl":"https://alexandra.info","License":"We need to parse the mobile SCSI protocol!","LicenseInformationOrigin":1},{"PackageId":"Chief Markets Agent","PackageVersion":"8.8.4","PackageProjectUrl":"http://dayana.name","License":"I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!","LicenseInformationOrigin":3},{"PackageId":"Human Configuration Assistant","PackageVersion":"0.1.1","PackageProjectUrl":"https://aurelia.info","License":"We need to hack the mobile SMS circuit!","LicenseInformationOrigin":2},{"PackageId":"Senior Implementation Associate","PackageVersion":"8.2.9","PackageProjectUrl":"http://roderick.org","License":"synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!","LicenseInformationOrigin":3},{"PackageId":"Legacy Research Producer","PackageVersion":"2.8.3","PackageProjectUrl":"https://sonia.org","License":"backing up the monitor won\u0027t do anything, we need to quantify the back-end CSS monitor!","LicenseInformationOrigin":2},{"PackageId":"Legacy Accountability Agent","PackageVersion":"5.8.2","PackageProjectUrl":"http://chelsea.com","License":"I\u0027ll compress the auxiliary XSS port, that should port the XSS port!","LicenseInformationOrigin":3},{"PackageId":"District Group Associate","PackageVersion":"4.0.1","PackageProjectUrl":"https://noemi.info","License":"We need to transmit the redundant TCP panel!","LicenseInformationOrigin":0},{"PackageId":"Future Factors Representative","PackageVersion":"9.2.0","PackageProjectUrl":"https://jazmin.org","License":"Use the solid state SDD application, then you can navigate the solid state application!","LicenseInformationOrigin":2},{"PackageId":"Direct Data Consultant","PackageVersion":"6.3.3","PackageProjectUrl":"https://heath.name","License":"Use the haptic XML driver, then you can index the haptic driver!","LicenseInformationOrigin":3},{"PackageId":"Internal Division Agent","PackageVersion":"2.4.2","PackageProjectUrl":"http://armani.name","License":"Try to compress the TCP microchip, maybe it will compress the auxiliary microchip!","LicenseInformationOrigin":0},{"PackageId":"Legacy Optimization Assistant","PackageVersion":"8.8.2","PackageProjectUrl":"https://scot.info","License":"The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!","LicenseInformationOrigin":1},{"PackageId":"National Tactics Administrator","PackageVersion":"9.2.8","PackageProjectUrl":"https://brett.biz","License":"The FTP card is down, index the digital card so we can index the FTP card!","LicenseInformationOrigin":3},{"PackageId":"Human Directives Specialist","PackageVersion":"4.3.4","PackageProjectUrl":"http://tabitha.name","License":"I\u0027ll reboot the virtual CSS program, that should program the CSS program!","LicenseInformationOrigin":2},{"PackageId":"Forward Web Assistant","PackageVersion":"3.5.5","PackageProjectUrl":"https://tremayne.org","License":"The COM array is down, calculate the open-source array so we can calculate the COM array!","LicenseInformationOrigin":0},{"PackageId":"Product Operations Liaison","PackageVersion":"1.1.0","PackageProjectUrl":"http://tabitha.com","License":"You can\u0027t generate the array without quantifying the open-source PCI array!","LicenseInformationOrigin":0},{"PackageId":"Legacy Accountability Coordinator","PackageVersion":"5.5.0","PackageProjectUrl":"http://erling.name","License":"Try to back up the COM driver, maybe it will back up the bluetooth driver!","LicenseInformationOrigin":1},{"PackageId":"Product Marketing Strategist","PackageVersion":"0.1.7","PackageProjectUrl":"http://melany.name","License":"I\u0027ll copy the auxiliary SSL interface, that should interface the SSL interface!","LicenseInformationOrigin":2},{"PackageId":"Corporate Intranet Analyst","PackageVersion":"0.9.0","PackageProjectUrl":"https://creola.info","License":"indexing the interface won\u0027t do anything, we need to bypass the optical HDD interface!","LicenseInformationOrigin":0},{"PackageId":"Central Security Representative","PackageVersion":"4.3.4","PackageProjectUrl":"https://velva.name","License":"The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth!","LicenseInformationOrigin":0},{"PackageId":"Senior Brand Analyst","PackageVersion":"2.5.0","PackageProjectUrl":"http://danial.name","License":"overriding the interface won\u0027t do anything, we need to override the virtual THX interface!","LicenseInformationOrigin":1},{"PackageId":"Internal Directives Designer","PackageVersion":"0.4.8","PackageProjectUrl":"http://mable.net","License":"Use the virtual AI capacitor, then you can navigate the virtual capacitor!","LicenseInformationOrigin":1},{"PackageId":"Dynamic Division Consultant","PackageVersion":"4.8.7","PackageProjectUrl":"https://jack.net","License":"The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel!","LicenseInformationOrigin":0},{"PackageId":"Central Data Consultant","PackageVersion":"6.5.0","PackageProjectUrl":"https://delilah.org","License":"generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!","LicenseInformationOrigin":3},{"PackageId":"Regional Tactics Technician","PackageVersion":"7.6.7","PackageProjectUrl":"http://alvena.net","License":"If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall!","LicenseInformationOrigin":0},{"PackageId":"Customer Functionality Manager","PackageVersion":"5.9.0","PackageProjectUrl":"https://mariane.info","License":"The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!","LicenseInformationOrigin":2},{"PackageId":"Senior Operations Engineer","PackageVersion":"3.1.8","PackageProjectUrl":"http://montana.name","License":"If we program the array, we can get to the JBOD array through the primary JBOD array!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index ef46d759..b922d775 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1 +1 @@ -[{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":0},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":0},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":2},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":1},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0},{"PackageId":"National Assurance Representative","PackageVersion":"2.0.7","PackageProjectUrl":"http://kelley.com","License":"transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!","LicenseInformationOrigin":0},{"PackageId":"National Tactics Liaison","PackageVersion":"6.8.9","PackageProjectUrl":"http://jillian.net","License":"hacking the capacitor won\u0027t do anything, we need to compress the digital AGP capacitor!","LicenseInformationOrigin":2},{"PackageId":"Global Implementation Engineer","PackageVersion":"6.0.7","PackageProjectUrl":"http://antonette.org","License":"I\u0027ll calculate the 1080p HDD system, that should system the HDD system!","LicenseInformationOrigin":1},{"PackageId":"Forward Integration Executive","PackageVersion":"6.6.8","PackageProjectUrl":"http://grayce.info","License":"You can\u0027t index the protocol without indexing the open-source XML protocol!","LicenseInformationOrigin":0},{"PackageId":"Customer Infrastructure Planner","PackageVersion":"6.6.0","PackageProjectUrl":"https://laurie.biz","License":"If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!","LicenseInformationOrigin":1},{"PackageId":"Customer Infrastructure Liaison","PackageVersion":"0.8.0","PackageProjectUrl":"https://otho.biz","License":"Use the haptic RSS hard drive, then you can back up the haptic hard drive!","LicenseInformationOrigin":3},{"PackageId":"Customer Research Associate","PackageVersion":"4.6.5","PackageProjectUrl":"http://wilmer.name","License":"I\u0027ll navigate the neural SAS card, that should card the SAS card!","LicenseInformationOrigin":1},{"PackageId":"Central Creative Manager","PackageVersion":"8.4.8","PackageProjectUrl":"https://carleton.info","License":"Use the cross-platform THX system, then you can generate the cross-platform system!","LicenseInformationOrigin":1},{"PackageId":"Corporate Marketing Associate","PackageVersion":"3.3.2","PackageProjectUrl":"http://nash.name","License":"I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!","LicenseInformationOrigin":0},{"PackageId":"District Intranet Strategist","PackageVersion":"2.2.2","PackageProjectUrl":"http://everett.name","License":"We need to reboot the virtual RSS alarm!","LicenseInformationOrigin":3},{"PackageId":"Customer Assurance Officer","PackageVersion":"0.3.1","PackageProjectUrl":"https://kyla.biz","License":"Try to override the EXE program, maybe it will override the mobile program!","LicenseInformationOrigin":2},{"PackageId":"Chief Integration Architect","PackageVersion":"1.6.8","PackageProjectUrl":"https://davion.net","License":"Try to override the TCP firewall, maybe it will override the solid state firewall!","LicenseInformationOrigin":1}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index 07b62dde..63e67c5f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(False,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1 +1 @@ -[{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0}] \ No newline at end of file +[{"PackageId":"Legacy Metrics Planner","PackageVersion":"9.5.0","PackageProjectUrl":"http://madisyn.name","License":"I\u0027ll override the haptic AGP feed, that should feed the AGP feed!","LicenseInformationOrigin":3},{"PackageId":"International Mobility Technician","PackageVersion":"3.7.5","PackageProjectUrl":"https://jayne.name","License":"I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!","LicenseInformationOrigin":0},{"PackageId":"Future Identity Specialist","PackageVersion":"4.7.4","PackageProjectUrl":"http://della.biz","License":"If we back up the driver, we can get to the AI driver through the bluetooth AI driver!","LicenseInformationOrigin":0},{"PackageId":"Forward Functionality Designer","PackageVersion":"5.5.7","PackageProjectUrl":"https://jasen.biz","License":"Use the redundant AGP monitor, then you can generate the redundant monitor!","LicenseInformationOrigin":0}] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index d978232b..280184a5 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -96,7 +96,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Markets Designer", @@ -186,7 +186,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Intranet Officer", @@ -298,7 +298,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Human Usability Specialist", @@ -389,7 +389,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -426,7 +426,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Accounts Associate", @@ -470,7 +470,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -672,6 +672,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index 897f720f..3bb1e1cd 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -42,7 +42,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Functionality Agent", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 16a20dd8..87e221f4 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -126,7 +126,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -163,6 +163,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt index 1ca1f108..1eef8d09 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt @@ -4,7 +4,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Principal Functionality Agent", @@ -42,21 +42,21 @@ "PackageVersion": "0.1.8", "PackageProjectUrl": "https://crystal.info", "License": "We need to transmit the back-end PCI panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Forward Infrastructure Specialist", "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Research Assistant", "PackageVersion": "5.9.7", "PackageProjectUrl": "http://danial.org", "License": "Try to connect the TCP circuit, maybe it will connect the back-end circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Internal Division Agent", @@ -77,14 +77,14 @@ "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Legacy Accountability Coordinator", "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Infrastructure Liaison", @@ -105,14 +105,14 @@ "PackageVersion": "9.3.0", "PackageProjectUrl": "http://bridie.biz", "License": "Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "National Tactics Architect", "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Identity Specialist", @@ -140,14 +140,14 @@ "PackageVersion": "5.0.6", "PackageProjectUrl": "http://forrest.com", "License": "If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Program Facilitator", "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Forward Integration Executive", @@ -175,35 +175,35 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Chief Markets Agent", "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Forward Data Administrator", "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Applications Developer", "PackageVersion": "5.6.1", "PackageProjectUrl": "http://kiley.org", "License": "We need to connect the bluetooth RAM application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Analyst", "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Legacy Interactions Analyst", @@ -238,7 +238,7 @@ "PackageVersion": "2.7.5", "PackageProjectUrl": "http://barney.com", "License": "You can\u0027t program the alarm without overriding the cross-platform RSS alarm!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Optimization Assistant", @@ -280,7 +280,7 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Lead Tactics Executive", @@ -308,7 +308,7 @@ "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -322,14 +322,14 @@ "PackageVersion": "4.6.0", "PackageProjectUrl": "http://nathaniel.name", "License": "overriding the interface won\u0027t do anything, we need to connect the digital GB interface!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Product Interactions Executive", "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Consultant", @@ -350,7 +350,7 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Accountability Specialist", @@ -364,7 +364,7 @@ "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Product Operations Liaison", @@ -378,7 +378,7 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Group Designer", @@ -406,7 +406,7 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "National Response Planner", @@ -420,14 +420,14 @@ "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Implementation Associate", "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Corporate Marketing Associate", @@ -441,7 +441,7 @@ "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Central Security Representative", @@ -455,7 +455,7 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Lead Accountability Orchestrator", @@ -476,21 +476,21 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Dynamic Brand Officer", "PackageVersion": "1.1.5", "PackageProjectUrl": "https://shayne.name", "License": "If we transmit the application, we can get to the SAS application through the wireless SAS application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "District Intranet Strategist", "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Quality Director", @@ -511,7 +511,7 @@ "PackageVersion": "2.1.6", "PackageProjectUrl": "https://liana.net", "License": "Use the auxiliary RSS sensor, then you can program the auxiliary sensor!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "District Interactions Developer", @@ -539,14 +539,14 @@ "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Customer Accountability Strategist", "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Directives Designer", @@ -560,7 +560,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Assurance Representative", @@ -574,7 +574,7 @@ "PackageVersion": "8.8.0", "PackageProjectUrl": "https://alana.org", "License": "I\u0027ll index the neural SDD bus, that should bus the SDD bus!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Paradigm Administrator", @@ -602,7 +602,7 @@ "PackageVersion": "2.8.1", "PackageProjectUrl": "https://chance.name", "License": "You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Internal Division Assistant", @@ -623,14 +623,14 @@ "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Product Security Developer", "PackageVersion": "4.4.5", "PackageProjectUrl": "https://maida.org", "License": "parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Solutions Supervisor", @@ -665,7 +665,7 @@ "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Principal Usability Representative", @@ -679,14 +679,14 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Product Integration Officer", "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Chief Web Specialist", @@ -700,14 +700,14 @@ "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Customer Group Manager", "PackageVersion": "8.0.4", "PackageProjectUrl": "https://luisa.biz", "License": "The RAM panel is down, transmit the online panel so we can transmit the RAM panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Configuration Planner", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index 74fa4e34..5f571b60 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -42,7 +42,7 @@ "PackageVersion": "5.0.6", "PackageProjectUrl": "http://forrest.com", "License": "If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Data Assistant", @@ -56,7 +56,7 @@ "PackageVersion": "5.6.1", "PackageProjectUrl": "http://kiley.org", "License": "We need to connect the bluetooth RAM application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "District Group Associate", @@ -77,7 +77,7 @@ "PackageVersion": "5.9.7", "PackageProjectUrl": "http://danial.org", "License": "Try to connect the TCP circuit, maybe it will connect the back-end circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Forward Web Assistant", @@ -126,7 +126,7 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -173,7 +173,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Global Optimization Representative", @@ -241,7 +241,7 @@ "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Usability Representative", @@ -269,7 +269,7 @@ "PackageVersion": "2.8.1", "PackageProjectUrl": "https://chance.name", "License": "You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Chief Intranet Strategist", @@ -283,7 +283,7 @@ "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Corporate Intranet Analyst", @@ -297,7 +297,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Senior Operations Engineer", @@ -311,14 +311,14 @@ "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Chief Directives Executive", "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Functionality Designer", @@ -351,7 +351,7 @@ "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Dynamic Marketing Consultant", @@ -374,7 +374,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "District Factors Assistant", @@ -423,7 +423,7 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Division Assistant", @@ -437,7 +437,7 @@ "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Assurance Representative", @@ -529,7 +529,7 @@ "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Infrastructure Planner", @@ -550,7 +550,7 @@ "PackageVersion": "9.3.0", "PackageProjectUrl": "http://bridie.biz", "License": "Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "National Response Planner", @@ -564,7 +564,7 @@ "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Regional Data Strategist", @@ -578,7 +578,7 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Accountability Specialist", @@ -592,7 +592,7 @@ "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Future Identity Specialist", @@ -662,21 +662,21 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Accountability Coordinator", "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Product Security Developer", "PackageVersion": "4.4.5", "PackageProjectUrl": "https://maida.org", "License": "parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -713,7 +713,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Metrics Officer", @@ -739,21 +739,21 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Forward Infrastructure Specialist", "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "National Accountability Administrator", "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Senior Group Designer", @@ -767,7 +767,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Accounts Specialist", @@ -781,14 +781,14 @@ "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Data Administrator", "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Accounts Associate", @@ -832,28 +832,28 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Implementation Assistant", "PackageVersion": "2.1.6", "PackageProjectUrl": "https://liana.net", "License": "Use the auxiliary RSS sensor, then you can program the auxiliary sensor!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "District Metrics Analyst", "PackageVersion": "4.6.0", "PackageProjectUrl": "http://nathaniel.name", "License": "overriding the interface won\u0027t do anything, we need to connect the digital GB interface!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Markets Executive", "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Infrastructure Liaison", @@ -908,7 +908,7 @@ "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Investor Research Facilitator", @@ -969,7 +969,7 @@ "PackageVersion": "0.1.8", "PackageProjectUrl": "https://crystal.info", "License": "We need to transmit the back-end PCI panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Solutions Supervisor", @@ -983,7 +983,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Legacy Metrics Planner", @@ -997,14 +997,14 @@ "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Dynamic Brand Officer", "PackageVersion": "1.1.5", "PackageProjectUrl": "https://shayne.name", "License": "If we transmit the application, we can get to the SAS application through the wireless SAS application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Optimization Orchestrator", @@ -1047,7 +1047,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Corporate Paradigm Administrator", @@ -1075,14 +1075,14 @@ "PackageVersion": "2.7.5", "PackageProjectUrl": "http://barney.com", "License": "You can\u0027t program the alarm without overriding the cross-platform RSS alarm!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Internal Operations Executive", "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Tactics Executive", @@ -1110,7 +1110,7 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Tactics Technician", @@ -1124,7 +1124,7 @@ "PackageVersion": "8.8.0", "PackageProjectUrl": "https://alana.org", "License": "I\u0027ll index the neural SDD bus, that should bus the SDD bus!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Usability Manager", @@ -1182,7 +1182,7 @@ "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Internal Directives Designer", @@ -1196,14 +1196,14 @@ "PackageVersion": "8.0.4", "PackageProjectUrl": "https://luisa.biz", "License": "The RAM panel is down, transmit the online panel so we can transmit the RAM panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "National Usability Manager", "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Liaison", @@ -1267,7 +1267,7 @@ "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Consultant", @@ -1313,7 +1313,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Research Producer", @@ -1327,7 +1327,7 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Intranet Facilitator", @@ -1372,6 +1372,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index 1f0c0272..bed83e43 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -4,7 +4,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Principal Functionality Agent", @@ -35,7 +35,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Interactions Developer", @@ -49,14 +49,14 @@ "PackageVersion": "5.0.6", "PackageProjectUrl": "http://forrest.com", "License": "If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Research Assistant", "PackageVersion": "5.9.7", "PackageProjectUrl": "http://danial.org", "License": "Try to connect the TCP circuit, maybe it will connect the back-end circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Internal Division Agent", @@ -77,14 +77,14 @@ "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Legacy Accountability Coordinator", "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Infrastructure Planner", @@ -105,14 +105,14 @@ "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Intranet Strategist", "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -140,7 +140,7 @@ "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Accounts Specialist", @@ -168,7 +168,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Customer Infrastructure Liaison", @@ -196,21 +196,21 @@ "PackageVersion": "5.6.1", "PackageProjectUrl": "http://kiley.org", "License": "We need to connect the bluetooth RAM application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Analyst", "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Chief Directives Executive", "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Operations Engineer", @@ -231,14 +231,14 @@ "PackageVersion": "2.7.5", "PackageProjectUrl": "http://barney.com", "License": "You can\u0027t program the alarm without overriding the cross-platform RSS alarm!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Forward Data Administrator", "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Optimization Assistant", @@ -308,7 +308,7 @@ "PackageVersion": "8.0.4", "PackageProjectUrl": "https://luisa.biz", "License": "The RAM panel is down, transmit the online panel so we can transmit the RAM panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Intranet Facilitator", @@ -353,7 +353,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "District Factors Assistant", @@ -381,14 +381,14 @@ "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Usability Manager", "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Legacy Interactions Analyst", @@ -416,7 +416,7 @@ "PackageVersion": "4.4.5", "PackageProjectUrl": "https://maida.org", "License": "parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Product Paradigm Director", @@ -437,21 +437,21 @@ "PackageVersion": "9.3.0", "PackageProjectUrl": "http://bridie.biz", "License": "Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Dynamic Program Administrator", "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Program Facilitator", "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Branding Facilitator", @@ -465,7 +465,7 @@ "PackageVersion": "8.8.0", "PackageProjectUrl": "https://alana.org", "License": "I\u0027ll index the neural SDD bus, that should bus the SDD bus!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Intranet Analyst", @@ -493,7 +493,7 @@ "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Forward Functionality Designer", @@ -507,7 +507,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Assurance Consultant", @@ -535,7 +535,7 @@ "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Corporate Marketing Associate", @@ -549,14 +549,14 @@ "PackageVersion": "2.1.6", "PackageProjectUrl": "https://liana.net", "License": "Use the auxiliary RSS sensor, then you can program the auxiliary sensor!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Central Creative Manager", "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Future Identity Specialist", @@ -570,14 +570,14 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Functionality Manager", "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Web Assistant", @@ -598,35 +598,35 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Data Consultant", "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Chief Markets Agent", "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Product Intranet Assistant", "PackageVersion": "2.8.1", "PackageProjectUrl": "https://chance.name", "License": "You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Markets Executive", "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Accountability Orchestrator", @@ -640,21 +640,21 @@ "PackageVersion": "4.6.0", "PackageProjectUrl": "http://nathaniel.name", "License": "overriding the interface won\u0027t do anything, we need to connect the digital GB interface!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Accountability Agent", "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Product Integration Officer", "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Chief Integration Architect", @@ -682,7 +682,7 @@ "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Data Strategist", @@ -696,14 +696,14 @@ "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Dynamic Research Representative", "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Usability Representative", @@ -731,7 +731,7 @@ "PackageVersion": "0.1.8", "PackageProjectUrl": "https://crystal.info", "License": "We need to transmit the back-end PCI panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -786,13 +786,13 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Dynamic Brand Officer", "PackageVersion": "1.1.5", "PackageProjectUrl": "https://shayne.name", "License": "If we transmit the application, we can get to the SAS application through the wireless SAS application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 620ca366..67a95125 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -4,7 +4,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Principal Functionality Agent", @@ -35,7 +35,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Interactions Developer", @@ -49,21 +49,21 @@ "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Research Assistant", "PackageVersion": "5.9.7", "PackageProjectUrl": "http://danial.org", "License": "Try to connect the TCP circuit, maybe it will connect the back-end circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Data Consultant", "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Group Technician", @@ -77,21 +77,21 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Accountability Coordinator", "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Global Implementation Engineer", "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Functionality Designer", @@ -105,14 +105,14 @@ "PackageVersion": "5.0.6", "PackageProjectUrl": "http://forrest.com", "License": "If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Internal Operations Executive", "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "National Solutions Coordinator", @@ -166,14 +166,14 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Dynamic Research Representative", "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Liaison", @@ -208,7 +208,7 @@ "PackageVersion": "1.1.5", "PackageProjectUrl": "https://shayne.name", "License": "If we transmit the application, we can get to the SAS application through the wireless SAS application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Chief Web Specialist", @@ -229,14 +229,14 @@ "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Group Manager", "PackageVersion": "8.0.4", "PackageProjectUrl": "https://luisa.biz", "License": "The RAM panel is down, transmit the online panel so we can transmit the RAM panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Operations Engineer", @@ -308,21 +308,21 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Directives Specialist", "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accountability Assistant", "PackageVersion": "2.7.5", "PackageProjectUrl": "http://barney.com", "License": "You can\u0027t program the alarm without overriding the cross-platform RSS alarm!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Chief Integration Architect", @@ -350,7 +350,7 @@ "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Dynamic Division Consultant", @@ -364,7 +364,7 @@ "PackageVersion": "5.6.1", "PackageProjectUrl": "http://kiley.org", "License": "We need to connect the bluetooth RAM application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Paradigm Administrator", @@ -378,14 +378,14 @@ "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Product Security Developer", "PackageVersion": "4.4.5", "PackageProjectUrl": "https://maida.org", "License": "parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Group Director", @@ -413,7 +413,7 @@ "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Usability Representative", @@ -434,14 +434,14 @@ "PackageVersion": "2.8.1", "PackageProjectUrl": "https://chance.name", "License": "You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Human Optimization Director", "PackageVersion": "0.1.8", "PackageProjectUrl": "https://crystal.info", "License": "We need to transmit the back-end PCI panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Tactics Executive", @@ -469,21 +469,21 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Directives Analyst", "PackageVersion": "9.3.0", "PackageProjectUrl": "http://bridie.biz", "License": "Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Human Configuration Assistant", "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Customer Infrastructure Liaison", @@ -497,7 +497,7 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Central Security Representative", @@ -511,21 +511,21 @@ "PackageVersion": "8.8.0", "PackageProjectUrl": "https://alana.org", "License": "I\u0027ll index the neural SDD bus, that should bus the SDD bus!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Product Integration Officer", "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Branding Facilitator", @@ -546,7 +546,7 @@ "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Consultant", @@ -560,21 +560,21 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Implementation Assistant", "PackageVersion": "2.1.6", "PackageProjectUrl": "https://liana.net", "License": "Use the auxiliary RSS sensor, then you can program the auxiliary sensor!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Markets Executive", "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "International Mobility Technician", @@ -595,14 +595,14 @@ "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Usability Manager", "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Lead Factors Planner", @@ -623,14 +623,14 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Tactics Architect", "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Solutions Supervisor", @@ -665,7 +665,7 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Research Producer", @@ -751,7 +751,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Future Identity Specialist", @@ -821,21 +821,21 @@ "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Forward Infrastructure Specialist", "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Metrics Analyst", "PackageVersion": "4.6.0", "PackageProjectUrl": "http://nathaniel.name", "License": "overriding the interface won\u0027t do anything, we need to connect the digital GB interface!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Group Designer", @@ -849,7 +849,7 @@ "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Product Operations Liaison", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index 594c6e41..f35f632e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -67,7 +67,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Markets Designer", @@ -409,7 +409,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -446,7 +446,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "National Accounts Liaison", @@ -465,7 +465,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -528,7 +528,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Dynamic Marketing Consultant", @@ -551,7 +551,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Optimization Representative", @@ -679,6 +679,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index 73c852ca..00d17296 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -100,6 +100,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index 596f86fe..faef73ae 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -106,7 +106,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", @@ -170,6 +170,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt index 92e063b4..7aa45f9a 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt @@ -35,7 +35,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Research Associate", @@ -56,7 +56,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Functionality Designer", @@ -84,7 +84,7 @@ "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Infrastructure Planner", @@ -112,14 +112,14 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "District Intranet Strategist", "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Metrics Planner", @@ -133,21 +133,21 @@ "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Implementation Engineer", "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Dynamic Program Administrator", "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "National Tactics Liaison", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index 7c90211c..c9c0036f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -4,7 +4,7 @@ "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Functionality Agent", @@ -35,7 +35,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Functionality Designer", @@ -49,14 +49,14 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Central Creative Manager", "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Lead Intranet Officer", @@ -118,14 +118,14 @@ "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "District Intranet Strategist", "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Usability Specialist", @@ -223,7 +223,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Program Technician", @@ -300,7 +300,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Liaison", @@ -346,7 +346,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Accounts Associate", @@ -390,7 +390,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -427,7 +427,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Metrics Planner", @@ -507,7 +507,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Optimization Representative", @@ -627,7 +627,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Chief Integration Architect", @@ -732,7 +732,7 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Marketing Associate", @@ -805,7 +805,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Forward Integration Executive", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index 4777f701..21c71535 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -4,7 +4,7 @@ "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Chief Integration Architect", @@ -18,7 +18,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Infrastructure Liaison", @@ -32,21 +32,21 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "District Intranet Strategist", "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Principal Markets Executive", "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "International Mobility Technician", @@ -60,7 +60,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Functionality Agent", @@ -91,7 +91,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Tactics Liaison", @@ -105,7 +105,7 @@ "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Forward Functionality Designer", @@ -212,7 +212,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Assurance Representative", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index b005787a..1da9d7f3 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -4,7 +4,7 @@ "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Functionality Agent", @@ -42,7 +42,7 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Infrastructure Planner", @@ -56,7 +56,7 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Metrics Planner", @@ -103,7 +103,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", @@ -151,7 +151,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -165,7 +165,7 @@ "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Chief Integration Architect", @@ -231,7 +231,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -268,7 +268,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -282,7 +282,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Infrastructure Liaison", @@ -296,7 +296,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Identity Specialist", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt index 6bc47bbd..1b501d77 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt @@ -56,6 +56,6 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index c992d9c2..665e2579 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -47,7 +47,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Response Associate", @@ -83,7 +83,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Creative Liaison", @@ -122,7 +122,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "International Mobility Technician", @@ -188,7 +188,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -477,7 +477,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -514,7 +514,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Research Facilitator", @@ -648,7 +648,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Optimization Orchestrator", @@ -707,6 +707,6 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index 76ef8a33..ee6f4cd7 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -42,7 +42,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Intranet Facilitator", @@ -87,7 +87,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index 2c754f88..7f0f8fac 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -35,7 +35,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Intranet Facilitator", @@ -80,7 +80,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -117,7 +117,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Accounts Technician", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 6ec47efe..1238428a 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -18,7 +18,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Identity Specialist", @@ -53,7 +53,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -74,7 +74,7 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Infrastructure Liaison", @@ -95,14 +95,14 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Operations Executive", "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Marketing Associate", @@ -116,21 +116,21 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Architect", "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Chief Integration Architect", @@ -158,21 +158,21 @@ "PackageVersion": "8.0.4", "PackageProjectUrl": "https://luisa.biz", "License": "The RAM panel is down, transmit the online panel so we can transmit the RAM panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Accountability Strategist", "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Chief Directives Executive", "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "District Factors Assistant", @@ -193,7 +193,7 @@ "PackageVersion": "4.6.0", "PackageProjectUrl": "http://nathaniel.name", "License": "overriding the interface won\u0027t do anything, we need to connect the digital GB interface!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Accountability Specialist", @@ -207,7 +207,7 @@ "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Lead Tactics Executive", @@ -256,7 +256,7 @@ "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Data Strategist", @@ -270,14 +270,14 @@ "PackageVersion": "2.7.5", "PackageProjectUrl": "http://barney.com", "License": "You can\u0027t program the alarm without overriding the cross-platform RSS alarm!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Product Integration Officer", "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Group Technician", @@ -305,14 +305,14 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Dynamic Research Representative", "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Internal Accounts Specialist", @@ -326,7 +326,7 @@ "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Division Planner", @@ -347,35 +347,35 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Legacy Branding Orchestrator", "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Product Infrastructure Orchestrator", "PackageVersion": "5.0.6", "PackageProjectUrl": "http://forrest.com", "License": "If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Forward Infrastructure Specialist", "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Directives Analyst", "PackageVersion": "9.3.0", "PackageProjectUrl": "http://bridie.biz", "License": "Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Group Director", @@ -417,7 +417,7 @@ "PackageVersion": "0.1.8", "PackageProjectUrl": "https://crystal.info", "License": "We need to transmit the back-end PCI panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Solutions Supervisor", @@ -445,14 +445,14 @@ "PackageVersion": "2.8.1", "PackageProjectUrl": "https://chance.name", "License": "You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Product Security Developer", "PackageVersion": "4.4.5", "PackageProjectUrl": "https://maida.org", "License": "parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Paradigm Administrator", @@ -466,7 +466,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Central Creative Analyst", @@ -487,7 +487,7 @@ "PackageVersion": "1.1.5", "PackageProjectUrl": "https://shayne.name", "License": "If we transmit the application, we can get to the SAS application through the wireless SAS application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Usability Manager", @@ -501,28 +501,28 @@ "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Configuration Assistant", "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Direct Group Consultant", "PackageVersion": "8.8.0", "PackageProjectUrl": "https://alana.org", "License": "I\u0027ll index the neural SDD bus, that should bus the SDD bus!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Implementation Associate", "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Research Producer", @@ -536,7 +536,7 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Group Associate", @@ -557,14 +557,14 @@ "PackageVersion": "5.6.1", "PackageProjectUrl": "http://kiley.org", "License": "We need to connect the bluetooth RAM application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Data Consultant", "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Division Agent", @@ -578,7 +578,7 @@ "PackageVersion": "5.9.7", "PackageProjectUrl": "http://danial.org", "License": "Try to connect the TCP circuit, maybe it will connect the back-end circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Optimization Assistant", @@ -592,14 +592,14 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Directives Specialist", "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Web Assistant", @@ -620,7 +620,7 @@ "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Product Marketing Strategist", @@ -648,7 +648,7 @@ "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Directives Designer", @@ -669,7 +669,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Tactics Technician", @@ -683,14 +683,14 @@ "PackageVersion": "2.1.6", "PackageProjectUrl": "https://liana.net", "License": "Use the auxiliary RSS sensor, then you can program the auxiliary sensor!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Functionality Manager", "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Operations Engineer", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index 1e9bcf30..9114f0b7 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -18,7 +18,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Identity Specialist", @@ -53,7 +53,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -74,7 +74,7 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Infrastructure Liaison", @@ -95,14 +95,14 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Operations Executive", "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Marketing Associate", @@ -116,21 +116,21 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Architect", "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Chief Integration Architect", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index bf98582c..f85c9504 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -18,7 +18,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Identity Specialist", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index c67d9fef..1f562023 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -309,7 +309,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Accounts Technician", @@ -511,6 +511,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index 897f720f..3bb1e1cd 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -42,7 +42,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Functionality Agent", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 16a20dd8..87e221f4 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -126,7 +126,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -163,6 +163,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt index 796ba32c..c969ac78 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt @@ -4,7 +4,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Principal Functionality Agent", @@ -42,7 +42,7 @@ "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Division Agent", @@ -63,14 +63,21 @@ "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Legacy Accountability Coordinator", "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 + }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Product Marketing Strategist", @@ -105,7 +112,7 @@ "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Forward Integration Executive", @@ -133,28 +140,35 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Chief Markets Agent", "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Forward Data Administrator", "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Brand Analyst", "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 + }, + { + "PackageId": "Legacy Interactions Analyst", + "PackageVersion": "3.0.8", + "PackageProjectUrl": "http://logan.net", + "License": "You can\u0027t parse the hard drive without generating the digital AGP hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Operations Engineer", @@ -217,7 +231,7 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Lead Tactics Executive", @@ -245,7 +259,7 @@ "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -259,7 +273,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Consultant", @@ -268,12 +282,19 @@ "License": "Use the digital IB alarm, then you can program the digital alarm!", "LicenseInformationOrigin": 2 }, + { + "PackageId": "District Factors Assistant", + "PackageVersion": "9.8.2", + "PackageProjectUrl": "https://ernestine.net", + "License": "Try to compress the SMS bus, maybe it will compress the bluetooth bus!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "National Tactics Administrator", "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Accountability Specialist", @@ -287,7 +308,7 @@ "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Product Operations Liaison", @@ -301,7 +322,7 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Group Designer", @@ -336,14 +357,14 @@ "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Implementation Associate", "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Corporate Marketing Associate", @@ -364,7 +385,7 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Lead Accountability Orchestrator", @@ -385,7 +406,7 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Quality Director", @@ -427,14 +448,14 @@ "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Customer Accountability Strategist", "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Directives Designer", @@ -448,7 +469,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Assurance Representative", @@ -497,7 +518,14 @@ "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 + }, + { + "PackageId": "Principal Solutions Supervisor", + "PackageVersion": "6.1.2", + "PackageProjectUrl": "https://ari.biz", + "License": "programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!", + "LicenseInformationOrigin": 3 }, { "PackageId": "District Group Associate", @@ -506,6 +534,13 @@ "License": "We need to transmit the redundant TCP panel!", "LicenseInformationOrigin": 0 }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Chief Intranet Strategist", "PackageVersion": "9.7.0", @@ -518,7 +553,7 @@ "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Principal Usability Representative", @@ -532,14 +567,14 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Product Integration Officer", "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Chief Web Specialist", @@ -553,7 +588,14 @@ "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 + }, + { + "PackageId": "Global Configuration Planner", + "PackageVersion": "2.6.3", + "PackageProjectUrl": "http://willis.name", + "License": "connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Global Usability Manager", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index cc4a2feb..8f7f7776 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -105,7 +105,7 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -152,7 +152,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Global Optimization Representative", @@ -220,7 +220,7 @@ "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Usability Representative", @@ -255,7 +255,7 @@ "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Corporate Intranet Analyst", @@ -269,7 +269,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Senior Operations Engineer", @@ -283,14 +283,14 @@ "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Chief Directives Executive", "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Functionality Designer", @@ -323,7 +323,14 @@ "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 + }, + { + "PackageId": "District Factors Assistant", + "PackageVersion": "9.8.2", + "PackageProjectUrl": "https://ernestine.net", + "License": "Try to compress the SMS bus, maybe it will compress the bluetooth bus!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Usability Specialist", @@ -365,7 +372,7 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Division Assistant", @@ -379,7 +386,7 @@ "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Assurance Representative", @@ -388,6 +395,13 @@ "License": "transmitting the capacitor won\u0027t do anything, we need to synthesize the back-end RAM capacitor!", "LicenseInformationOrigin": 0 }, + { + "PackageId": "Global Configuration Planner", + "PackageVersion": "2.6.3", + "PackageProjectUrl": "http://willis.name", + "License": "connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Forward Integration Executive", "PackageVersion": "6.6.8", @@ -464,7 +478,7 @@ "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Infrastructure Planner", @@ -492,7 +506,7 @@ "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Regional Data Strategist", @@ -506,7 +520,7 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Accountability Specialist", @@ -520,7 +534,7 @@ "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Future Identity Specialist", @@ -561,7 +575,7 @@ "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Senior Brand Developer", @@ -598,7 +612,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Metrics Officer", @@ -612,14 +626,14 @@ "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "National Accountability Administrator", "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Senior Group Designer", @@ -633,7 +647,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Accounts Specialist", @@ -647,14 +661,21 @@ "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Data Administrator", "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 + }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Division Planner", @@ -751,19 +772,33 @@ "License": "Use the redundant AI alarm, then you can transmit the redundant alarm!", "LicenseInformationOrigin": 2 }, + { + "PackageId": "Principal Solutions Supervisor", + "PackageVersion": "6.1.2", + "PackageProjectUrl": "https://ari.biz", + "License": "programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Central Creative Manager", "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 + }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Data Consultant", "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Optimization Orchestrator", @@ -806,7 +841,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Corporate Paradigm Administrator", @@ -843,12 +878,19 @@ "License": "I\u0027ll program the auxiliary XSS bus, that should bus the XSS bus!", "LicenseInformationOrigin": 0 }, + { + "PackageId": "Legacy Interactions Analyst", + "PackageVersion": "3.0.8", + "PackageProjectUrl": "http://logan.net", + "License": "You can\u0027t parse the hard drive without generating the digital AGP hard drive!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Legacy Accountability Agent", "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Tactics Technician", @@ -913,7 +955,7 @@ "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Internal Directives Designer", @@ -927,7 +969,7 @@ "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Liaison", @@ -991,7 +1033,7 @@ "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Consultant", @@ -1050,6 +1092,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index 4c0d1c8c..b1d41e59 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -4,7 +4,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Principal Functionality Agent", @@ -35,7 +35,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Interactions Developer", @@ -63,14 +63,14 @@ "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Legacy Accountability Coordinator", "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Infrastructure Planner", @@ -91,14 +91,14 @@ "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Intranet Strategist", "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -126,7 +126,7 @@ "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Accounts Specialist", @@ -154,7 +154,14 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 + }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Global Usability Manager", @@ -175,14 +182,14 @@ "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Chief Directives Executive", "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Operations Engineer", @@ -203,7 +210,7 @@ "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Optimization Assistant", @@ -212,6 +219,13 @@ "License": "The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor!", "LicenseInformationOrigin": 1 }, + { + "PackageId": "Principal Solutions Supervisor", + "PackageVersion": "6.1.2", + "PackageProjectUrl": "https://ari.biz", + "License": "programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "National Assurance Representative", "PackageVersion": "2.0.7", @@ -304,7 +318,14 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 + }, + { + "PackageId": "District Factors Assistant", + "PackageVersion": "9.8.2", + "PackageProjectUrl": "https://ernestine.net", + "License": "Try to compress the SMS bus, maybe it will compress the bluetooth bus!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Corporate Paradigm Administrator", @@ -313,19 +334,33 @@ "License": "Try to reboot the SMS feed, maybe it will reboot the bluetooth feed!", "LicenseInformationOrigin": 2 }, + { + "PackageId": "Global Configuration Planner", + "PackageVersion": "2.6.3", + "PackageProjectUrl": "http://willis.name", + "License": "connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Accountability Strategist", "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Usability Manager", "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 + }, + { + "PackageId": "Legacy Interactions Analyst", + "PackageVersion": "3.0.8", + "PackageProjectUrl": "http://logan.net", + "License": "You can\u0027t parse the hard drive without generating the digital AGP hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Future Factors Representative", @@ -360,7 +395,7 @@ "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Branding Facilitator", @@ -402,7 +437,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Assurance Consultant", @@ -430,7 +465,7 @@ "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Corporate Marketing Associate", @@ -444,7 +479,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Future Identity Specialist", @@ -458,14 +493,14 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Functionality Manager", "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Web Assistant", @@ -486,21 +521,21 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Data Consultant", "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Chief Markets Agent", "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Lead Accountability Orchestrator", @@ -514,14 +549,14 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Product Integration Officer", "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Chief Integration Architect", @@ -549,7 +584,7 @@ "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Data Strategist", @@ -563,7 +598,7 @@ "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Usability Representative", @@ -620,6 +655,13 @@ "License": "Try to synthesize the PNG application, maybe it will synthesize the auxiliary application!", "LicenseInformationOrigin": 1 }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Future Group Director", "PackageVersion": "2.3.4", @@ -632,6 +674,6 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 1e47ed1c..29d14cd8 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -4,7 +4,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Principal Functionality Agent", @@ -35,7 +35,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Interactions Developer", @@ -49,14 +49,14 @@ "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Data Consultant", "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Group Technician", @@ -70,21 +70,21 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Accountability Coordinator", "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Global Implementation Engineer", "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Functionality Designer", @@ -145,14 +145,14 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Dynamic Research Representative", "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Liaison", @@ -201,7 +201,7 @@ "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Senior Operations Engineer", @@ -231,6 +231,13 @@ "License": "You can\u0027t connect the panel without bypassing the bluetooth SSL panel!", "LicenseInformationOrigin": 0 }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Senior Brand Developer", "PackageVersion": "4.4.1", @@ -266,14 +273,14 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Directives Specialist", "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Chief Integration Architect", @@ -289,12 +296,19 @@ "License": "The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive!", "LicenseInformationOrigin": 2 }, + { + "PackageId": "Legacy Interactions Analyst", + "PackageVersion": "3.0.8", + "PackageProjectUrl": "http://logan.net", + "License": "You can\u0027t parse the hard drive without generating the digital AGP hard drive!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Senior Implementation Associate", "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Dynamic Division Consultant", @@ -315,7 +329,7 @@ "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Future Group Director", @@ -343,7 +357,7 @@ "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Usability Representative", @@ -385,14 +399,21 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Configuration Assistant", "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 + }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Central Security Representative", @@ -406,14 +427,14 @@ "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Branding Facilitator", @@ -422,12 +443,19 @@ "License": "We need to connect the optical SQL capacitor!", "LicenseInformationOrigin": 2 }, + { + "PackageId": "District Factors Assistant", + "PackageVersion": "9.8.2", + "PackageProjectUrl": "https://ernestine.net", + "License": "Try to compress the SMS bus, maybe it will compress the bluetooth bus!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Corporate Program Facilitator", "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Consultant", @@ -441,7 +469,7 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -450,19 +478,26 @@ "License": "I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!", "LicenseInformationOrigin": 0 }, + { + "PackageId": "Global Configuration Planner", + "PackageVersion": "2.6.3", + "PackageProjectUrl": "http://willis.name", + "License": "connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Functionality Manager", "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Usability Manager", "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Lead Factors Planner", @@ -483,7 +518,14 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 + }, + { + "PackageId": "Principal Solutions Supervisor", + "PackageVersion": "6.1.2", + "PackageProjectUrl": "https://ari.biz", + "License": "programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Central Creative Analyst", @@ -511,7 +553,7 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Research Producer", @@ -597,7 +639,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Future Identity Specialist", @@ -667,14 +709,14 @@ "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Forward Infrastructure Specialist", "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Group Designer", @@ -688,7 +730,7 @@ "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Product Operations Liaison", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt index 9b372a83..16d66563 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Principal Functionality Agent", "PackageVersion": "1.5.3", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index 17b7666e..287229a5 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Principal Functionality Agent", "PackageVersion": "1.5.3", @@ -356,7 +363,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Accounts Technician", @@ -511,6 +518,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index bfa85ac8..00d17296 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Principal Functionality Agent", "PackageVersion": "1.5.3", @@ -93,6 +100,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index 08966796..faef73ae 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Principal Functionality Agent", "PackageVersion": "1.5.3", @@ -99,7 +106,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", @@ -163,6 +170,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt index ca6a13c8..8a85e65c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt @@ -35,7 +35,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Customer Research Associate", @@ -44,12 +44,19 @@ "License": "I\u0027ll navigate the neural SAS card, that should card the SAS card!", "LicenseInformationOrigin": 1 }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Functionality Designer", @@ -98,14 +105,21 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 + }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Global Implementation Engineer", "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Tactics Liaison", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index b88a3f29..60be9132 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -28,7 +28,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Functionality Designer", @@ -42,7 +42,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Lead Intranet Officer", @@ -104,7 +104,7 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Usability Specialist", @@ -243,7 +243,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Liaison", @@ -287,7 +287,14 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 + }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Infrastructure Planner", @@ -461,7 +468,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Chief Integration Architect", @@ -507,6 +514,13 @@ "License": "If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall!", "LicenseInformationOrigin": 0 }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Research Associate", "PackageVersion": "4.6.5", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index 835ab69e..6e02c45c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -11,14 +11,21 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 + }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "District Intranet Strategist", "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -32,7 +39,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Functionality Agent", @@ -63,7 +70,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "National Tactics Liaison", @@ -177,7 +184,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Assurance Representative", @@ -192,5 +199,12 @@ "PackageProjectUrl": "http://grayce.info", "License": "You can\u0027t index the protocol without indexing the open-source XML protocol!", "LicenseInformationOrigin": 0 + }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index d2e7860c..e76a52a4 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -42,7 +42,14 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 + }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 }, { "PackageId": "National Solutions Coordinator", @@ -82,7 +89,7 @@ "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", @@ -130,7 +137,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -203,7 +210,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -240,7 +247,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "International Mobility Technician", @@ -254,7 +261,14 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 + }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Future Identity Specialist", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt index c422edb5..da05b284 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt @@ -43,5 +43,12 @@ "PackageProjectUrl": "https://jayne.name", "License": "I\u0027ll override the digital SMTP interface, that should interface the SMTP interface!", "LicenseInformationOrigin": 0 + }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index da5f808f..2ce26915 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -326,6 +326,13 @@ ], "LicenseInformationOrigin": 2 }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Direct Intranet Facilitator", "PackageVersion": "7.1.7", @@ -369,7 +376,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -406,7 +413,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Research Facilitator", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index 54ec1d1c..b518f77c 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -80,7 +80,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", @@ -109,6 +109,13 @@ ], "LicenseInformationOrigin": 0 }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "International Mobility Technician", "PackageVersion": "3.7.5", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index 92af87f2..3f24512a 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -73,7 +73,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -110,7 +110,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Accounts Technician", @@ -139,6 +139,13 @@ ], "LicenseInformationOrigin": 0 }, + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Future Identity Specialist", "PackageVersion": "4.7.4", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt index ad47dbb9..2a2d4265 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt @@ -1 +1,9 @@ -[] \ No newline at end of file +[ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + } +] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index df6b0e70..d4f6b9ba 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "International Mobility Technician", "PackageVersion": "3.7.5", @@ -39,7 +46,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -55,6 +62,13 @@ "License": "If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!", "LicenseInformationOrigin": 1 }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Research Associate", "PackageVersion": "4.6.5", @@ -67,7 +81,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Corporate Marketing Associate", @@ -81,14 +95,14 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Chief Integration Architect", @@ -116,14 +130,28 @@ "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Chief Directives Executive", "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 + }, + { + "PackageId": "District Factors Assistant", + "PackageVersion": "9.8.2", + "PackageProjectUrl": "https://ernestine.net", + "License": "Try to compress the SMS bus, maybe it will compress the bluetooth bus!", + "LicenseInformationOrigin": 3 + }, + { + "PackageId": "Legacy Interactions Analyst", + "PackageVersion": "3.0.8", + "PackageProjectUrl": "http://logan.net", + "License": "You can\u0027t parse the hard drive without generating the digital AGP hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Accountability Specialist", @@ -137,7 +165,7 @@ "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Lead Tactics Executive", @@ -186,7 +214,7 @@ "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Data Strategist", @@ -200,7 +228,7 @@ "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Group Technician", @@ -228,14 +256,14 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Dynamic Research Representative", "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Internal Accounts Specialist", @@ -249,7 +277,7 @@ "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Division Planner", @@ -270,21 +298,21 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Legacy Branding Orchestrator", "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Forward Infrastructure Specialist", "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Future Group Director", @@ -300,6 +328,13 @@ "License": "We need to connect the optical SQL capacitor!", "LicenseInformationOrigin": 2 }, + { + "PackageId": "Global Configuration Planner", + "PackageVersion": "2.6.3", + "PackageProjectUrl": "http://willis.name", + "License": "connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Assurance Consultant", "PackageVersion": "5.6.2", @@ -314,6 +349,13 @@ "License": "I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!", "LicenseInformationOrigin": 2 }, + { + "PackageId": "Principal Solutions Supervisor", + "PackageVersion": "6.1.2", + "PackageProjectUrl": "https://ari.biz", + "License": "programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Product Paradigm Director", "PackageVersion": "6.3.8", @@ -340,7 +382,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Central Creative Analyst", @@ -368,21 +410,21 @@ "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Configuration Assistant", "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Implementation Associate", "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Research Producer", @@ -396,7 +438,7 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Group Associate", @@ -417,7 +459,7 @@ "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Division Agent", @@ -438,14 +480,14 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Directives Specialist", "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Web Assistant", @@ -466,7 +508,7 @@ "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Product Marketing Strategist", @@ -494,7 +536,7 @@ "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Directives Designer", @@ -515,7 +557,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Tactics Technician", @@ -529,7 +571,7 @@ "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Operations Engineer", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index c6437c99..8e5411ff 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "International Mobility Technician", "PackageVersion": "3.7.5", @@ -39,7 +46,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -55,6 +62,13 @@ "License": "If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!", "LicenseInformationOrigin": 1 }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Research Associate", "PackageVersion": "4.6.5", @@ -67,7 +81,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Corporate Marketing Associate", @@ -81,14 +95,14 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Chief Integration Architect", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index d1981e99..b76861d7 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "International Mobility Technician", "PackageVersion": "3.7.5", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index d978232b..280184a5 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -96,7 +96,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Markets Designer", @@ -186,7 +186,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Intranet Officer", @@ -298,7 +298,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Human Usability Specialist", @@ -389,7 +389,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -426,7 +426,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Accounts Associate", @@ -470,7 +470,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -672,6 +672,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index 897f720f..3bb1e1cd 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -42,7 +42,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Functionality Agent", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 16a20dd8..87e221f4 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -126,7 +126,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -163,6 +163,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index a29e30f8..b3318e4e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -171,7 +171,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Human Usability Specialist", @@ -305,7 +305,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -342,7 +342,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "National Accounts Liaison", @@ -361,7 +361,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Accounts Associate", @@ -405,7 +405,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -627,7 +627,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Intranet Facilitator", @@ -672,6 +672,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index 0f8902a7..831ff02d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -66,7 +66,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 78df5725..863e5234 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -91,7 +91,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Accounts Technician", @@ -163,6 +163,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index 4483ed10..e116c5b3 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -60,7 +60,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Markets Designer", @@ -402,7 +402,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -439,7 +439,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "National Accounts Liaison", @@ -458,7 +458,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -521,7 +521,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Dynamic Marketing Consultant", @@ -544,7 +544,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Optimization Representative", @@ -672,6 +672,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index bfa85ac8..32e27d2f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -93,6 +93,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index 08966796..d6239a0f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -99,7 +99,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", @@ -163,6 +163,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index 2bff7c6a..ea135aa8 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -167,7 +167,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Program Technician", @@ -276,7 +276,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Accounts Associate", @@ -320,7 +320,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -357,7 +357,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Research Facilitator", @@ -423,7 +423,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Optimization Representative", @@ -543,7 +543,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Global Branding Associate", @@ -672,6 +672,6 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index bfa85ac8..32e27d2f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -93,6 +93,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index 7ae83114..e94c0adf 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -126,7 +126,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -163,6 +163,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index 002bc28b..a6d751d3 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -40,7 +40,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Response Associate", @@ -76,7 +76,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Creative Liaison", @@ -115,7 +115,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Intranet Officer", @@ -442,7 +442,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -479,7 +479,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Research Facilitator", @@ -613,7 +613,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Optimization Orchestrator", @@ -672,6 +672,6 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index 0f8902a7..831ff02d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -66,7 +66,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index dd8d8774..35f872d4 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -66,7 +66,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -103,7 +103,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Accounts Technician", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 6ec47efe..1238428a 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -18,7 +18,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Identity Specialist", @@ -53,7 +53,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -74,7 +74,7 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Infrastructure Liaison", @@ -95,14 +95,14 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Operations Executive", "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Marketing Associate", @@ -116,21 +116,21 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Architect", "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Chief Integration Architect", @@ -158,21 +158,21 @@ "PackageVersion": "8.0.4", "PackageProjectUrl": "https://luisa.biz", "License": "The RAM panel is down, transmit the online panel so we can transmit the RAM panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Accountability Strategist", "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Chief Directives Executive", "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "District Factors Assistant", @@ -193,7 +193,7 @@ "PackageVersion": "4.6.0", "PackageProjectUrl": "http://nathaniel.name", "License": "overriding the interface won\u0027t do anything, we need to connect the digital GB interface!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Accountability Specialist", @@ -207,7 +207,7 @@ "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Lead Tactics Executive", @@ -256,7 +256,7 @@ "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Data Strategist", @@ -270,14 +270,14 @@ "PackageVersion": "2.7.5", "PackageProjectUrl": "http://barney.com", "License": "You can\u0027t program the alarm without overriding the cross-platform RSS alarm!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Product Integration Officer", "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Group Technician", @@ -305,14 +305,14 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Dynamic Research Representative", "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Internal Accounts Specialist", @@ -326,7 +326,7 @@ "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Division Planner", @@ -347,35 +347,35 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Legacy Branding Orchestrator", "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Product Infrastructure Orchestrator", "PackageVersion": "5.0.6", "PackageProjectUrl": "http://forrest.com", "License": "If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Forward Infrastructure Specialist", "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Directives Analyst", "PackageVersion": "9.3.0", "PackageProjectUrl": "http://bridie.biz", "License": "Try to navigate the SCSI firewall, maybe it will navigate the digital firewall!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Group Director", @@ -417,7 +417,7 @@ "PackageVersion": "0.1.8", "PackageProjectUrl": "https://crystal.info", "License": "We need to transmit the back-end PCI panel!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Principal Solutions Supervisor", @@ -445,14 +445,14 @@ "PackageVersion": "2.8.1", "PackageProjectUrl": "https://chance.name", "License": "You can\u0027t parse the bandwidth without quantifying the wireless THX bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Product Security Developer", "PackageVersion": "4.4.5", "PackageProjectUrl": "https://maida.org", "License": "parsing the driver won\u0027t do anything, we need to parse the primary TCP driver!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Paradigm Administrator", @@ -466,7 +466,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Central Creative Analyst", @@ -487,7 +487,7 @@ "PackageVersion": "1.1.5", "PackageProjectUrl": "https://shayne.name", "License": "If we transmit the application, we can get to the SAS application through the wireless SAS application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Usability Manager", @@ -501,28 +501,28 @@ "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Configuration Assistant", "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Direct Group Consultant", "PackageVersion": "8.8.0", "PackageProjectUrl": "https://alana.org", "License": "I\u0027ll index the neural SDD bus, that should bus the SDD bus!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Implementation Associate", "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Research Producer", @@ -536,7 +536,7 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Group Associate", @@ -557,14 +557,14 @@ "PackageVersion": "5.6.1", "PackageProjectUrl": "http://kiley.org", "License": "We need to connect the bluetooth RAM application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Data Consultant", "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Division Agent", @@ -578,7 +578,7 @@ "PackageVersion": "5.9.7", "PackageProjectUrl": "http://danial.org", "License": "Try to connect the TCP circuit, maybe it will connect the back-end circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Optimization Assistant", @@ -592,14 +592,14 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Directives Specialist", "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Web Assistant", @@ -620,7 +620,7 @@ "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Product Marketing Strategist", @@ -648,7 +648,7 @@ "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Directives Designer", @@ -669,7 +669,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Tactics Technician", @@ -683,14 +683,14 @@ "PackageVersion": "2.1.6", "PackageProjectUrl": "https://liana.net", "License": "Use the auxiliary RSS sensor, then you can program the auxiliary sensor!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Functionality Manager", "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Operations Engineer", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index 1e9bcf30..9114f0b7 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -18,7 +18,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Identity Specialist", @@ -53,7 +53,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -74,7 +74,7 @@ "PackageVersion": "9.8.6", "PackageProjectUrl": "https://malcolm.net", "License": "I\u0027ll quantify the bluetooth SQL circuit, that should circuit the SQL circuit!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Infrastructure Liaison", @@ -95,14 +95,14 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Operations Executive", "PackageVersion": "1.8.1", "PackageProjectUrl": "http://angel.info", "License": "We need to back up the solid state XML application!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Corporate Marketing Associate", @@ -116,21 +116,21 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "National Tactics Architect", "PackageVersion": "6.7.8", "PackageProjectUrl": "https://valentina.net", "License": "The PNG protocol is down, index the digital protocol so we can index the PNG protocol!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Chief Integration Architect", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index bf98582c..f85c9504 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -18,7 +18,7 @@ "PackageVersion": "4.2.2", "PackageProjectUrl": "https://bettie.com", "License": "Try to generate the EXE array, maybe it will generate the mobile array!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Future Identity Specialist", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index d978232b..280184a5 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -96,7 +96,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Markets Designer", @@ -186,7 +186,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Intranet Officer", @@ -298,7 +298,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Human Usability Specialist", @@ -389,7 +389,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -426,7 +426,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Direct Accounts Associate", @@ -470,7 +470,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -672,6 +672,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index 897f720f..3bb1e1cd 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -42,7 +42,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Principal Functionality Agent", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 16a20dd8..87e221f4 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -126,7 +126,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -163,6 +163,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index a29e30f8..b3318e4e 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -171,7 +171,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Human Usability Specialist", @@ -305,7 +305,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -342,7 +342,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "National Accounts Liaison", @@ -361,7 +361,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Accounts Associate", @@ -405,7 +405,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -627,7 +627,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Intranet Facilitator", @@ -672,6 +672,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index 0f8902a7..831ff02d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -66,7 +66,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 78df5725..863e5234 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -91,7 +91,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Accounts Technician", @@ -163,6 +163,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index 4483ed10..e116c5b3 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -60,7 +60,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Markets Designer", @@ -402,7 +402,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -439,7 +439,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "National Accounts Liaison", @@ -458,7 +458,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Regional Accounts Technician", @@ -521,7 +521,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Dynamic Marketing Consultant", @@ -544,7 +544,7 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Optimization Representative", @@ -672,6 +672,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index bfa85ac8..32e27d2f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -93,6 +93,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index 08966796..d6239a0f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -99,7 +99,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", @@ -163,6 +163,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index 2bff7c6a..ea135aa8 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -167,7 +167,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Customer Program Technician", @@ -276,7 +276,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Direct Accounts Associate", @@ -320,7 +320,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Senior Brand Developer", @@ -357,7 +357,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Research Facilitator", @@ -423,7 +423,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Optimization Representative", @@ -543,7 +543,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Global Branding Associate", @@ -672,6 +672,6 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index bfa85ac8..32e27d2f 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -93,6 +93,6 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index 7ae83114..e94c0adf 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -126,7 +126,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -163,6 +163,6 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index 002bc28b..a6d751d3 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -40,7 +40,7 @@ "Context": "http://erica.org" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Global Response Associate", @@ -76,7 +76,7 @@ } ], "License": "The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth!", - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Creative Liaison", @@ -115,7 +115,7 @@ "Context": "http://daisha.biz" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Lead Intranet Officer", @@ -442,7 +442,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -479,7 +479,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Research Facilitator", @@ -613,7 +613,7 @@ "Context": "https://hazel.net" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 }, { "PackageId": "Legacy Optimization Orchestrator", @@ -672,6 +672,6 @@ "Context": "https://verlie.com" } ], - "LicenseInformationOrigin": 3 + "LicenseInformationOrigin": 4 } ] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index 0f8902a7..831ff02d 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -66,7 +66,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Regional Accounts Technician", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index dd8d8774..35f872d4 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -66,7 +66,7 @@ } ], "License": "synthesizing the feed won\u0027t do anything, we need to index the auxiliary SMTP feed!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Brand Developer", @@ -103,7 +103,7 @@ } ], "License": "If we override the system, we can get to the CSS system through the neural CSS system!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Accounts Technician", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt index ad47dbb9..2a2d4265 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt @@ -1 +1,9 @@ -[] \ No newline at end of file +[ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + } +] \ No newline at end of file diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index df6b0e70..d4f6b9ba 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "International Mobility Technician", "PackageVersion": "3.7.5", @@ -39,7 +46,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -55,6 +62,13 @@ "License": "If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!", "LicenseInformationOrigin": 1 }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Research Associate", "PackageVersion": "4.6.5", @@ -67,7 +81,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Corporate Marketing Associate", @@ -81,14 +95,14 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Chief Integration Architect", @@ -116,14 +130,28 @@ "PackageVersion": "0.5.2", "PackageProjectUrl": "https://stuart.com", "License": "You can\u0027t parse the firewall without navigating the solid state ADP firewall!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Chief Directives Executive", "PackageVersion": "9.4.9", "PackageProjectUrl": "http://jedediah.net", "License": "Try to back up the THX interface, maybe it will back up the auxiliary interface!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 + }, + { + "PackageId": "District Factors Assistant", + "PackageVersion": "9.8.2", + "PackageProjectUrl": "https://ernestine.net", + "License": "Try to compress the SMS bus, maybe it will compress the bluetooth bus!", + "LicenseInformationOrigin": 3 + }, + { + "PackageId": "Legacy Interactions Analyst", + "PackageVersion": "3.0.8", + "PackageProjectUrl": "http://logan.net", + "License": "You can\u0027t parse the hard drive without generating the digital AGP hard drive!", + "LicenseInformationOrigin": 3 }, { "PackageId": "Senior Accountability Specialist", @@ -137,7 +165,7 @@ "PackageVersion": "0.3.8", "PackageProjectUrl": "http://myriam.name", "License": "quantifying the card won\u0027t do anything, we need to navigate the virtual USB card!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Lead Tactics Executive", @@ -186,7 +214,7 @@ "PackageVersion": "9.0.6", "PackageProjectUrl": "https://michelle.org", "License": "Try to connect the XSS alarm, maybe it will connect the auxiliary alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Data Strategist", @@ -200,7 +228,7 @@ "PackageVersion": "3.3.6", "PackageProjectUrl": "https://howard.org", "License": "Use the primary PNG matrix, then you can copy the primary matrix!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Group Technician", @@ -228,14 +256,14 @@ "PackageVersion": "9.4.1", "PackageProjectUrl": "https://bonita.biz", "License": "I\u0027ll hack the redundant SCSI monitor, that should monitor the SCSI monitor!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Dynamic Research Representative", "PackageVersion": "1.6.9", "PackageProjectUrl": "https://carol.org", "License": "You can\u0027t copy the alarm without synthesizing the 1080p IB alarm!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Internal Accounts Specialist", @@ -249,7 +277,7 @@ "PackageVersion": "2.7.4", "PackageProjectUrl": "https://vida.net", "License": "I\u0027ll navigate the mobile TCP bus, that should bus the TCP bus!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Investor Division Planner", @@ -270,21 +298,21 @@ "PackageVersion": "5.9.9", "PackageProjectUrl": "http://julio.info", "License": "Use the neural IB matrix, then you can generate the neural matrix!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Legacy Branding Orchestrator", "PackageVersion": "0.2.6", "PackageProjectUrl": "https://keeley.net", "License": "We need to bypass the back-end FTP alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Forward Infrastructure Specialist", "PackageVersion": "6.1.6", "PackageProjectUrl": "http://melisa.com", "License": "quantifying the driver won\u0027t do anything, we need to synthesize the neural PNG driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Future Group Director", @@ -300,6 +328,13 @@ "License": "We need to connect the optical SQL capacitor!", "LicenseInformationOrigin": 2 }, + { + "PackageId": "Global Configuration Planner", + "PackageVersion": "2.6.3", + "PackageProjectUrl": "http://willis.name", + "License": "connecting the circuit won\u0027t do anything, we need to copy the online EXE circuit!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Assurance Consultant", "PackageVersion": "5.6.2", @@ -314,6 +349,13 @@ "License": "I\u0027ll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth!", "LicenseInformationOrigin": 2 }, + { + "PackageId": "Principal Solutions Supervisor", + "PackageVersion": "6.1.2", + "PackageProjectUrl": "https://ari.biz", + "License": "programming the driver won\u0027t do anything, we need to parse the 1080p AGP driver!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Product Paradigm Director", "PackageVersion": "6.3.8", @@ -340,7 +382,7 @@ "PackageVersion": "5.4.8", "PackageProjectUrl": "https://maye.org", "License": "We need to override the auxiliary AGP firewall!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Central Creative Analyst", @@ -368,21 +410,21 @@ "PackageVersion": "8.8.4", "PackageProjectUrl": "http://dayana.name", "License": "I\u0027ll hack the optical COM alarm, that should alarm the COM alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Configuration Assistant", "PackageVersion": "0.1.1", "PackageProjectUrl": "https://aurelia.info", "License": "We need to hack the mobile SMS circuit!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Implementation Associate", "PackageVersion": "8.2.9", "PackageProjectUrl": "http://roderick.org", "License": "synthesizing the bandwidth won\u0027t do anything, we need to generate the wireless ADP bandwidth!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Legacy Research Producer", @@ -396,7 +438,7 @@ "PackageVersion": "5.8.2", "PackageProjectUrl": "http://chelsea.com", "License": "I\u0027ll compress the auxiliary XSS port, that should port the XSS port!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "District Group Associate", @@ -417,7 +459,7 @@ "PackageVersion": "6.3.3", "PackageProjectUrl": "https://heath.name", "License": "Use the haptic XML driver, then you can index the haptic driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Internal Division Agent", @@ -438,14 +480,14 @@ "PackageVersion": "9.2.8", "PackageProjectUrl": "https://brett.biz", "License": "The FTP card is down, index the digital card so we can index the FTP card!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Human Directives Specialist", "PackageVersion": "4.3.4", "PackageProjectUrl": "http://tabitha.name", "License": "I\u0027ll reboot the virtual CSS program, that should program the CSS program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Forward Web Assistant", @@ -466,7 +508,7 @@ "PackageVersion": "5.5.0", "PackageProjectUrl": "http://erling.name", "License": "Try to back up the COM driver, maybe it will back up the bluetooth driver!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Product Marketing Strategist", @@ -494,7 +536,7 @@ "PackageVersion": "2.5.0", "PackageProjectUrl": "http://danial.name", "License": "overriding the interface won\u0027t do anything, we need to override the virtual THX interface!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Internal Directives Designer", @@ -515,7 +557,7 @@ "PackageVersion": "6.5.0", "PackageProjectUrl": "https://delilah.org", "License": "generating the driver won\u0027t do anything, we need to hack the auxiliary HDD driver!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Regional Tactics Technician", @@ -529,7 +571,7 @@ "PackageVersion": "5.9.0", "PackageProjectUrl": "https://mariane.info", "License": "The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Senior Operations Engineer", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index c6437c99..8e5411ff 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "International Mobility Technician", "PackageVersion": "3.7.5", @@ -39,7 +46,7 @@ "PackageVersion": "6.0.7", "PackageProjectUrl": "http://antonette.org", "License": "I\u0027ll calculate the 1080p HDD system, that should system the HDD system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Forward Integration Executive", @@ -55,6 +62,13 @@ "License": "If we program the pixel, we can get to the SMS pixel through the neural SMS pixel!", "LicenseInformationOrigin": 1 }, + { + "PackageId": "Customer Infrastructure Liaison", + "PackageVersion": "0.8.0", + "PackageProjectUrl": "https://otho.biz", + "License": "Use the haptic RSS hard drive, then you can back up the haptic hard drive!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "Customer Research Associate", "PackageVersion": "4.6.5", @@ -67,7 +81,7 @@ "PackageVersion": "8.4.8", "PackageProjectUrl": "https://carleton.info", "License": "Use the cross-platform THX system, then you can generate the cross-platform system!", - "LicenseInformationOrigin": 0 + "LicenseInformationOrigin": 1 }, { "PackageId": "Corporate Marketing Associate", @@ -81,14 +95,14 @@ "PackageVersion": "2.2.2", "PackageProjectUrl": "http://everett.name", "License": "We need to reboot the virtual RSS alarm!", - "LicenseInformationOrigin": 2 + "LicenseInformationOrigin": 3 }, { "PackageId": "Customer Assurance Officer", "PackageVersion": "0.3.1", "PackageProjectUrl": "https://kyla.biz", "License": "Try to override the EXE program, maybe it will override the mobile program!", - "LicenseInformationOrigin": 1 + "LicenseInformationOrigin": 2 }, { "PackageId": "Chief Integration Architect", diff --git a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index d1981e99..b76861d7 100644 --- a/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/JsonOutputFormatterTest(True,True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1,4 +1,11 @@ [ + { + "PackageId": "Legacy Metrics Planner", + "PackageVersion": "9.5.0", + "PackageProjectUrl": "http://madisyn.name", + "License": "I\u0027ll override the haptic AGP feed, that should feed the AGP feed!", + "LicenseInformationOrigin": 3 + }, { "PackageId": "International Mobility Technician", "PackageVersion": "3.7.5", diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt index c5e2cf3c..00ce6494 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | | | | | | Guadalupe | http://otho.info | | | | | | General | https://skylar.name | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index b730928e..1c56a62c 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -1,14 +1,14 @@ +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -20,12 +20,12 @@ | | | | | | Daryl | https://jerrod.com | | | | | | | Laila | http://caleigh.net | | | | | | | Adolfo | http://daisha.biz | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -37,16 +37,16 @@ | National Accounts Liaison | 7.2.6 | Ignored | | | Cedrick | https://zachariah.net | | | | | | | Marcelle | https://adah.org | | | | | | | Barney | http://erica.org | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | @@ -57,12 +57,12 @@ | | | | | | Melissa | https://sandra.biz | | | | | | | Pearline | https://noble.net | | | | | | | Dusty | https://verlie.com | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -90,19 +90,19 @@ | | | | | | Jerod | https://vicenta.info | | | | | | | Kayli | https://shaun.net | | | | | | | Antwan | https://hazel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | | | | | | | Pablo | https://maxime.biz | | | | | | | Shaun | https://concepcion.net | | | | | | | Moises | http://rupert.info | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -112,7 +112,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index d5ef80c4..4b39911a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -10,11 +10,11 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 4937720d..31f538ab 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -1,17 +1,17 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt index 63a863b9..e1c07d1d 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt @@ -2,107 +2,107 @@ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+-----------+-----------------------+ | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | | Human Optimization Director | 0.1.8 | Ignored | We need to transmit the back-end PCI panel! | https://crystal.info | | | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | | | Direct Research Assistant | 5.9.7 | Ignored | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | http://danial.org | | | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | | | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | | | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | | District Directives Analyst | 9.3.0 | Ignored | Try to navigate the SCSI firewall, maybe it will navigate the digital firewall! | http://bridie.biz | | | | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | | Product Infrastructure Orchestrator | 5.0.6 | Ignored | If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit! | http://forrest.com | | | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | | | | Customer Applications Developer | 5.6.1 | Ignored | We need to connect the bluetooth RAM application! | http://kiley.org | | | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | | | -| Legacy Interactions Analyst | 3.0.8 | Ignored | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | | Regional Accountability Assistant | 2.7.5 | Ignored | You can't program the alarm without overriding the cross-platform RSS alarm! | http://barney.com | | | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | | District Metrics Analyst | 4.6.0 | Ignored | overriding the interface won't do anything, we need to connect the digital GB interface! | http://nathaniel.name | | | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | | | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | -| District Factors Assistant | 9.8.2 | Ignored | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | | | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | | | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | | | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | | | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | | | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | | | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | | | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | | | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | | Dynamic Brand Officer | 1.1.5 | Ignored | If we transmit the application, we can get to the SAS application through the wireless SAS application! | https://shayne.name | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | | Legacy Implementation Assistant | 2.1.6 | Ignored | Use the auxiliary RSS sensor, then you can program the auxiliary sensor! | https://liana.net | | | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | | | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | | Direct Group Consultant | 8.8.0 | Ignored | I'll index the neural SDD bus, that should bus the SDD bus! | https://alana.org | | | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | | Product Intranet Assistant | 2.8.1 | Ignored | You can't parse the bandwidth without quantifying the wireless THX bandwidth! | https://chance.name | | | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | | | | Product Security Developer | 4.4.5 | Ignored | parsing the driver won't do anything, we need to parse the primary TCP driver! | https://maida.org | | | -| Principal Solutions Supervisor | 6.1.2 | Ignored | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | | | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | | | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | | | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | | | Customer Group Manager | 8.0.4 | Ignored | The RAM panel is down, transmit the online panel so we can transmit the RAM panel! | https://luisa.biz | | | -| Global Configuration Planner | 2.6.3 | Ignored | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index 2ec904b3..206f27bb 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -1,35 +1,35 @@ +----------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+-------------+------------------------+ -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | | Product Infrastructure Orchestrator | 5.0.6 | Ignored | If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit! | http://forrest.com | | | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | | Customer Applications Developer | 5.6.1 | Ignored | We need to connect the bluetooth RAM application! | http://kiley.org | | | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | | | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | | | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | | Direct Research Assistant | 5.9.7 | Ignored | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | http://danial.org | | | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | | | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -39,22 +39,22 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | | | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | | Product Intranet Assistant | 2.8.1 | Ignored | You can't parse the bandwidth without quantifying the wireless THX bandwidth! | https://chance.name | | | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | | | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | | | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | | @@ -62,21 +62,21 @@ | | | | | | Melissa | https://sandra.biz | | | | | | | Pearline | https://noble.net | | | | | | | Dusty | https://verlie.com | -| District Factors Assistant | 9.8.2 | Ignored | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Global Configuration Planner | 2.6.3 | Ignored | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | | | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | | | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -85,20 +85,20 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | | District Directives Analyst | 9.3.0 | Ignored | Try to navigate the SCSI firewall, maybe it will navigate the digital firewall! | http://bridie.biz | | | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | | | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -119,15 +119,15 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | | National Accounts Liaison | 7.2.6 | Ignored | | | Cedrick | https://zachariah.net | | | | | | | Marcelle | https://adah.org | | | | | | | Barney | http://erica.org | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | | | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | | | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | | | | Direct Accounts Associate | 3.2.6 | Ignored | | https://vesta.com | Buck | http://taryn.com | @@ -142,16 +142,16 @@ | Legacy Implementation Assistant | 2.1.6 | Ignored | Use the auxiliary RSS sensor, then you can program the auxiliary sensor! | https://liana.net | | | | District Metrics Analyst | 4.6.0 | Ignored | overriding the interface won't do anything, we need to connect the digital GB interface! | http://nathaniel.name | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | | | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -161,14 +161,14 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | | Human Optimization Director | 0.1.8 | Ignored | We need to transmit the back-end PCI panel! | https://crystal.info | | | -| Principal Solutions Supervisor | 6.1.2 | Ignored | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | | | | Dynamic Brand Officer | 1.1.5 | Ignored | If we transmit the application, we can get to the SAS application through the wireless SAS application! | https://shayne.name | | | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | @@ -176,20 +176,20 @@ | | | | | | Shaun | https://concepcion.net | | | | | | | Moises | http://rupert.info | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | | Regional Accountability Assistant | 2.7.5 | Ignored | You can't program the alarm without overriding the cross-platform RSS alarm! | http://barney.com | | | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | | | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | -| Legacy Interactions Analyst | 3.0.8 | Ignored | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | | | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | | Direct Group Consultant | 8.8.0 | Ignored | I'll index the neural SDD bus, that should bus the SDD bus! | https://alana.org | | | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | @@ -197,21 +197,21 @@ | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | | | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | | Customer Group Manager | 8.0.4 | Ignored | The RAM panel is down, transmit the online panel so we can transmit the RAM panel! | https://luisa.biz | | | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | | | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | | Legacy Creative Liaison | 0.4.6 | Ignored | | | Mervin | http://celestine.info | | | | | | | Amalia | https://shanelle.info | | | | | | | Sheila | http://darrell.info | @@ -220,7 +220,7 @@ | | | | | | Daryl | https://jerrod.com | | | | | | | Laila | http://caleigh.net | | | | | | | Adolfo | http://daisha.biz | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index c437a1b2..b2af9e2c 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -2,49 +2,49 @@ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+-----------+-----------------------+ | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | | | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | | Product Infrastructure Orchestrator | 5.0.6 | Ignored | If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit! | http://forrest.com | | | | Direct Research Assistant | 5.9.7 | Ignored | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | http://danial.org | | | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | | | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | | Customer Applications Developer | 5.6.1 | Ignored | We need to connect the bluetooth RAM application! | http://kiley.org | | | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | | | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | | | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | | | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | | | | Regional Accountability Assistant | 2.7.5 | Ignored | You can't program the alarm without overriding the cross-platform RSS alarm! | http://barney.com | | | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | | | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | -| Principal Solutions Supervisor | 6.1.2 | Ignored | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | | | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | | | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | | Customer Group Manager | 8.0.4 | Ignored | The RAM panel is down, transmit the online panel so we can transmit the RAM panel! | https://luisa.biz | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | @@ -55,68 +55,68 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| District Factors Assistant | 9.8.2 | Ignored | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | -| Global Configuration Planner | 2.6.3 | Ignored | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | | | -| Legacy Interactions Analyst | 3.0.8 | Ignored | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | | Product Security Developer | 4.4.5 | Ignored | parsing the driver won't do anything, we need to parse the primary TCP driver! | https://maida.org | | | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | | District Directives Analyst | 9.3.0 | Ignored | Try to navigate the SCSI firewall, maybe it will navigate the digital firewall! | http://bridie.biz | | | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | | | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | | | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | | | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | | | | Direct Group Consultant | 8.8.0 | Ignored | I'll index the neural SDD bus, that should bus the SDD bus! | https://alana.org | | | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | | Legacy Implementation Assistant | 2.1.6 | Ignored | Use the auxiliary RSS sensor, then you can program the auxiliary sensor! | https://liana.net | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | | | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | | | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | | | Product Intranet Assistant | 2.8.1 | Ignored | You can't parse the bandwidth without quantifying the wireless THX bandwidth! | https://chance.name | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | | District Metrics Analyst | 4.6.0 | Ignored | overriding the interface won't do anything, we need to connect the digital GB interface! | http://nathaniel.name | | | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | | | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | | | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | | | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | | Human Optimization Director | 0.1.8 | Ignored | We need to transmit the back-end PCI panel! | https://crystal.info | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | | | Dynamic Brand Officer | 1.1.5 | Ignored | If we transmit the application, we can get to the SAS application through the wireless SAS application! | https://shayne.name | | | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 43ba90d6..ba349e5c 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -2,46 +2,46 @@ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+-------------+-----------------------+ | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | | | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | | | Direct Research Assistant | 5.9.7 | Ignored | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | http://danial.org | | | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | | | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | | Product Infrastructure Orchestrator | 5.0.6 | Ignored | If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit! | http://forrest.com | | | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | | Dynamic Brand Officer | 1.1.5 | Ignored | If we transmit the application, we can get to the SAS application through the wireless SAS application! | https://shayne.name | | | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | | | | Customer Group Manager | 8.0.4 | Ignored | The RAM panel is down, transmit the online panel so we can transmit the RAM panel! | https://luisa.biz | | | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | | | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | | | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | | Senior Brand Developer | 4.4.1 | Unknown | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | | | | | | | Nikki | https://mckayla.info | | | | | | | Kiara | https://floyd.net | @@ -51,58 +51,58 @@ | | | | | | Eldred | http://gabriel.net | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | | | | Regional Accountability Assistant | 2.7.5 | Ignored | You can't program the alarm without overriding the cross-platform RSS alarm! | http://barney.com | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | -| Legacy Interactions Analyst | 3.0.8 | Ignored | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | | | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | | Customer Applications Developer | 5.6.1 | Ignored | We need to connect the bluetooth RAM application! | http://kiley.org | | | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | | | Product Security Developer | 4.4.5 | Ignored | parsing the driver won't do anything, we need to parse the primary TCP driver! | https://maida.org | | | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | | | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | | | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | | Product Intranet Assistant | 2.8.1 | Ignored | You can't parse the bandwidth without quantifying the wireless THX bandwidth! | https://chance.name | | | | Human Optimization Director | 0.1.8 | Ignored | We need to transmit the back-end PCI panel! | https://crystal.info | | | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | | | District Directives Analyst | 9.3.0 | Ignored | Try to navigate the SCSI firewall, maybe it will navigate the digital firewall! | http://bridie.biz | | | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | | | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | | Direct Group Consultant | 8.8.0 | Ignored | I'll index the neural SDD bus, that should bus the SDD bus! | https://alana.org | | | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | | | -| District Factors Assistant | 9.8.2 | Ignored | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | | | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | | | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | | | | Legacy Implementation Assistant | 2.1.6 | Ignored | Use the auxiliary RSS sensor, then you can program the auxiliary sensor! | https://liana.net | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| Global Configuration Planner | 2.6.3 | Ignored | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | | | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | | | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | | | -| Principal Solutions Supervisor | 6.1.2 | Ignored | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | @@ -116,20 +116,20 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | | | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | | | District Metrics Analyst | 4.6.0 | Ignored | overriding the interface won't do anything, we need to connect the digital GB interface! | http://nathaniel.name | | | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | | | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+-------------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt index 73715c2a..0b682155 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt @@ -1,8 +1,8 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index 6482f689..bf6b210b 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -1,8 +1,8 @@ +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -14,12 +14,12 @@ | | | | | | Daryl | https://jerrod.com | | | | | | | Laila | http://caleigh.net | | | | | | | Adolfo | http://daisha.biz | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -28,23 +28,23 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -54,19 +54,19 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -90,7 +90,7 @@ | National Accounts Liaison | 7.2.6 | Ignored | | | Cedrick | https://zachariah.net | | | | | | | Marcelle | https://adah.org | | | | | | | Barney | http://erica.org | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | @@ -106,7 +106,7 @@ | | | | | | Melissa | https://sandra.biz | | | | | | | Pearline | https://noble.net | | | | | | | Dusty | https://verlie.com | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -116,7 +116,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index f967e9a1..54c14a55 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -1,12 +1,12 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index f20523f7..7f1a36a8 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -1,12 +1,12 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | @@ -21,7 +21,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt index 8f2bdae6..3d6cfa6e 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt @@ -1,28 +1,28 @@ +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index 3ef2b1c9..226c58f3 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -2,18 +2,18 @@ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | @@ -22,17 +22,17 @@ | | | | | | Viviane | http://christine.info | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | | | | | | | Horacio | https://loraine.name | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | | Global Response Associate | 1.9.8 | Ignored | The RSS bandwidth is down, compress the wireless bandwidth so we can compress the RSS bandwidth! | | Sandra | http://antonina.com | | | | | | | Willow | https://jason.org | | | | | | | Orland | http://rigoberto.com | @@ -40,7 +40,7 @@ | | | | | | Amari | http://viviane.net | | | | | | | Kelley | http://doris.net | | | | | | | Kennedy | https://milo.net | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -49,13 +49,13 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | | Legacy Creative Liaison | 0.4.6 | Ignored | | | Mervin | http://celestine.info | | | | | | | Amalia | https://shanelle.info | | | | | | | Sheila | http://darrell.info | @@ -80,9 +80,9 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -95,7 +95,7 @@ | National Accounts Liaison | 7.2.6 | Ignored | | | Cedrick | https://zachariah.net | | | | | | | Marcelle | https://adah.org | | | | | | | Barney | http://erica.org | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -105,7 +105,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | @@ -119,27 +119,27 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | @@ -150,5 +150,5 @@ | | | | | | Melissa | https://sandra.biz | | | | | | | Pearline | https://noble.net | | | | | | | Dusty | https://verlie.com | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index 7a172b8c..5319555f 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -2,31 +2,31 @@ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | | | | | | | Miles | https://freddie.com | @@ -36,7 +36,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index aa748576..f0800aed 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -2,35 +2,35 @@ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | | | | | | | Miles | https://freddie.com | @@ -47,9 +47,9 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt index c925e28d..45b57fa8 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt @@ -1,13 +1,13 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index 2c2b3f2c..ba0bbeb3 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -1,8 +1,8 @@ +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -24,53 +24,53 @@ | | | | | | Daryl | https://jerrod.com | | | | | | | Laila | http://caleigh.net | | | | | | | Adolfo | http://daisha.biz | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | | | | | | | Horacio | https://loraine.name | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -80,7 +80,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | | | | | | | Miles | https://freddie.com | @@ -97,7 +97,7 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -107,7 +107,7 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -125,7 +125,7 @@ | | | | | | Jerod | https://vicenta.info | | | | | | | Kayli | https://shaun.net | | | | | | | Antwan | https://hazel.net | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index 46666f9e..3b1f434f 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -1,12 +1,12 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | @@ -17,11 +17,11 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index f42fe720..40f958e3 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -1,8 +1,8 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -23,15 +23,15 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt index a37fb059..e376d42b 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt @@ -1,5 +1,5 @@ +------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 887bd8bc..e21c3b5a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1,104 +1,104 @@ +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | Customer Group Manager | 8.0.4 | Ignored | The RAM panel is down, transmit the online panel so we can transmit the RAM panel! | https://luisa.biz | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | -| District Factors Assistant | 9.8.2 | Ignored | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | -| Legacy Interactions Analyst | 3.0.8 | Ignored | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | District Metrics Analyst | 4.6.0 | Ignored | overriding the interface won't do anything, we need to connect the digital GB interface! | http://nathaniel.name | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | Regional Accountability Assistant | 2.7.5 | Ignored | You can't program the alarm without overriding the cross-platform RSS alarm! | http://barney.com | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | Product Infrastructure Orchestrator | 5.0.6 | Ignored | If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit! | http://forrest.com | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | District Directives Analyst | 9.3.0 | Ignored | Try to navigate the SCSI firewall, maybe it will navigate the digital firewall! | http://bridie.biz | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | -| Global Configuration Planner | 2.6.3 | Ignored | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | Human Optimization Director | 0.1.8 | Ignored | We need to transmit the back-end PCI panel! | https://crystal.info | -| Principal Solutions Supervisor | 6.1.2 | Ignored | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | Product Intranet Assistant | 2.8.1 | Ignored | You can't parse the bandwidth without quantifying the wireless THX bandwidth! | https://chance.name | | Product Security Developer | 4.4.5 | Ignored | parsing the driver won't do anything, we need to parse the primary TCP driver! | https://maida.org | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | Dynamic Brand Officer | 1.1.5 | Ignored | If we transmit the application, we can get to the SAS application through the wireless SAS application! | https://shayne.name | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | Direct Group Consultant | 8.8.0 | Ignored | I'll index the neural SDD bus, that should bus the SDD bus! | https://alana.org | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | Customer Applications Developer | 5.6.1 | Ignored | We need to connect the bluetooth RAM application! | http://kiley.org | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | Direct Research Assistant | 5.9.7 | Ignored | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | http://danial.org | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | Legacy Implementation Assistant | 2.1.6 | Ignored | Use the auxiliary RSS sensor, then you can program the auxiliary sensor! | https://liana.net | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index ba4434b8..862a4f8b 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1,24 +1,24 @@ +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index 34779336..efa7210d 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1,9 +1,9 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt index c5e2cf3c..00ce6494 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | | | | | | Guadalupe | http://otho.info | | | | | | General | https://skylar.name | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index 4ccb8df8..9926ffa4 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -1,23 +1,23 @@ +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -26,28 +26,28 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -59,19 +59,19 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | | | | | | | Pablo | https://maxime.biz | | | | | | | Shaun | https://concepcion.net | | | | | | | Moises | http://rupert.info | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -81,7 +81,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index d5ef80c4..4b39911a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -10,11 +10,11 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 4937720d..31f538ab 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -1,17 +1,17 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt index 131210a1..15f5fa97 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt @@ -2,84 +2,90 @@ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+-----------+-----------------------+ | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | | | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | | | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | | | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | | | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | | | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | | | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | | | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | | | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | | | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | | | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | | | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | | | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | | | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | | | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | | | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | | | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index b85dd4a8..411a27b4 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -1,32 +1,32 @@ +----------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+-------------+------------------------+ -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | | | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | | | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | | | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -36,37 +36,39 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | | | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | | | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | | | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | | | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | | | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -75,19 +77,19 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | | | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -100,22 +102,23 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | | | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | | | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | | | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -125,10 +128,12 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | | | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | @@ -136,16 +141,17 @@ | | | | | | Shaun | https://concepcion.net | | | | | | | Moises | http://rupert.info | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | | | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | @@ -153,21 +159,21 @@ | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | | | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | | | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | | | | | | | Miles | https://freddie.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index 9173fa84..972d0858 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -2,43 +2,45 @@ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+-----------+-----------------------+ | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | | | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | | | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | | | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | | | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | | | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | | | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | | | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | | | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | | | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | | | | | | | Miles | https://freddie.com | @@ -48,52 +50,56 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | | | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | | | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | | | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | | | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | | | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | | | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | | | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index e82b91f3..286357ca 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -2,40 +2,41 @@ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+-------------+-----------------------+ | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | | | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | | | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | | | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | | | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | | | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | | | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | | | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | | | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | | | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | | | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | | Senior Brand Developer | 4.4.1 | Unknown | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | | | | | | | Nikki | https://mckayla.info | | | | | | | Kiara | https://floyd.net | @@ -44,43 +45,48 @@ | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | | | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | | | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | | | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | | | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | | | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | | | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | | | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | | | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | | | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | | | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | | | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | | | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | | | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | | | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | | | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | | | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | | | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | @@ -94,19 +100,19 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | | | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | | | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | | | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | | | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | | | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+-------------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt index a90d5dbf..0b682155 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt @@ -1,7 +1,8 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index 7a5e8804..28331f19 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -1,16 +1,17 @@ +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -19,23 +20,23 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -45,19 +46,19 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -69,12 +70,12 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -84,7 +85,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index 7265e639..54c14a55 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -1,11 +1,12 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index 3e688321..7f1a36a8 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -1,11 +1,12 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | @@ -20,7 +21,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt index 82d76586..fed650df 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt @@ -1,22 +1,24 @@ +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index 1a527267..e9439a07 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -1,17 +1,17 @@ +----------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | @@ -19,18 +19,18 @@ | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | | | | | | | Horacio | https://loraine.name | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -39,13 +39,13 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | | Senior Brand Developer | 4.4.1 | Unknown | If we override the system, we can get to the CSS system through the neural CSS system! | http://adelbert.net | Reid | https://amely.info | | | | | | | Nikki | https://mckayla.info | | | | | | | Kiara | https://floyd.net | @@ -53,8 +53,9 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -64,7 +65,7 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -74,7 +75,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | @@ -88,30 +89,31 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | | | | | | | Pablo | https://maxime.biz | | | | | | | Shaun | https://concepcion.net | | | | | | | Moises | http://rupert.info | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +----------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index 509ad878..233f626e 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -1,27 +1,28 @@ +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | | | | | | | Miles | https://freddie.com | @@ -31,6 +32,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index b7032dd5..e8ba4792 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -1,32 +1,33 @@ +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | | | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | | | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | | | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | | | | | | | Miles | https://freddie.com | @@ -43,7 +44,8 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | | | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt index 09bd4690..09b429d4 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt @@ -1,11 +1,12 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index 3b2264a4..b3f5725b 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -1,57 +1,57 @@ +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | | | | | | | Horacio | https://loraine.name | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -61,6 +61,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | | | | | | | Miles | https://freddie.com | @@ -77,7 +78,7 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -87,7 +88,7 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -96,7 +97,7 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index f854cbc2..a95e8f33 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -1,12 +1,12 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | | Direct Intranet Facilitator | 7.1.7 | Url | synthesizing the feed won't do anything, we need to index the auxiliary SMTP feed! | https://garnet.net | Alisha | http://alyson.name | | | | | | | Carmelo | http://michele.name | | | | | | | Miles | https://freddie.com | @@ -16,10 +16,11 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index 7135ed0e..c3c28892 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -1,8 +1,8 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | | | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -22,14 +22,15 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | | | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | | | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt index d7b31ab8..e376d42b 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt @@ -1,4 +1,5 @@ -+---------+---------+----------------------------+--------------------+---------------------+ -| Package | Version | License Information Origin | License Expression | Package Project Url | -+---------+---------+----------------------------+--------------------+---------------------+ -+---------+---------+----------------------------+--------------------+---------------------+ ++------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ +| Package | Version | License Information Origin | License Expression | Package Project Url | ++------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | ++------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 9b747541..d09e2b7a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1,81 +1,87 @@ +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+ -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index 8d8c9360..36dc1aa8 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1,18 +1,20 @@ +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index 53fce738..45c3025f 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(False,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1,7 +1,8 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt index c5e2cf3c..00ce6494 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | | | | | | Guadalupe | http://otho.info | | | | | | General | https://skylar.name | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index b730928e..1c56a62c 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -1,14 +1,14 @@ +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -20,12 +20,12 @@ | | | | | | Daryl | https://jerrod.com | | | | | | | Laila | http://caleigh.net | | | | | | | Adolfo | http://daisha.biz | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -37,16 +37,16 @@ | National Accounts Liaison | 7.2.6 | Ignored | | | Cedrick | https://zachariah.net | | | | | | | Marcelle | https://adah.org | | | | | | | Barney | http://erica.org | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | @@ -57,12 +57,12 @@ | | | | | | Melissa | https://sandra.biz | | | | | | | Pearline | https://noble.net | | | | | | | Dusty | https://verlie.com | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -90,19 +90,19 @@ | | | | | | Jerod | https://vicenta.info | | | | | | | Kayli | https://shaun.net | | | | | | | Antwan | https://hazel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | | | | | | | Pablo | https://maxime.biz | | | | | | | Shaun | https://concepcion.net | | | | | | | Moises | http://rupert.info | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -112,7 +112,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index d5ef80c4..4b39911a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -10,11 +10,11 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 4937720d..31f538ab 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -1,17 +1,17 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt index a90d5dbf..a5043506 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index 73d580b1..82615f62 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -1,22 +1,22 @@ +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -26,19 +26,19 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | | Dynamic Marketing Consultant | 2.4.9 | Ignored | | | Angie | https://ardella.info | | | | | | | Melissa | https://sandra.biz | | | | | | | Pearline | https://noble.net | | | | | | | Dusty | https://verlie.com | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -47,7 +47,7 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -78,12 +78,12 @@ | | | | | | Jerod | https://vicenta.info | | | | | | | Kayli | https://shaun.net | | | | | | | Antwan | https://hazel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -93,21 +93,21 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | | | | | | | Pablo | https://maxime.biz | | | | | | | Shaun | https://concepcion.net | | | | | | | Moises | http://rupert.info | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index d181fddd..bb391339 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -14,7 +14,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 3ca7932b..2116530a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -1,11 +1,11 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | @@ -18,7 +18,7 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt index a90d5dbf..a5043506 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index f45f0911..a9569538 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -1,7 +1,7 @@ +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -13,12 +13,12 @@ | | | | | | Daryl | https://jerrod.com | | | | | | | Laila | http://caleigh.net | | | | | | | Adolfo | http://daisha.biz | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -27,23 +27,23 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -53,19 +53,19 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -89,7 +89,7 @@ | National Accounts Liaison | 7.2.6 | Ignored | | | Cedrick | https://zachariah.net | | | | | | | Marcelle | https://adah.org | | | | | | | Barney | http://erica.org | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | @@ -105,7 +105,7 @@ | | | | | | Melissa | https://sandra.biz | | | | | | | Pearline | https://noble.net | | | | | | | Dusty | https://verlie.com | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -115,7 +115,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index 7265e639..104974b7 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -1,11 +1,11 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index 3e688321..058341fd 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -1,11 +1,11 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | @@ -20,7 +20,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt index a90d5dbf..a5043506 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index 52b82cf4..3aadb995 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -1,26 +1,26 @@ +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -32,7 +32,7 @@ | | | | | | Amari | http://viviane.net | | | | | | | Kelley | http://doris.net | | | | | | | Kennedy | https://milo.net | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -41,7 +41,7 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | @@ -70,7 +70,7 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -83,7 +83,7 @@ | National Accounts Liaison | 7.2.6 | Ignored | | | Cedrick | https://zachariah.net | | | | | | | Marcelle | https://adah.org | | | | | | | Barney | http://erica.org | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -93,7 +93,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | @@ -107,20 +107,20 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index 7265e639..104974b7 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -1,11 +1,11 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index 9d866597..b78956e4 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -1,17 +1,17 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt index a90d5dbf..a5043506 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index 1419bd0b..666b8323 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -1,7 +1,7 @@ +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -23,50 +23,50 @@ | | | | | | Daryl | https://jerrod.com | | | | | | | Laila | http://caleigh.net | | | | | | | Adolfo | http://daisha.biz | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | | | | | | | Horacio | https://loraine.name | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -92,7 +92,7 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -102,7 +102,7 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -120,7 +120,7 @@ | | | | | | Jerod | https://vicenta.info | | | | | | | Kayli | https://shaun.net | | | | | | | Antwan | https://hazel.net | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index d181fddd..bb391339 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -14,7 +14,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index 1857971a..e4cb0aa4 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -1,7 +1,7 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -21,12 +21,12 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt index a37fb059..e376d42b 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt @@ -1,5 +1,5 @@ +------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 887bd8bc..e21c3b5a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1,104 +1,104 @@ +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | Customer Group Manager | 8.0.4 | Ignored | The RAM panel is down, transmit the online panel so we can transmit the RAM panel! | https://luisa.biz | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | -| District Factors Assistant | 9.8.2 | Ignored | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | -| Legacy Interactions Analyst | 3.0.8 | Ignored | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | | District Metrics Analyst | 4.6.0 | Ignored | overriding the interface won't do anything, we need to connect the digital GB interface! | http://nathaniel.name | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | Regional Accountability Assistant | 2.7.5 | Ignored | You can't program the alarm without overriding the cross-platform RSS alarm! | http://barney.com | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | Product Infrastructure Orchestrator | 5.0.6 | Ignored | If we reboot the circuit, we can get to the PCI circuit through the virtual PCI circuit! | http://forrest.com | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | | District Directives Analyst | 9.3.0 | Ignored | Try to navigate the SCSI firewall, maybe it will navigate the digital firewall! | http://bridie.biz | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | -| Global Configuration Planner | 2.6.3 | Ignored | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | | Human Optimization Director | 0.1.8 | Ignored | We need to transmit the back-end PCI panel! | https://crystal.info | -| Principal Solutions Supervisor | 6.1.2 | Ignored | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | | Product Intranet Assistant | 2.8.1 | Ignored | You can't parse the bandwidth without quantifying the wireless THX bandwidth! | https://chance.name | | Product Security Developer | 4.4.5 | Ignored | parsing the driver won't do anything, we need to parse the primary TCP driver! | https://maida.org | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | | Dynamic Brand Officer | 1.1.5 | Ignored | If we transmit the application, we can get to the SAS application through the wireless SAS application! | https://shayne.name | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | Direct Group Consultant | 8.8.0 | Ignored | I'll index the neural SDD bus, that should bus the SDD bus! | https://alana.org | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | Customer Applications Developer | 5.6.1 | Ignored | We need to connect the bluetooth RAM application! | http://kiley.org | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | | Direct Research Assistant | 5.9.7 | Ignored | Try to connect the TCP circuit, maybe it will connect the back-end circuit! | http://danial.org | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | Legacy Implementation Assistant | 2.1.6 | Ignored | Use the auxiliary RSS sensor, then you can program the auxiliary sensor! | https://liana.net | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | +---------------------------------------+---------+----------------------------+---------------------------------------------------------------------------------------------------------+------------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index ba4434b8..862a4f8b 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1,24 +1,24 @@ +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | | Dynamic Program Administrator | 9.8.6 | Ignored | I'll quantify the bluetooth SQL circuit, that should circuit the SQL circuit! | https://malcolm.net | -| Customer Infrastructure Liaison | 0.8.0 | Ignored | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | | Internal Operations Executive | 1.8.1 | Ignored | We need to back up the solid state XML application! | http://angel.info | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | | National Tactics Architect | 6.7.8 | Ignored | The PNG protocol is down, index the digital protocol so we can index the PNG protocol! | https://valentina.net | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index 34779336..efa7210d 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,False).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1,9 +1,9 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ -| Legacy Metrics Planner | 9.5.0 | Ignored | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | | Principal Markets Executive | 4.2.2 | Ignored | Try to generate the EXE array, maybe it will generate the mobile array! | https://bettie.com | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt index c5e2cf3c..00ce6494 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | Judson | https://wilson.net | | | | | | Guadalupe | http://otho.info | | | | | | General | https://skylar.name | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt index 4ccb8df8..9926ffa4 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=20.verified.txt @@ -1,23 +1,23 @@ +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -26,28 +26,28 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -59,19 +59,19 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | | | | | | | Pablo | https://maxime.biz | | | | | | | Shaun | https://concepcion.net | | | | | | | Moises | http://rupert.info | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -81,7 +81,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt index d5ef80c4..4b39911a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=3.verified.txt @@ -10,11 +10,11 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt index 4937720d..31f538ab 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=0_errorCount=5.verified.txt @@ -1,17 +1,17 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt index a90d5dbf..a5043506 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt index c094c378..ca60b4b4 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=20.verified.txt @@ -1,22 +1,22 @@ +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -26,15 +26,15 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -43,7 +43,7 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -55,12 +55,12 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -70,21 +70,21 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | | | | | | | Pablo | https://maxime.biz | | | | | | | Shaun | https://concepcion.net | | | | | | | Moises | http://rupert.info | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt index d181fddd..bb391339 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=3.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -14,7 +14,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt index 3ca7932b..2116530a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=100_errorCount=5.verified.txt @@ -1,11 +1,11 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | @@ -18,7 +18,7 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt index a90d5dbf..a5043506 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt index 7a5e8804..510cb843 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=20.verified.txt @@ -1,16 +1,16 @@ +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -19,23 +19,23 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -45,19 +45,19 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | @@ -69,12 +69,12 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -84,7 +84,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt index 7265e639..104974b7 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=3.verified.txt @@ -1,11 +1,11 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt index 3e688321..058341fd 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=1_errorCount=5.verified.txt @@ -1,11 +1,11 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | @@ -20,7 +20,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt index a90d5dbf..a5043506 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt index 31a8fa41..627dbf77 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=20.verified.txt @@ -1,31 +1,31 @@ +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | | | | | | | Horacio | https://loraine.name | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -34,7 +34,7 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | @@ -46,7 +46,7 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -56,7 +56,7 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -66,7 +66,7 @@ | | | | | | Flo | http://isidro.net | | | | | | | Dawn | https://anika.org | | | | | | | Silas | http://zane.name | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | @@ -80,20 +80,20 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt index 7265e639..104974b7 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=3.verified.txt @@ -1,11 +1,11 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt index 9d866597..b78956e4 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=20_errorCount=5.verified.txt @@ -1,17 +1,17 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt index a90d5dbf..a5043506 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=1.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt index c5b33c63..648d4fb8 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=20.verified.txt @@ -1,54 +1,54 @@ +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +----------------------------------------+---------+----------------------------+-----------------------------------------------------------------------------------------------+-----------------------+-------------+------------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | -| Lead Intranet Officer | 6.4.9 | Url | | | Margaret | https://michaela.name | +| Lead Intranet Officer | 6.4.9 | Expression | | | Margaret | https://michaela.name | | | | | | | Jody | http://jakob.org | | | | | | | Anjali | https://valentin.info | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | | | | | | | Katelyn | https://judd.com | | | | | | | Earl | https://bradford.biz | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| Human Usability Specialist | 3.2.8 | Expression | | http://micah.info | Evalyn | https://myrtis.name | +| Human Usability Specialist | 3.2.8 | Overwrite | | http://micah.info | Evalyn | https://myrtis.name | | | | | | | Ursula | https://werner.net | | | | | | | Linwood | http://rebekah.org | | | | | | | Cleve | https://claudie.net | | | | | | | Theodora | http://faye.info | -| International Integration Orchestrator | 5.4.5 | Expression | | | Steve | http://lon.org | +| International Integration Orchestrator | 5.4.5 | Overwrite | | | Steve | http://lon.org | | | | | | | Braeden | https://sunny.name | | | | | | | Leslie | http://bettie.info | | | | | | | Edmund | http://sadie.info | | | | | | | Horacio | https://loraine.name | -| Global Branding Associate | 0.5.9 | Expression | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | +| Global Branding Associate | 0.5.9 | Overwrite | If we calculate the firewall, we can get to the HDD firewall through the haptic HDD firewall! | http://cory.com | Suzanne | http://ima.name | | | | | | | Earnestine | http://nathanial.biz | | | | | | | Connor | https://augustus.net | | | | | | | Araceli | http://hailey.biz | | | | | | | Janessa | https://craig.com | | | | | | | Erica | http://kristin.org | | | | | | | Alek | http://shany.biz | -| Lead Markets Designer | 2.8.4 | Unknown | | https://amara.info | Seamus | http://maybell.info | +| Lead Markets Designer | 2.8.4 | Url | | https://amara.info | Seamus | http://maybell.info | | | | | | | Monserrat | http://katrine.name | | | | | | | Abel | https://geovany.com | | | | | | | Diana | http://eula.name | | | | | | | Raphael | https://zackery.info | -| Corporate Tactics Analyst | 3.0.8 | Unknown | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | +| Corporate Tactics Analyst | 3.0.8 | Url | If we synthesize the bus, we can get to the SDD bus through the 1080p SDD bus! | | Bill | http://jairo.net | | | | | | | Clemmie | http://shanny.net | | | | | | | Hildegard | http://conner.name | | | | | | | Isabella | https://kennith.com | | | | | | | Johanna | https://ara.org | | | | | | | Demarco | https://rae.biz | | | | | | | Viviane | http://christine.info | -| Global Optimization Representative | 8.2.6 | Unknown | | | Brandi | https://aniyah.com | +| Global Optimization Representative | 8.2.6 | Url | | | Brandi | https://aniyah.com | | | | | | | Tyson | https://bonita.org | | | | | | | Jazlyn | http://madonna.net | | | | | | | Deangelo | https://jess.info | @@ -74,7 +74,7 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Investor Research Facilitator | 5.7.5 | Expression | | | Avery | http://jarret.biz | +| Investor Research Facilitator | 5.7.5 | Overwrite | | | Avery | http://jarret.biz | | | | | | | Clarissa | https://audreanne.name | | | | | | | Vida | https://theresia.biz | | | | | | | Ransom | http://isom.com | @@ -84,7 +84,7 @@ | | | | | | Candida | https://craig.biz | | | | | | | Timmothy | https://joanny.biz | | | | | | | Alfonzo | http://dorothea.org | -| Customer Program Technician | 1.7.7 | Url | | | Keely | http://obie.org | +| Customer Program Technician | 1.7.7 | Expression | | | Keely | http://obie.org | | | | | | | Caleigh | https://albin.info | | | | | | | Flavie | http://lavonne.biz | | | | | | | Kaitlyn | http://osborne.org | @@ -93,7 +93,7 @@ | | | | | | Austin | https://marty.net | | | | | | | Theresia | http://kristin.net | | | | | | | Lester | https://paige.com | -| Legacy Optimization Orchestrator | 2.4.2 | Url | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | +| Legacy Optimization Orchestrator | 2.4.2 | Expression | If we calculate the sensor, we can get to the PNG sensor through the haptic PNG sensor! | | Damien | https://edyth.com | | | | | | | Princess | http://haylie.biz | | | | | | | Jordane | https://gregorio.com | | | | | | | Opal | http://abbie.org | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt index d181fddd..bb391339 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=3.verified.txt @@ -1,7 +1,7 @@ +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +-------------------------------+---------+----------------------------+--------------------------------------------------------------------------------------+---------------------+-----------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -14,7 +14,7 @@ | | | | | | Albin | http://hal.com | | | | | | | Betsy | http://quinton.com | | | | | | | Emmalee | https://haleigh.name | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt index 1857971a..e4cb0aa4 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicensesWithErrors_Should_PrintCorrectTable_validCount=5_errorCount=5.verified.txt @@ -1,7 +1,7 @@ +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | Error | Error Context | +--------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+-----------------------+-------------+-----------------------+ -| Principal Functionality Agent | 1.5.3 | Expression | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | +| Principal Functionality Agent | 1.5.3 | Overwrite | connecting the firewall won't do anything, we need to copy the digital XSS firewall! | | Judson | https://wilson.net | | | | | | | Guadalupe | http://otho.info | | | | | | | General | https://skylar.name | | | | | | | Haylie | http://audreanne.info | @@ -21,12 +21,12 @@ | | | | | | Leola | https://pietro.info | | | | | | | Arch | http://hazle.org | | | | | | | Eldred | http://gabriel.net | -| Regional Accounts Technician | 2.8.7 | Expression | | | Dawson | http://addie.org | +| Regional Accounts Technician | 2.8.7 | Overwrite | | | Dawson | http://addie.org | | | | | | | Xander | https://everette.info | | | | | | | Otha | https://cletus.net | | | | | | | Carlee | https://jaron.info | | | | | | | Nannie | https://isaias.net | -| National Solutions Coordinator | 8.7.3 | Expression | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | +| National Solutions Coordinator | 8.7.3 | Overwrite | Use the bluetooth USB panel, then you can calculate the bluetooth panel! | https://adrianna.name | Maximillian | http://leola.name | | | | | | | Shaina | http://dean.name | | | | | | | Juana | http://aniya.biz | | | | | | | Fernando | http://shanna.com | diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt index d7b31ab8..e376d42b 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=1.verified.txt @@ -1,4 +1,5 @@ -+---------+---------+----------------------------+--------------------+---------------------+ -| Package | Version | License Information Origin | License Expression | Package Project Url | -+---------+---------+----------------------------+--------------------+---------------------+ -+---------+---------+----------------------------+--------------------+---------------------+ ++------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ +| Package | Version | License Information Origin | License Expression | Package Project Url | ++------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | ++------------------------+---------+----------------------------+-------------------------------------------------------------------+---------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt index 9b747541..d09e2b7a 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=100.verified.txt @@ -1,81 +1,87 @@ +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+ -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | -| Principal Usability Representative | 9.1.3 | Expression | We need to transmit the bluetooth FTP feed! | https://nelson.com | -| Chief Intranet Strategist | 9.7.0 | Expression | We need to copy the redundant JSON transmitter! | https://john.name | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +| Principal Usability Representative | 9.1.3 | Overwrite | We need to transmit the bluetooth FTP feed! | https://nelson.com | +| Chief Intranet Strategist | 9.7.0 | Overwrite | We need to copy the redundant JSON transmitter! | https://john.name | | Customer Accountability Strategist | 0.5.2 | Expression | You can't parse the firewall without navigating the solid state ADP firewall! | https://stuart.com | | Chief Directives Executive | 9.4.9 | Url | Try to back up the THX interface, maybe it will back up the auxiliary interface! | http://jedediah.net | -| Senior Accountability Specialist | 0.8.7 | Url | We need to input the cross-platform RAM system! | http://kristina.info | +| District Factors Assistant | 9.8.2 | Unknown | Try to compress the SMS bus, maybe it will compress the bluetooth bus! | https://ernestine.net | +| Legacy Interactions Analyst | 3.0.8 | Unknown | You can't parse the hard drive without generating the digital AGP hard drive! | http://logan.net | +| Senior Accountability Specialist | 0.8.7 | Expression | We need to input the cross-platform RAM system! | http://kristina.info | | National Usability Manager | 0.3.8 | Url | quantifying the card won't do anything, we need to navigate the virtual USB card! | http://myriam.name | -| Lead Tactics Executive | 6.2.9 | Expression | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | -| Principal Accountability Facilitator | 2.1.4 | Expression | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | -| Internal Quality Director | 5.3.0 | Unknown | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | -| Chief Web Specialist | 7.4.0 | Unknown | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | -| Lead Accountability Orchestrator | 2.6.2 | Expression | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | -| International Metrics Officer | 3.7.1 | Url | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | +| Lead Tactics Executive | 6.2.9 | Overwrite | I'll transmit the online TCP driver, that should driver the TCP driver! | https://maxwell.name | +| Principal Accountability Facilitator | 2.1.4 | Overwrite | Use the back-end XML protocol, then you can reboot the back-end protocol! | https://dillan.net | +| Internal Quality Director | 5.3.0 | Url | Use the redundant AI alarm, then you can transmit the redundant alarm! | http://hyman.com | +| Chief Web Specialist | 7.4.0 | Url | navigating the monitor won't do anything, we need to input the wireless JSON monitor! | http://keely.net | +| Lead Accountability Orchestrator | 2.6.2 | Overwrite | You can't connect the panel without bypassing the bluetooth SSL panel! | https://tre.org | +| International Metrics Officer | 3.7.1 | Expression | hacking the array won't do anything, we need to back up the haptic IB array! | https://myrl.info | | Forward Data Administrator | 9.0.6 | Unknown | Try to connect the XSS alarm, maybe it will connect the auxiliary alarm! | https://michelle.org | -| Regional Data Strategist | 3.5.3 | Unknown | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | +| Regional Data Strategist | 3.5.3 | Url | I'll transmit the optical USB program, that should program the USB program! | https://sedrick.biz | | Product Integration Officer | 3.3.6 | Unknown | Use the primary PNG matrix, then you can copy the primary matrix! | https://howard.org | -| Customer Group Technician | 9.8.2 | Unknown | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | -| Lead Factors Planner | 1.0.4 | Expression | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | -| Corporate Data Assistant | 7.9.8 | Unknown | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | +| Customer Group Technician | 9.8.2 | Url | programming the system won't do anything, we need to synthesize the primary AGP system! | https://sandrine.name | +| Lead Factors Planner | 1.0.4 | Overwrite | You can't compress the driver without calculating the back-end SQL driver! | http://mikayla.com | +| Corporate Data Assistant | 7.9.8 | Url | Try to generate the SMTP feed, maybe it will generate the online feed! | http://arlene.biz | | Human Functionality Associate | 9.4.1 | Unknown | I'll hack the redundant SCSI monitor, that should monitor the SCSI monitor! | https://bonita.biz | | Dynamic Research Representative | 1.6.9 | Url | You can't copy the alarm without synthesizing the 1080p IB alarm! | https://carol.org | -| Internal Accounts Specialist | 4.9.2 | Unknown | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | +| Internal Accounts Specialist | 4.9.2 | Url | The XML hard drive is down, hack the auxiliary hard drive so we can hack the XML hard drive! | https://wilfredo.biz | | Corporate Program Facilitator | 2.7.4 | Unknown | I'll navigate the mobile TCP bus, that should bus the TCP bus! | https://vida.net | -| Investor Division Planner | 1.4.6 | Url | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | -| National Response Planner | 7.8.0 | Url | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | +| Investor Division Planner | 1.4.6 | Expression | I'll hack the solid state JSON sensor, that should sensor the JSON sensor! | https://evelyn.info | +| National Response Planner | 7.8.0 | Expression | Try to synthesize the PNG application, maybe it will synthesize the auxiliary application! | https://hertha.org | | National Accountability Administrator | 5.9.9 | Expression | Use the neural IB matrix, then you can generate the neural matrix! | http://julio.info | | Legacy Branding Orchestrator | 0.2.6 | Unknown | We need to bypass the back-end FTP alarm! | https://keeley.net | | Forward Infrastructure Specialist | 6.1.6 | Unknown | quantifying the driver won't do anything, we need to synthesize the neural PNG driver! | http://melisa.com | -| Future Group Director | 2.3.4 | Expression | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | -| Regional Branding Facilitator | 0.3.9 | Unknown | We need to connect the optical SQL capacitor! | https://otilia.info | -| Customer Assurance Consultant | 5.6.2 | Unknown | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | -| District Interactions Developer | 9.9.4 | Unknown | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | -| Product Paradigm Director | 6.3.8 | Expression | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | -| Senior Group Designer | 3.0.6 | Url | We need to copy the cross-platform SAS panel! | http://keyshawn.net | -| Corporate Paradigm Administrator | 5.5.2 | Unknown | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | +| Future Group Director | 2.3.4 | Overwrite | I'll synthesize the open-source RSS firewall, that should firewall the RSS firewall! | https://luna.info | +| Regional Branding Facilitator | 0.3.9 | Url | We need to connect the optical SQL capacitor! | https://otilia.info | +| Global Configuration Planner | 2.6.3 | Unknown | connecting the circuit won't do anything, we need to copy the online EXE circuit! | http://willis.name | +| Customer Assurance Consultant | 5.6.2 | Url | Use the digital IB alarm, then you can program the digital alarm! | https://eryn.org | +| District Interactions Developer | 9.9.4 | Url | I'll compress the haptic AI bandwidth, that should bandwidth the AI bandwidth! | http://adrien.biz | +| Principal Solutions Supervisor | 6.1.2 | Unknown | programming the driver won't do anything, we need to parse the 1080p AGP driver! | https://ari.biz | +| Product Paradigm Director | 6.3.8 | Overwrite | Use the wireless THX array, then you can connect the wireless array! | http://kiera.org | +| Senior Group Designer | 3.0.6 | Expression | We need to copy the cross-platform SAS panel! | http://keyshawn.net | +| Corporate Paradigm Administrator | 5.5.2 | Url | Try to reboot the SMS feed, maybe it will reboot the bluetooth feed! | http://trace.net | | Product Interactions Executive | 5.4.8 | Unknown | We need to override the auxiliary AGP firewall! | https://maye.org | -| Central Creative Analyst | 3.6.4 | Url | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | -| Internal Division Assistant | 0.9.4 | Url | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | -| Global Usability Manager | 6.7.0 | Url | We need to parse the mobile SCSI protocol! | https://alexandra.info | +| Central Creative Analyst | 3.6.4 | Expression | programming the driver won't do anything, we need to calculate the primary SMTP driver! | http://abigayle.net | +| Internal Division Assistant | 0.9.4 | Expression | The SMTP card is down, transmit the virtual card so we can transmit the SMTP card! | http://emerson.info | +| Global Usability Manager | 6.7.0 | Expression | We need to parse the mobile SCSI protocol! | https://alexandra.info | | Chief Markets Agent | 8.8.4 | Unknown | I'll hack the optical COM alarm, that should alarm the COM alarm! | http://dayana.name | | Human Configuration Assistant | 0.1.1 | Url | We need to hack the mobile SMS circuit! | https://aurelia.info | | Senior Implementation Associate | 8.2.9 | Unknown | synthesizing the bandwidth won't do anything, we need to generate the wireless ADP bandwidth! | http://roderick.org | -| Legacy Research Producer | 2.8.3 | Unknown | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | +| Legacy Research Producer | 2.8.3 | Url | backing up the monitor won't do anything, we need to quantify the back-end CSS monitor! | https://sonia.org | | Legacy Accountability Agent | 5.8.2 | Unknown | I'll compress the auxiliary XSS port, that should port the XSS port! | http://chelsea.com | -| District Group Associate | 4.0.1 | Expression | We need to transmit the redundant TCP panel! | https://noemi.info | -| Future Factors Representative | 9.2.0 | Unknown | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | +| District Group Associate | 4.0.1 | Overwrite | We need to transmit the redundant TCP panel! | https://noemi.info | +| Future Factors Representative | 9.2.0 | Url | Use the solid state SDD application, then you can navigate the solid state application! | https://jazmin.org | | Direct Data Consultant | 6.3.3 | Unknown | Use the haptic XML driver, then you can index the haptic driver! | https://heath.name | -| Internal Division Agent | 2.4.2 | Expression | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | -| Legacy Optimization Assistant | 8.8.2 | Url | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | +| Internal Division Agent | 2.4.2 | Overwrite | Try to compress the TCP microchip, maybe it will compress the auxiliary microchip! | http://armani.name | +| Legacy Optimization Assistant | 8.8.2 | Expression | The RAM sensor is down, generate the mobile sensor so we can generate the RAM sensor! | https://scot.info | | National Tactics Administrator | 9.2.8 | Unknown | The FTP card is down, index the digital card so we can index the FTP card! | https://brett.biz | | Human Directives Specialist | 4.3.4 | Url | I'll reboot the virtual CSS program, that should program the CSS program! | http://tabitha.name | -| Forward Web Assistant | 3.5.5 | Expression | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | -| Product Operations Liaison | 1.1.0 | Expression | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | +| Forward Web Assistant | 3.5.5 | Overwrite | The COM array is down, calculate the open-source array so we can calculate the COM array! | https://tremayne.org | +| Product Operations Liaison | 1.1.0 | Overwrite | You can't generate the array without quantifying the open-source PCI array! | http://tabitha.com | | Legacy Accountability Coordinator | 5.5.0 | Expression | Try to back up the COM driver, maybe it will back up the bluetooth driver! | http://erling.name | -| Product Marketing Strategist | 0.1.7 | Unknown | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | -| Corporate Intranet Analyst | 0.9.0 | Expression | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | -| Central Security Representative | 4.3.4 | Expression | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | +| Product Marketing Strategist | 0.1.7 | Url | I'll copy the auxiliary SSL interface, that should interface the SSL interface! | http://melany.name | +| Corporate Intranet Analyst | 0.9.0 | Overwrite | indexing the interface won't do anything, we need to bypass the optical HDD interface! | https://creola.info | +| Central Security Representative | 4.3.4 | Overwrite | The TCP bandwidth is down, hack the bluetooth bandwidth so we can hack the TCP bandwidth! | https://velva.name | | Senior Brand Analyst | 2.5.0 | Expression | overriding the interface won't do anything, we need to override the virtual THX interface! | http://danial.name | -| Internal Directives Designer | 0.4.8 | Url | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | -| Dynamic Division Consultant | 4.8.7 | Expression | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | +| Internal Directives Designer | 0.4.8 | Expression | Use the virtual AI capacitor, then you can navigate the virtual capacitor! | http://mable.net | +| Dynamic Division Consultant | 4.8.7 | Overwrite | The JSON pixel is down, input the multi-byte pixel so we can input the JSON pixel! | https://jack.net | | Central Data Consultant | 6.5.0 | Unknown | generating the driver won't do anything, we need to hack the auxiliary HDD driver! | https://delilah.org | -| Regional Tactics Technician | 7.6.7 | Expression | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | +| Regional Tactics Technician | 7.6.7 | Overwrite | If we transmit the firewall, we can get to the SQL firewall through the wireless SQL firewall! | http://alvena.net | | Customer Functionality Manager | 5.9.0 | Url | The TCP matrix is down, navigate the online matrix so we can navigate the TCP matrix! | https://mariane.info | -| Senior Operations Engineer | 3.1.8 | Expression | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | +| Senior Operations Engineer | 3.1.8 | Overwrite | If we program the array, we can get to the JBOD array through the primary JBOD array! | http://montana.name | +---------------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+------------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt index 8d8c9360..36dc1aa8 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=20.verified.txt @@ -1,18 +1,20 @@ +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | -| National Assurance Representative | 2.0.7 | Expression | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | -| National Tactics Liaison | 6.8.9 | Unknown | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| National Assurance Representative | 2.0.7 | Overwrite | transmitting the capacitor won't do anything, we need to synthesize the back-end RAM capacitor! | http://kelley.com | +| National Tactics Liaison | 6.8.9 | Url | hacking the capacitor won't do anything, we need to compress the digital AGP capacitor! | http://jillian.net | | Global Implementation Engineer | 6.0.7 | Expression | I'll calculate the 1080p HDD system, that should system the HDD system! | http://antonette.org | -| Forward Integration Executive | 6.6.8 | Expression | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | -| Customer Infrastructure Planner | 6.6.0 | Url | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | -| Customer Research Associate | 4.6.5 | Url | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | +| Forward Integration Executive | 6.6.8 | Overwrite | You can't index the protocol without indexing the open-source XML protocol! | http://grayce.info | +| Customer Infrastructure Planner | 6.6.0 | Expression | If we program the pixel, we can get to the SMS pixel through the neural SMS pixel! | https://laurie.biz | +| Customer Infrastructure Liaison | 0.8.0 | Unknown | Use the haptic RSS hard drive, then you can back up the haptic hard drive! | https://otho.biz | +| Customer Research Associate | 4.6.5 | Expression | I'll navigate the neural SAS card, that should card the SAS card! | http://wilmer.name | | Central Creative Manager | 8.4.8 | Expression | Use the cross-platform THX system, then you can generate the cross-platform system! | https://carleton.info | -| Corporate Marketing Associate | 3.3.2 | Expression | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | +| Corporate Marketing Associate | 3.3.2 | Overwrite | I'll program the auxiliary XSS bus, that should bus the XSS bus! | http://nash.name | | District Intranet Strategist | 2.2.2 | Unknown | We need to reboot the virtual RSS alarm! | http://everett.name | | Customer Assurance Officer | 0.3.1 | Url | Try to override the EXE program, maybe it will override the mobile program! | https://kyla.biz | -| Chief Integration Architect | 1.6.8 | Url | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +| Chief Integration Architect | 1.6.8 | Expression | Try to override the TCP firewall, maybe it will override the solid state firewall! | https://davion.net | +-----------------------------------+---------+----------------------------+-------------------------------------------------------------------------------------------------+-----------------------+ diff --git a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt index 53fce738..45c3025f 100644 --- a/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt +++ b/tests/NuGetUtility.Test/Output/TableOutputFormatterTest(True,True).ValidatedLicenses_Should_PrintCorrectTable_validatedLicenseCount=5.verified.txt @@ -1,7 +1,8 @@ +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ | Package | Version | License Information Origin | License Expression | Package Project Url | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+ -| International Mobility Technician | 3.7.5 | Expression | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | -| Future Identity Specialist | 4.7.4 | Expression | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | -| Forward Functionality Designer | 5.5.7 | Expression | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +| Legacy Metrics Planner | 9.5.0 | Unknown | I'll override the haptic AGP feed, that should feed the AGP feed! | http://madisyn.name | +| International Mobility Technician | 3.7.5 | Overwrite | I'll override the digital SMTP interface, that should interface the SMTP interface! | https://jayne.name | +| Future Identity Specialist | 4.7.4 | Overwrite | If we back up the driver, we can get to the AI driver through the bluetooth AI driver! | http://della.biz | +| Forward Functionality Designer | 5.5.7 | Overwrite | Use the redundant AGP monitor, then you can generate the redundant monitor! | https://jasen.biz | +-----------------------------------+---------+----------------------------+----------------------------------------------------------------------------------------+---------------------+