-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactors the Multi Version Scanner (#526)
* fix naming. * Supports target-framework configuration in config.yml. Add logic to report instrumentation mismatch. Refactoring. * rework on the assembly process logic so that the AssemblyAnalyzer only process one assembly at a time. * Removes the need of specifying target framework for each instrumentation set in the config.yml. The MVS will validate all target frameworks that the instrumented nuget package supports.
- Loading branch information
Showing
12 changed files
with
218 additions
and
220 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
tests/Agent/MultiverseTesting/ConsoleScanner/DownloadedNugetInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright 2020 New Relic, Inc. All rights reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
|
||
using System.Collections.Generic; | ||
|
||
namespace NewRelic.Agent.ConsoleScanner | ||
{ | ||
public class DownloadedNugetInfo | ||
{ | ||
public DownloadedNugetInfo(List<string> dllFileLocations, string version, string packageName) | ||
{ | ||
InstrumentedDllFileLocations = dllFileLocations; | ||
PackageVersion = version; | ||
PackageName = packageName; | ||
} | ||
|
||
public List<string> InstrumentedDllFileLocations { get; } | ||
public string PackageVersion { get; } | ||
public string PackageName { get; } | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.