diff --git a/.gitmodules b/.gitmodules index 303a6c4..e69de29 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +0,0 @@ -[submodule "RomSignatureObject"] - path = RomSignatureObject - url = https://github.com/gaseous-project/RomSignatureObject.git diff --git a/Gaseous.sln b/Gaseous.sln index f0160e3..32f3f25 100644 --- a/Gaseous.sln +++ b/Gaseous.sln @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 25.0.1704.4 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "gaseous-identifier", "gaseous-identifier\gaseous-identifier.csproj", "{F5C42134-5372-430A-A9AE-1871981850DB}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "gaseous-identifier-testapp", "gaseous-identifier\gaseous-identifier-testapp.csproj", "{F5C42134-5372-430A-A9AE-1871981850DB}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Gaseous-ROMSignatureObject", "RomSignatureObject\Gaseous-ROMSignatureObject\Gaseous-ROMSignatureObject.csproj", "{08699C93-15CD-4E39-9053-D3C8056CE938}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "gaseous-romsignatureobject", "gaseous-romsignatureobject\Gaseous-ROMSignatureObject.csproj", "{B0328A09-F50C-40BB-AC3D-040635AF927F}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -21,6 +21,10 @@ Global {08699C93-15CD-4E39-9053-D3C8056CE938}.Debug|Any CPU.Build.0 = Debug|Any CPU {08699C93-15CD-4E39-9053-D3C8056CE938}.Release|Any CPU.ActiveCfg = Release|Any CPU {08699C93-15CD-4E39-9053-D3C8056CE938}.Release|Any CPU.Build.0 = Release|Any CPU + {B0328A09-F50C-40BB-AC3D-040635AF927F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B0328A09-F50C-40BB-AC3D-040635AF927F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B0328A09-F50C-40BB-AC3D-040635AF927F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B0328A09-F50C-40BB-AC3D-040635AF927F}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/RomSignatureObject b/RomSignatureObject deleted file mode 160000 index 48a4b8b..0000000 --- a/RomSignatureObject +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 48a4b8b8b2474940cc76d1399d8480a927863f5c diff --git a/gaseous-identifier/gaseous-identifier.csproj b/gaseous-identifier/gaseous-identifier-testapp.csproj similarity index 89% rename from gaseous-identifier/gaseous-identifier.csproj rename to gaseous-identifier/gaseous-identifier-testapp.csproj index dbee03d..5b51fd7 100644 --- a/gaseous-identifier/gaseous-identifier.csproj +++ b/gaseous-identifier/gaseous-identifier-testapp.csproj @@ -20,14 +20,12 @@ - - @@ -41,6 +39,6 @@ - + diff --git a/gaseous-romsignatureobject/.DS_Store b/gaseous-romsignatureobject/.DS_Store new file mode 100644 index 0000000..2493af2 Binary files /dev/null and b/gaseous-romsignatureobject/.DS_Store differ diff --git a/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj b/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj new file mode 100644 index 0000000..7b43d45 --- /dev/null +++ b/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj @@ -0,0 +1,10 @@ + + + + net7.0 + Gaseous_ROMSignatureObject + enable + enable + + + diff --git a/gaseous-romsignatureobject/RomSignatureObject.cs b/gaseous-romsignatureobject/RomSignatureObject.cs new file mode 100644 index 0000000..98cfde8 --- /dev/null +++ b/gaseous-romsignatureobject/RomSignatureObject.cs @@ -0,0 +1,117 @@ +using System; +using System.Collections.Generic; + +namespace Gaseous_ROMSignatureObject +{ + /// + /// Object returned by all signature engines containing metadata about the ROM's in the data files + /// + /// This class was based on the TOSEC dataset, so may need to be expanded as new signature engines are added + /// + public class RomSignatureObject + { + public string? Name { get; set; } + public string? Description { get; set; } + public string? Category { get; set; } + public string? Version { get; set; } + public string? Author { get; set; } + public string? Email { get; set; } + public string? Homepage { get; set; } + public Uri? Url { get; set; } + public string? SourceType { get; set; } + public string SourceMd5 { get; set; } = ""; + public string SourceSHA1 { get; set; } = ""; + + public List Games { get; set; } = new List(); + + public class Game + { + public string? Name { get; set; } + public string? Description { get; set; } + public string? Year { get; set; } + public string? Publisher { get; set; } + public DemoTypes Demo { get; set; } + public string? System { get; set; } + public string? SystemVariant { get; set; } + public string? Video { get; set; } + public string? Country { get; set; } + public string? Language { get; set; } + public string? Copyright { get; set; } + public List Roms { get; set; } = new List(); + public int RomCount + { + get + { + return Roms.Count(); + } + } + + public enum DemoTypes + { + NotDemo = 0, + demo = 1, + demo_kiosk = 2, + demo_playable = 3, + demo_rolling = 4, + demo_slideshow = 5 + } + + public class Rom + { + public string? Name { get; set; } + public UInt64? Size { get; set; } + public string? Crc { get; set; } + public string? Md5 { get; set; } + public string? Sha1 { get; set; } + + public string? DevelopmentStatus { get; set; } + + public List flags { get; set; } = new List(); + + public RomTypes RomType { get; set; } + public string? RomTypeMedia { get; set; } + public string? MediaLabel { get; set; } + + public enum RomTypes + { + /// + /// Media type is unknown + /// + Unknown = 0, + + /// + /// Optical media + /// + Disc = 1, + + /// + /// Magnetic media + /// + Disk = 2, + + /// + /// Individual files + /// + File = 3, + + /// + /// Individual pars + /// + Part = 4, + + /// + /// Tape base media + /// + Tape = 5, + + /// + /// Side of the media + /// + Side = 6 + } + } + + } + } +} + diff --git a/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.deps.json b/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.deps.json new file mode 100644 index 0000000..a927cc5 --- /dev/null +++ b/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "Gaseous-ROMSignatureObject/1.0.0": { + "runtime": { + "Gaseous-ROMSignatureObject.dll": {} + } + } + } + }, + "libraries": { + "Gaseous-ROMSignatureObject/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.dll b/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.dll new file mode 100644 index 0000000..dfba6bb Binary files /dev/null and b/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.dll differ diff --git a/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.pdb b/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.pdb new file mode 100644 index 0000000..6e38e98 Binary files /dev/null and b/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.pdb differ diff --git a/gaseous-romsignatureobject/gaseous-romsignatureobject.csproj b/gaseous-romsignatureobject/gaseous-romsignatureobject.csproj new file mode 100644 index 0000000..7b43d45 --- /dev/null +++ b/gaseous-romsignatureobject/gaseous-romsignatureobject.csproj @@ -0,0 +1,10 @@ + + + + net7.0 + Gaseous_ROMSignatureObject + enable + enable + + + diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/gaseous-romsignatureobject/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..d69481d --- /dev/null +++ b/gaseous-romsignatureobject/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.AssemblyInfo.cs b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.AssemblyInfo.cs new file mode 100644 index 0000000..e886bac --- /dev/null +++ b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Gaseous-ROMSignatureObject")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Gaseous-ROMSignatureObject")] +[assembly: System.Reflection.AssemblyTitleAttribute("Gaseous-ROMSignatureObject")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.AssemblyInfoInputs.cache b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.AssemblyInfoInputs.cache new file mode 100644 index 0000000..4b35e90 --- /dev/null +++ b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +dcc23f2b2fef12195f6a41d44e616c5e9171deb5 diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.GeneratedMSBuildEditorConfig.editorconfig b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9006218 --- /dev/null +++ b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Gaseous_ROMSignatureObject +build_property.ProjectDir = /Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/ diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.GlobalUsings.g.cs b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.assets.cache b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.assets.cache new file mode 100644 index 0000000..877101a Binary files /dev/null and b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.assets.cache differ diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.AssemblyReference.cache b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4ed82c2 Binary files /dev/null and b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.AssemblyReference.cache differ diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.CoreCompileInputs.cache b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..311de99 --- /dev/null +++ b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d99a0ab321ea37181f1996193c5ebb0787582b08 diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.FileListAbsolute.txt b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..b1ae6e5 --- /dev/null +++ b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.deps.json +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.dll +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/bin/Debug/net7.0/Gaseous-ROMSignatureObject.pdb +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.AssemblyReference.cache +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.GeneratedMSBuildEditorConfig.editorconfig +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.AssemblyInfoInputs.cache +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.AssemblyInfo.cs +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.csproj.CoreCompileInputs.cache +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.dll +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/Debug/net7.0/refint/Gaseous-ROMSignatureObject.dll +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.pdb +/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/Debug/net7.0/ref/Gaseous-ROMSignatureObject.dll diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.dll b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.dll new file mode 100644 index 0000000..dfba6bb Binary files /dev/null and b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.dll differ diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.pdb b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.pdb new file mode 100644 index 0000000..6e38e98 Binary files /dev/null and b/gaseous-romsignatureobject/obj/Debug/net7.0/Gaseous-ROMSignatureObject.pdb differ diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/ref/Gaseous-ROMSignatureObject.dll b/gaseous-romsignatureobject/obj/Debug/net7.0/ref/Gaseous-ROMSignatureObject.dll new file mode 100644 index 0000000..d22ab9c Binary files /dev/null and b/gaseous-romsignatureobject/obj/Debug/net7.0/ref/Gaseous-ROMSignatureObject.dll differ diff --git a/gaseous-romsignatureobject/obj/Debug/net7.0/refint/Gaseous-ROMSignatureObject.dll b/gaseous-romsignatureobject/obj/Debug/net7.0/refint/Gaseous-ROMSignatureObject.dll new file mode 100644 index 0000000..d22ab9c Binary files /dev/null and b/gaseous-romsignatureobject/obj/Debug/net7.0/refint/Gaseous-ROMSignatureObject.dll differ diff --git a/gaseous-romsignatureobject/obj/Gaseous-ROMSignatureObject.csproj.nuget.dgspec.json b/gaseous-romsignatureobject/obj/Gaseous-ROMSignatureObject.csproj.nuget.dgspec.json new file mode 100644 index 0000000..4592ad0 --- /dev/null +++ b/gaseous-romsignatureobject/obj/Gaseous-ROMSignatureObject.csproj.nuget.dgspec.json @@ -0,0 +1,61 @@ +{ + "format": 1, + "restore": { + "/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj": {} + }, + "projects": { + "/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj", + "projectName": "Gaseous-ROMSignatureObject", + "projectPath": "/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj", + "packagesPath": "/Users/michaelgreen/.nuget/packages/", + "outputPath": "/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/michaelgreen/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.200/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/gaseous-romsignatureobject/obj/Gaseous-ROMSignatureObject.csproj.nuget.g.props b/gaseous-romsignatureobject/obj/Gaseous-ROMSignatureObject.csproj.nuget.g.props new file mode 100644 index 0000000..e697246 --- /dev/null +++ b/gaseous-romsignatureobject/obj/Gaseous-ROMSignatureObject.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/michaelgreen/.nuget/packages/ + /Users/michaelgreen/.nuget/packages/ + PackageReference + 6.4.0 + + + + + \ No newline at end of file diff --git a/gaseous-romsignatureobject/obj/Gaseous-ROMSignatureObject.csproj.nuget.g.targets b/gaseous-romsignatureobject/obj/Gaseous-ROMSignatureObject.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/gaseous-romsignatureobject/obj/Gaseous-ROMSignatureObject.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/gaseous-romsignatureobject/obj/project.assets.json b/gaseous-romsignatureobject/obj/project.assets.json new file mode 100644 index 0000000..fb736bb --- /dev/null +++ b/gaseous-romsignatureobject/obj/project.assets.json @@ -0,0 +1,66 @@ +{ + "version": 3, + "targets": { + "net7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net7.0": [] + }, + "packageFolders": { + "/Users/michaelgreen/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj", + "projectName": "Gaseous-ROMSignatureObject", + "projectPath": "/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj", + "packagesPath": "/Users/michaelgreen/.nuget/packages/", + "outputPath": "/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/michaelgreen/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.200/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/gaseous-romsignatureobject/obj/project.nuget.cache b/gaseous-romsignatureobject/obj/project.nuget.cache new file mode 100644 index 0000000..04baee7 --- /dev/null +++ b/gaseous-romsignatureobject/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "QzFseClXWjOhiJwwzg5hojHFA6smvJmer7lTIdcxUdoP7JHfx0elP2vLsSQEXOjmZD+Koe+dG5lfwqTfBpFfLg==", + "success": true, + "projectFilePath": "/Users/michaelgreen/Development/gaseous-server/gaseous-romsignatureobject/Gaseous-ROMSignatureObject.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file