Skip to content

Commit

Permalink
Rename abstract class.
Browse files Browse the repository at this point in the history
  • Loading branch information
iadgovuser29 committed Nov 20, 2024
1 parent c106fe8 commit eea889a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<Authors>NSA Cybersecurity Directorate</Authors>
<PackageId>paccor.HardwareManifestPlugin</PackageId>
<PackageVersion>2.0.3</PackageVersion>
<PackageVersion>2.0.5</PackageVersion>
<PackageTags>paccor;platform;certificate;hardware;manifest;interface</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using HardwareManifestProto;

namespace HardwareManifestPlugin {
public abstract class HardwareManifestPlugin : IHardwareManifestPlugin {
public abstract class HardwareManifestPluginBase : IHardwareManifestPlugin {
public string Name {
get;
protected set;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<Authors>NSA Cybersecurity Directorate</Authors>
<PackageId>paccor.HardwareManifestPluginManager</PackageId>
<PackageVersion>2.0.3</PackageVersion>
<PackageVersion>2.0.5</PackageVersion>
<PackageTags>paccor;platform;certificate;hardware;manifest;plugin;manager</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion dotnet/paccor_scripts/paccor_scripts/paccor_scripts.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<RuntimeIdentifiers>linux-x64;win-x64</RuntimeIdentifiers>
<Authors>NSA Cybersecurity Directorate</Authors>
<PackageId>paccor.paccor_scripts</PackageId>
<PackageVersion>2.0.3</PackageVersion>
<PackageVersion>2.0.5</PackageVersion>
<PackageTags>paccor;platform;certificate;hardware;manifest;scripts;component;class;registry;evidence;collection</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Runtime.InteropServices;

namespace paccor_scripts {
public sealed class PaccorComponentScriptsPlugin : HardwareManifestPlugin.HardwareManifestPlugin {
public sealed class PaccorComponentScriptsPlugin : HardwareManifestPluginBase {
public static readonly string Scripts = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(typeof(PaccorComponentScriptsPlugin).Assembly.Location)!, "scripts"));
public static readonly string LinuxComponents = Path.GetFullPath(Path.Combine(Scripts, "allcomponents.sh"));
public static readonly string WinPath = Path.GetFullPath(Path.Combine(Scripts, "windows"));
Expand Down

0 comments on commit eea889a

Please sign in to comment.