-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
64c1c5a
commit 0f36349
Showing
24 changed files
with
157 additions
and
48 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Import Project="..\Pcie\Pcie.Shared.props" /><!--supplies version--> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<RuntimeIdentifiers>linux-x64;win-x64</RuntimeIdentifiers> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<RuntimeIdentifiers>linux-x64;win-x64</RuntimeIdentifiers> | ||
<Authors>NSA Cybersecurity Directorate</Authors> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageId>paccor.pcie.pcielib</PackageId> | ||
<PackageVersion>$(Version)</PackageVersion> | ||
<!--Defined in shared props file--> | ||
<PackageTags>paccor;pci;pcie</PackageTags> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<!--Source Link github.com/dotnet/sourcelink --> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!--Package resources --> | ||
<None Include="..\..\..\LICENSE.md" Pack="true" PackagePath="LICENSE.md" /> | ||
<None Include="..\..\..\images\paccorpluginslogoicon.png" Pack="true" PackagePath="icon.png" /> | ||
<None Include="README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
</Project> |
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,8 @@ | ||
paccor is a popular solution for creating the [TCG Platform Certificate](https://trustedcomputinggroup.org/resource/tcg-platform-certificate-profile/). The platform certificate enables traceability of components throughout the hardware supply chain of a computing device. | ||
|
||
This library contains classes and methods for parsing PCI-e data. | ||
|
||
Additional information is available on [paccor's GitHub page](https://github.com/nsacyber/paccor). | ||
|
||
|
||
|
10 changes: 0 additions & 10 deletions
10
dotnet/ComponentClassRegistry/PcieWin/PcieWinCfgMgr.csproj
This file was deleted.
Oops, something went wrong.
32 changes: 32 additions & 0 deletions
32
dotnet/ComponentClassRegistry/PcieWinCfgMgr/PcieWinCfgMgr.csproj
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,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Import Project="..\Pcie\Pcie.Shared.props" /><!--supplies version--> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<RuntimeIdentifiers>linux-x64;win-x64</RuntimeIdentifiers> | ||
<Authors>NSA Cybersecurity Directorate</Authors> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageId>paccor.pcie.pciewincfgmgr</PackageId> | ||
<PackageVersion>$(Version)</PackageVersion> | ||
<!--Defined in shared props file--> | ||
<PackageTags>paccor;pci;pcie;windows;cfgmgr32</PackageTags> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<!--Source Link github.com/dotnet/sourcelink --> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!--Package resources --> | ||
<None Include="..\..\..\LICENSE.md" Pack="true" PackagePath="LICENSE.md" /> | ||
<None Include="..\..\..\images\paccorpluginslogoicon.png" Pack="true" PackagePath="icon.png" /> | ||
<None Include="README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
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,8 @@ | ||
paccor is a popular solution for creating the [TCG Platform Certificate](https://trustedcomputinggroup.org/resource/tcg-platform-certificate-profile/). The platform certificate enables traceability of components throughout the hardware supply chain of a computing device. | ||
|
||
This library contains classes and methods for working through Windows' cfgmgr32 library to access information about PCI components. | ||
|
||
Additional information is available on [paccor's GitHub page](https://github.com/nsacyber/paccor). | ||
|
||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
paccor is a popular solution for creating the [TCG Platform Certificate](https://trustedcomputinggroup.org/resource/tcg-platform-certificate-profile/). The platform certificate enables traceability of components throughout the hardware supply chain of a computing device. | ||
|
||
This library contains classes and methods for interacting with Linux and Windows to retrieve general disk information. Protocol-specific aspects are in separate libraries. | ||
|
||
Additional information is available on [paccor's GitHub page](https://github.com/nsacyber/paccor). | ||
|
||
|
||
|
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 |
---|---|---|
@@ -1,9 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Import Project="..\Storage\Storage.Shared.props" /><!--supplies version--> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<RuntimeIdentifiers>linux-x64;win-x64</RuntimeIdentifiers> | ||
<Authors>NSA Cybersecurity Directorate</Authors> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageId>paccor.storage.storagelib</PackageId> | ||
<PackageVersion>$(Version)</PackageVersion> | ||
<!--Defined in shared props file--> | ||
<PackageTags>paccor;storage;ata;scsi;nvme</PackageTags> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<!--Source Link github.com/dotnet/sourcelink --> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!--Package resources --> | ||
<None Include="..\..\..\LICENSE.md" Pack="true" PackagePath="LICENSE.md" /> | ||
<None Include="..\..\..\images\paccorpluginslogoicon.png" Pack="true" PackagePath="icon.png" /> | ||
<None Include="README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
</Project> |
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,8 @@ | ||
paccor is a popular solution for creating the [TCG Platform Certificate](https://trustedcomputinggroup.org/resource/tcg-platform-certificate-profile/). The platform certificate enables traceability of components throughout the hardware supply chain of a computing device. | ||
|
||
This library contains classes and methods for interacting with Linux and Windows to retrieve NVMe disk information. | ||
|
||
Additional information is available on [paccor's GitHub page](https://github.com/nsacyber/paccor). | ||
|
||
|
||
|
27 changes: 25 additions & 2 deletions
27
dotnet/ComponentClassRegistry/StorageNvme/StorageNvme.csproj
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 |
---|---|---|
@@ -1,15 +1,38 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Import Project="..\Storage\Storage.Shared.props" /><!--supplies version--> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
<RuntimeIdentifiers>linux-x64;win-x64</RuntimeIdentifiers> | ||
<Authors>NSA Cybersecurity Directorate</Authors> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageId>paccor.storage.storagenvme</PackageId> | ||
<PackageVersion>$(Version)</PackageVersion> | ||
<!--Defined in shared props file--> | ||
<PackageTags>paccor;storage;nvme</PackageTags> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<!--Source Link github.com/dotnet/sourcelink --> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\PcieLib\PcieLib.csproj" /> | ||
<ProjectReference Include="..\PcieWin\PcieWinCfgMgr.csproj" /> | ||
<ProjectReference Include="..\PcieWinCfgMgr\PcieWinCfgMgr.csproj" /> | ||
<ProjectReference Include="..\StorageLib\StorageLib.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!--Package resources --> | ||
<None Include="..\..\..\LICENSE.md" Pack="true" PackagePath="LICENSE.md" /> | ||
<None Include="..\..\..\images\paccorpluginslogoicon.png" Pack="true" PackagePath="icon.png" /> | ||
<None Include="README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
</Project> |
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
dotnet/ComponentClassRegistry/StorageWin/src/StorageWinStructs.cs
This file was deleted.
Oops, something went wrong.