From c4a892ea176be5ba12ed372439ab009a9974e293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Luis=20Monta=C3=B1es=20Ojados?= Date: Sat, 10 Jan 2026 18:23:43 +0100 Subject: [PATCH] init --- .gitignore | 2 + Class1.cs | 9 +++ DlcUnlock.csproj | 10 +++ DlcUnlock.sln | 25 +++++++ ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 ++ obj/Debug/net472/DlcUnlock.AssemblyInfo.cs | 23 +++++++ .../net472/DlcUnlock.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 5 ++ obj/Debug/net472/DlcUnlock.assets.cache | Bin 0 -> 225 bytes .../DlcUnlock.csproj.AssemblyReference.cache | Bin 0 -> 4423 bytes ...tandard,Version=v2.1.AssemblyAttributes.cs | 4 ++ .../netstandard2.1/DlcUnlock.AssemblyInfo.cs | 23 +++++++ .../DlcUnlock.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 5 ++ .../netstandard2.1/DlcUnlock.assets.cache | Bin 0 -> 225 bytes obj/DlcUnlock.csproj.nuget.dgspec.json | 56 ++++++++++++++++ obj/DlcUnlock.csproj.nuget.g.props | 16 +++++ obj/DlcUnlock.csproj.nuget.g.targets | 2 + obj/project.assets.json | 62 ++++++++++++++++++ obj/project.nuget.cache | 8 +++ 20 files changed, 256 insertions(+) create mode 100644 .gitignore create mode 100644 Class1.cs create mode 100644 DlcUnlock.csproj create mode 100644 DlcUnlock.sln create mode 100644 obj/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 obj/Debug/net472/DlcUnlock.AssemblyInfo.cs create mode 100644 obj/Debug/net472/DlcUnlock.AssemblyInfoInputs.cache create mode 100644 obj/Debug/net472/DlcUnlock.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/net472/DlcUnlock.assets.cache create mode 100644 obj/Debug/net472/DlcUnlock.csproj.AssemblyReference.cache create mode 100644 obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs create mode 100644 obj/Debug/netstandard2.1/DlcUnlock.AssemblyInfo.cs create mode 100644 obj/Debug/netstandard2.1/DlcUnlock.AssemblyInfoInputs.cache create mode 100644 obj/Debug/netstandard2.1/DlcUnlock.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/netstandard2.1/DlcUnlock.assets.cache create mode 100644 obj/DlcUnlock.csproj.nuget.dgspec.json create mode 100644 obj/DlcUnlock.csproj.nuget.g.props create mode 100644 obj/DlcUnlock.csproj.nuget.g.targets create mode 100644 obj/project.assets.json create mode 100644 obj/project.nuget.cache diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c868fe2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +bin/ +.vs/ \ No newline at end of file diff --git a/Class1.cs b/Class1.cs new file mode 100644 index 0000000..28ac02a --- /dev/null +++ b/Class1.cs @@ -0,0 +1,9 @@ +using System; + +namespace DlcUnlock +{ + public class Class1 + { + + } +} diff --git a/DlcUnlock.csproj b/DlcUnlock.csproj new file mode 100644 index 0000000..891cd43 --- /dev/null +++ b/DlcUnlock.csproj @@ -0,0 +1,10 @@ + + + + net472 + 7.3 + disable + disable + + + diff --git a/DlcUnlock.sln b/DlcUnlock.sln new file mode 100644 index 0000000..6882fa8 --- /dev/null +++ b/DlcUnlock.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34902.65 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DlcUnlock", "DlcUnlock.csproj", "{44671DBC-73DF-4721-9A44-32A081112462}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {44671DBC-73DF-4721-9A44-32A081112462}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {44671DBC-73DF-4721-9A44-32A081112462}.Debug|Any CPU.Build.0 = Debug|Any CPU + {44671DBC-73DF-4721-9A44-32A081112462}.Release|Any CPU.ActiveCfg = Release|Any CPU + {44671DBC-73DF-4721-9A44-32A081112462}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2C4B52D5-ACBD-441E-86E5-5DCCFC100631} + EndGlobalSection +EndGlobal diff --git a/obj/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/obj/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/obj/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/obj/Debug/net472/DlcUnlock.AssemblyInfo.cs b/obj/Debug/net472/DlcUnlock.AssemblyInfo.cs new file mode 100644 index 0000000..5b422bd --- /dev/null +++ b/obj/Debug/net472/DlcUnlock.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Este código fue generado por una herramienta. +// Versión de runtime:4.0.30319.42000 +// +// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si +// se vuelve a generar el código. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DlcUnlock")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DlcUnlock")] +[assembly: System.Reflection.AssemblyTitleAttribute("DlcUnlock")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/obj/Debug/net472/DlcUnlock.AssemblyInfoInputs.cache b/obj/Debug/net472/DlcUnlock.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a90bda6 --- /dev/null +++ b/obj/Debug/net472/DlcUnlock.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +edd1cf9873548a36ed0e1139a3b2fe6a39e35cfedc323dbc8b20a3558d1b465f diff --git a/obj/Debug/net472/DlcUnlock.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net472/DlcUnlock.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..44f5ffa --- /dev/null +++ b/obj/Debug/net472/DlcUnlock.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,5 @@ +is_global = true +build_property.RootNamespace = DlcUnlock +build_property.ProjectDir = D:\Downloads\Unity Modding\Ripped GOT\AssetRipper_export_20260106_161031\Mods\DlcUnlock\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/net472/DlcUnlock.assets.cache b/obj/Debug/net472/DlcUnlock.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..cbaccac1a390dcd95e82b93a494719bbcdecbfe9 GIT binary patch literal 225 zcmWIWc6a1qU|`_=8&t7t{=rB-)f-&e*O}^D{0~n)n$k4o;lKD_d@r&Y?gG^i3z&ck zWt^>ILW@(2iemztWAyS$(^E@g3KEmE6Vp?RV?YMEyI92p6y>KECFUx)W#*(7E2tV- zR9Kj)8d=8pW+oTq7w4yyD1>DemnP;Y1ecViWah^NXCxM-ro{M_x~G-|Kn)}0C;-^0 BHVFU# literal 0 HcmV?d00001 diff --git a/obj/Debug/net472/DlcUnlock.csproj.AssemblyReference.cache b/obj/Debug/net472/DlcUnlock.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..881429961887392d06eabf3bdc96aefc69288c79 GIT binary patch literal 4423 zcmd5=&2H2%5RL_`mMsYJD^&t%k8r?h=?|qBgwj^3#4f0*Dh`n_wyAC5P7|Ex}y;dA)RPh`La zB?mC16oC93=jW$yPd{Gtonis5S+ei#Y7N^JuFU0fSaLM^{-w)ai;|&&}j~+p@yu=m5my* z&8|AqL6=D9x@tgK^?;dDsymw0g|d3bv|T%}->B+Y>$Jfrkuao9%_1|EHd_tGYCkBA zc{s=fNvDm}_FuA?by=)szsUuiAWF`P@yfu1o=qOu%ApOheWYbTceD`?F@@Wz(J@4u z^|!_EYkQwp$1AFGRngq^MjHghjLUS^29CnR${pdbOO~mY@S3n=1F@_M%q$V>p(d8G z!Ws$0<#Ei?T=$ literal 0 HcmV?d00001 diff --git a/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs b/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs new file mode 100644 index 0000000..348b87f --- /dev/null +++ b/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] diff --git a/obj/Debug/netstandard2.1/DlcUnlock.AssemblyInfo.cs b/obj/Debug/netstandard2.1/DlcUnlock.AssemblyInfo.cs new file mode 100644 index 0000000..5b422bd --- /dev/null +++ b/obj/Debug/netstandard2.1/DlcUnlock.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// Este código fue generado por una herramienta. +// Versión de runtime:4.0.30319.42000 +// +// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si +// se vuelve a generar el código. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DlcUnlock")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DlcUnlock")] +[assembly: System.Reflection.AssemblyTitleAttribute("DlcUnlock")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/obj/Debug/netstandard2.1/DlcUnlock.AssemblyInfoInputs.cache b/obj/Debug/netstandard2.1/DlcUnlock.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a90bda6 --- /dev/null +++ b/obj/Debug/netstandard2.1/DlcUnlock.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +edd1cf9873548a36ed0e1139a3b2fe6a39e35cfedc323dbc8b20a3558d1b465f diff --git a/obj/Debug/netstandard2.1/DlcUnlock.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netstandard2.1/DlcUnlock.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..44f5ffa --- /dev/null +++ b/obj/Debug/netstandard2.1/DlcUnlock.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,5 @@ +is_global = true +build_property.RootNamespace = DlcUnlock +build_property.ProjectDir = D:\Downloads\Unity Modding\Ripped GOT\AssetRipper_export_20260106_161031\Mods\DlcUnlock\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/netstandard2.1/DlcUnlock.assets.cache b/obj/Debug/netstandard2.1/DlcUnlock.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..54dca37c6fd34ad256f782c65dda58e982f42c6a GIT binary patch literal 225 zcmWIWc6a1qU|@*MziJt^{*kcYOsPqW=Iv0^3|+W;o9I2oevQ1zmb|u>cY$h%1x!GN zGR{^pp~b01#W4ZSF?xBW>8T|#1&PVoiRr1uF(8B7U94gPit^Ko5_1*YGILUk6;zEZ zDlE)YjVxn)Gn0$*i}TY;6v8r#OA~Vxf=fzMGV^1CGZKqZQ)2u|-BU{fpoS506ae|} BGl>8I literal 0 HcmV?d00001 diff --git a/obj/DlcUnlock.csproj.nuget.dgspec.json b/obj/DlcUnlock.csproj.nuget.dgspec.json new file mode 100644 index 0000000..d4d8205 --- /dev/null +++ b/obj/DlcUnlock.csproj.nuget.dgspec.json @@ -0,0 +1,56 @@ +{ + "format": 1, + "restore": { + "D:\\Downloads\\Unity Modding\\Ripped GOT\\AssetRipper_export_20260106_161031\\Mods\\DlcUnlock\\DlcUnlock.csproj": {} + }, + "projects": { + "D:\\Downloads\\Unity Modding\\Ripped GOT\\AssetRipper_export_20260106_161031\\Mods\\DlcUnlock\\DlcUnlock.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Downloads\\Unity Modding\\Ripped GOT\\AssetRipper_export_20260106_161031\\Mods\\DlcUnlock\\DlcUnlock.csproj", + "projectName": "DlcUnlock", + "projectPath": "D:\\Downloads\\Unity Modding\\Ripped GOT\\AssetRipper_export_20260106_161031\\Mods\\DlcUnlock\\DlcUnlock.csproj", + "packagesPath": "C:\\Users\\PC\\.nuget\\packages\\", + "outputPath": "D:\\Downloads\\Unity Modding\\Ripped GOT\\AssetRipper_export_20260106_161031\\Mods\\DlcUnlock\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\PC\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net472" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/DlcUnlock.csproj.nuget.g.props b/obj/DlcUnlock.csproj.nuget.g.props new file mode 100644 index 0000000..839c313 --- /dev/null +++ b/obj/DlcUnlock.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\PC\.nuget\packages\;D:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.0 + + + + + + \ No newline at end of file diff --git a/obj/DlcUnlock.csproj.nuget.g.targets b/obj/DlcUnlock.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/DlcUnlock.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..7bd8fe6 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,62 @@ +{ + "version": 3, + "targets": { + ".NETFramework,Version=v4.7.2": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + ".NETFramework,Version=v4.7.2": [] + }, + "packageFolders": { + "C:\\Users\\PC\\.nuget\\packages\\": {}, + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Downloads\\Unity Modding\\Ripped GOT\\AssetRipper_export_20260106_161031\\Mods\\DlcUnlock\\DlcUnlock.csproj", + "projectName": "DlcUnlock", + "projectPath": "D:\\Downloads\\Unity Modding\\Ripped GOT\\AssetRipper_export_20260106_161031\\Mods\\DlcUnlock\\DlcUnlock.csproj", + "packagesPath": "C:\\Users\\PC\\.nuget\\packages\\", + "outputPath": "D:\\Downloads\\Unity Modding\\Ripped GOT\\AssetRipper_export_20260106_161031\\Mods\\DlcUnlock\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\PC\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net472" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..f0b62e5 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "9cneV3e9a7U=", + "success": true, + "projectFilePath": "D:\\Downloads\\Unity Modding\\Ripped GOT\\AssetRipper_export_20260106_161031\\Mods\\DlcUnlock\\DlcUnlock.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file