Add packer library skeleton

This commit is contained in:
Matt Nadareski
2023-03-09 23:31:45 -05:00
parent 9cf54c1f2d
commit 95755b930d
3 changed files with 43 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<Title>BinaryObjectScanner.Packer</Title>
<AssemblyName>BinaryObjectScanner.Packer</AssemblyName>
<Authors>Matt Nadareski</Authors>
<Product>BurnOutSharp</Product>
<Copyright>Copyright (c)2022 Matt Nadareski</Copyright>
<RepositoryUrl>https://github.com/mnadareski/BurnOutSharp</RepositoryUrl>
<Version>2.7</Version>
<AssemblyVersion>2.7</AssemblyVersion>
<FileVersion>2.7</FileVersion>
<IncludeSource>true</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\BinaryObjectScanner.Interfaces\BinaryObjectScanner.Interfaces.csproj" />
<ProjectReference Include="..\BinaryObjectScanner.Matching\BinaryObjectScanner.Matching.csproj" />
<ProjectReference Include="..\BinaryObjectScanner.Wrappers\BinaryObjectScanner.Wrappers.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,7 @@
namespace BinaryObjectScanner.Packer
{
/// <summary>
/// This class exists for reflection purposes and should not be used
/// </summary>
public sealed class _DUMMY { }
}

View File

@@ -34,7 +34,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BinaryObjectScanner.Compres
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BinaryObjectScanner.Interfaces", "BinaryObjectScanner.Interfaces\BinaryObjectScanner.Interfaces.csproj", "{7193566B-8071-437F-9B42-9A009AAA22DC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BinaryObjectScanner.Protection", "BinaryObjectScanner.Protection\BinaryObjectScanner.Protection.csproj", "{FF0BC536-10B6-4A31-9AB4-1B9B06B3B2E8}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BinaryObjectScanner.Protection", "BinaryObjectScanner.Protection\BinaryObjectScanner.Protection.csproj", "{FF0BC536-10B6-4A31-9AB4-1B9B06B3B2E8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BinaryObjectScanner.Packer", "BinaryObjectScanner.Packer\BinaryObjectScanner.Packer.csproj", "{59B3DE26-9399-4B5A-B39B-6239DAF1A017}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -90,6 +92,10 @@ Global
{FF0BC536-10B6-4A31-9AB4-1B9B06B3B2E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FF0BC536-10B6-4A31-9AB4-1B9B06B3B2E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FF0BC536-10B6-4A31-9AB4-1B9B06B3B2E8}.Release|Any CPU.Build.0 = Release|Any CPU
{59B3DE26-9399-4B5A-B39B-6239DAF1A017}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{59B3DE26-9399-4B5A-B39B-6239DAF1A017}.Debug|Any CPU.Build.0 = Debug|Any CPU
{59B3DE26-9399-4B5A-B39B-6239DAF1A017}.Release|Any CPU.ActiveCfg = Release|Any CPU
{59B3DE26-9399-4B5A-B39B-6239DAF1A017}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE