commit c54710674c960ec04f181d933bfbc517570cb238 Author: mikx Date: Fri Oct 10 23:49:07 2025 -0400 1.0.0 commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c4efe2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,261 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Visual Studio 2015 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# DNX +project.lock.json +project.fragment.lock.json +artifacts/ + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# TODO: Comment the next line if you want to checkin your web deploy settings +# but database connection strings (with potential passwords) will be unencrypted +#*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config +# NuGet v3's project.json files produces more ignoreable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +node_modules/ +orleans.codegen.cs + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# JetBrains Rider +.idea/ +*.sln.iml + +# CodeRush +.cr/ + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc \ No newline at end of file diff --git a/Jsarus.sln b/Jsarus.sln new file mode 100644 index 0000000..60c27a8 --- /dev/null +++ b/Jsarus.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34009.444 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jsarus", "Jsarus\Jsarus.csproj", "{C7596A21-235C-411C-989B-1D8BC907BD57}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C7596A21-235C-411C-989B-1D8BC907BD57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C7596A21-235C-411C-989B-1D8BC907BD57}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C7596A21-235C-411C-989B-1D8BC907BD57}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C7596A21-235C-411C-989B-1D8BC907BD57}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4A9A40CD-9E94-4DFE-A0E9-8CF1565DF537} + EndGlobalSection +EndGlobal diff --git a/Jsarus/256x256.ico b/Jsarus/256x256.ico new file mode 100644 index 0000000..159ce7c Binary files /dev/null and b/Jsarus/256x256.ico differ diff --git a/Jsarus/App.config b/Jsarus/App.config new file mode 100644 index 0000000..193aecc --- /dev/null +++ b/Jsarus/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Jsarus/FodyWeavers.xml b/Jsarus/FodyWeavers.xml new file mode 100644 index 0000000..5029e70 --- /dev/null +++ b/Jsarus/FodyWeavers.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Jsarus/FodyWeavers.xsd b/Jsarus/FodyWeavers.xsd new file mode 100644 index 0000000..f2dbece --- /dev/null +++ b/Jsarus/FodyWeavers.xsd @@ -0,0 +1,176 @@ + + + + + + + + + + + + A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks + + + + + A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. + + + + + A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks + + + + + A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. + + + + + Obsolete, use UnmanagedWinX86Assemblies instead + + + + + A list of unmanaged X86 (32 bit) assembly names to include, delimited with line breaks. + + + + + Obsolete, use UnmanagedWinX64Assemblies instead. + + + + + A list of unmanaged X64 (64 bit) assembly names to include, delimited with line breaks. + + + + + A list of unmanaged Arm64 (64 bit) assembly names to include, delimited with line breaks. + + + + + The order of preloaded assemblies, delimited with line breaks. + + + + + + This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. + + + + + Controls if .pdbs for reference assemblies are also embedded. + + + + + Controls if runtime assemblies are also embedded. + + + + + Controls whether the runtime assemblies are embedded with their full path or only with their assembly name. + + + + + Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. + + + + + As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. + + + + + The attach method no longer subscribes to the `AppDomain.AssemblyResolve` (.NET 4.x) and `AssemblyLoadContext.Resolving` (.NET 6.0+) events. + + + + + Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. + + + + + Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. + + + + + A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | + + + + + A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. + + + + + A list of runtime assembly names to exclude from the default action of "embed all Copy Local references", delimited with | + + + + + A list of runtime assembly names to include from the default action of "embed all Copy Local references", delimited with |. + + + + + Obsolete, use UnmanagedWinX86Assemblies instead + + + + + A list of unmanaged X86 (32 bit) assembly names to include, delimited with |. + + + + + Obsolete, use UnmanagedWinX64Assemblies instead + + + + + A list of unmanaged X64 (64 bit) assembly names to include, delimited with |. + + + + + A list of unmanaged Arm64 (64 bit) assembly names to include, delimited with |. + + + + + The order of preloaded assemblies, delimited with |. + + + + + + + + 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. + + + + + A comma-separated list of error codes that can be safely ignored in assembly verification. + + + + + 'false' to turn off automatic generation of the XML Schema file. + + + + + \ No newline at end of file diff --git a/Jsarus/Jsarus.csproj b/Jsarus/Jsarus.csproj new file mode 100644 index 0000000..0a16f35 --- /dev/null +++ b/Jsarus/Jsarus.csproj @@ -0,0 +1,80 @@ + + + + + + Debug + AnyCPU + {C7596A21-235C-411C-989B-1D8BC907BD57} + Exe + Jsarus + Jsarus + v4.8 + 512 + true + true + + + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + 256x256.ico + + + + ..\packages\Costura.Fody.6.0.0\lib\netstandard2.0\Costura.dll + + + ..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}. + + + + + + + \ No newline at end of file diff --git a/Jsarus/Message.cs b/Jsarus/Message.cs new file mode 100644 index 0000000..b1cea0d --- /dev/null +++ b/Jsarus/Message.cs @@ -0,0 +1,92 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Jsarus +{ + internal class Message + { + public static void Splash(string progname, string dev) + { + Console.ForegroundColor = ConsoleColor.Cyan; + Console.WriteLine(""); + Console.WriteLine($"#### {progname}"); + Console.WriteLine(string.Format("#### VERSION: {0}", (object)Program.version)); + Console.WriteLine($"#### DEV: {dev}"); + Console.WriteLine(""); + Console.ForegroundColor = ConsoleColor.White; + } + + public static void CMW(string msg, bool time, int color) + { + DateTime now; + string str1; + int num; + if (DateTime.Now.Second < 10) + { + now = DateTime.Now; + str1 = string.Format("0{0}", (object)now.Second); + } + else + { + num = DateTime.Now.Second; + str1 = num.ToString(); + } + now = DateTime.Now; + string str2; + if (now.Minute < 10) + { + now = DateTime.Now; + str2 = string.Format("0{0}", (object)now.Minute); + } + else + { + now = DateTime.Now; + num = now.Minute; + str2 = num.ToString(); + } + now = DateTime.Now; + string str3; + if (now.Hour < 10) + { + now = DateTime.Now; + str3 = string.Format("0{0}", (object)now.Hour); + } + else + { + now = DateTime.Now; + num = now.Hour; + str3 = num.ToString(); + } + string str4 = string.Format("{0}:{1}:{2}", (object)str3, (object)str2, (object)str1); + File.AppendAllText("mxfiltergen.logs", string.Format("[{0}] {1}", (object)str4, (object)msg) + Environment.NewLine); + ConsoleColor consoleColor = ConsoleColor.White; + switch (color) + { + case 1: + consoleColor = ConsoleColor.Cyan; + break; + case 2: + consoleColor = ConsoleColor.Green; + break; + case 3: + consoleColor = ConsoleColor.Red; + break; + } + if (time) + { + Console.ForegroundColor = consoleColor; + Console.WriteLine(string.Format("[{0}] {1}", (object)str4, (object)msg)); + } + else + { + Console.ForegroundColor = consoleColor; + Console.WriteLine(string.Format("")); + } + Console.ForegroundColor = ConsoleColor.White; + } + } +} diff --git a/Jsarus/Program.cs b/Jsarus/Program.cs new file mode 100644 index 0000000..57f764c --- /dev/null +++ b/Jsarus/Program.cs @@ -0,0 +1,231 @@ +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Diagnostics; +using System.IO; +using System.Linq; +using System.Runtime; +using System.Text; +using System.Threading.Tasks; + +namespace Jsarus +{ + internal class Program + { + public static string version = "1.0.0"; + public static string cd = Directory.GetCurrentDirectory(); + public static Process p = new Process(); + static void Main(string[] args) + { + Message.Splash("Jsarus", "mikx"); + Message.CMW("Creating directories...", true, 1); + if (!Directory.Exists($@"Data\Modded")) { Directory.CreateDirectory($@"Data\Modded"); } + if (!Directory.Exists($@"Data\Modded\data")) { Directory.CreateDirectory($@"Data\Modded\data"); } + Message.CMW("Preparing variables...",true,1); + JObject settings = JObject.Parse(File.ReadAllText("settings.json")); + + string ModName = settings["ModName"].ToObject(); + string GameContentPath = settings["GameContentPath"].ToObject(); + string[] CopyList = settings["CopyList"].ToObject(); + + int ItemWeight = settings["D_Itemable"]["ItemWeight"].ToObject(); + int ItemStack = settings["D_Itemable"]["ItemStack"].ToObject(); + + int ExperienceMultiplier = settings["D_ExperienceEvents"]["ExperienceMultiplier"].ToObject(); + + string[] ActionList = settings["D_StaminaActionCosts"]["ActionList"].ToObject().Split('|'); + int DivideCostPer = settings["D_StaminaActionCosts"]["DivideCostPer"].ToObject(); + + string[] PickList = settings["D_ToolDamage"]["PickList"].ToObject().Split('|'); + string[] PickEfficiencyList = settings["D_ToolDamage"]["PickEfficiencyList"].ToObject().Split('|'); + + string[] AxeList = settings["D_ToolDamage"]["AxeList"].ToObject().Split('|'); + string[] AxeEfficiencyList = settings["D_ToolDamage"]["AxeEfficiencyList"].ToObject().Split('|'); + + string[] RecipeListOre = settings["D_ProcessorRecipes"]["RecipeListOre"].ToObject().Split('|'); + string[] RecipeList = settings["D_ProcessorRecipes"]["RecipeList"].ToObject().Split('|'); + string[] RecipeListStack = settings["D_ProcessorRecipes"]["RecipeListStack"].ToObject().Split('|'); + int RequiredMillijoules = settings["D_ProcessorRecipes"]["RequiredMillijoules"].ToObject(); + int RequiredAmount = settings["D_ProcessorRecipes"]["RequiredAmount"].ToObject(); + int CraftedAmount = settings["D_ProcessorRecipes"]["CraftedAmount"].ToObject(); + + string[] supportedJson = { @"Traits\D_Itemable.json", @"Experience\D_ExperienceEvents.json", @"Tools\D_StaminaActionCosts.json", @"Tools\D_ToolDamage.json", @"Crafting\D_ProcessorRecipes.json" }; + + var dir = Directory.GetDirectories(@"Data\Vanilla"); + + p.StartInfo.FileName = $@"{cd}\Bin\UnrealPak\Engine\Binaries\Win64\UnrealPak.exe"; + p.StartInfo.Arguments = $@"{GameContentPath}\Data\data.pak -Extract ..\..\..\..\..\Data\\Unpacked"; + Message.CMW($"Extracting latest data from your game installation...", true, 1); + p.StartInfo.CreateNoWindow = true; + p.StartInfo.UseShellExecute = false; + p.Start(); + p.WaitForExit(); + Message.CMW($"Copying supported json to the vanilla directory...", true, 1); + foreach (var sj in supportedJson) + { + string supDir = sj.Split('\\')[0]; + string supJson = sj.Split('\\')[1]; + if (!Directory.Exists($@"Data\Vanilla\{supDir}")) { Directory.CreateDirectory($@"Data\Vanilla\{supDir}"); } + File.Copy($@"Data\Unpacked\{supDir}\{supJson}", $@"Data\Vanilla\{supDir}\{supJson}", true); + Message.CMW($"Copied {sj.Split('\\')[1]}.", true, 2); + } + + Message.CMW($"We extracted the data, should we continue and mod it? (y/n)", true, 1); + ConsoleKeyInfo keyInfo = Console.ReadKey(true); + if (keyInfo.Key == ConsoleKey.N) { return; } else + + foreach (var d in dir) + { + var json = Directory.GetFiles(d); + foreach (var file in json) + { + string f = Path.GetFileName(file); + Message.CMW($"Processing {f}...", true, 1); + JObject job = JObject.Parse(File.ReadAllText(file)); + switch (f) + { + case "D_Itemable.json": + foreach (var r in job["Rows"]) + { + r["Name"] = r["Name"].ToObject(); + r["DisplayName"] = r["DisplayName"].ToObject(); + if (r["Icon"] != null) + { + r["Icon"] = r["Icon"].ToObject(); + } + if (r["Description"] != null) + { + r["Description"] = r["Description"].ToObject(); + } + if (r["FlavorText"] != null) + { + r["FlavorText"] = r["FlavorText"].ToObject(); + } + r["Weight"] = ItemWeight; + if (r["MaxStack"] != null) + { + r["MaxStack"] = ItemStack; + } + } + break; + + case "D_ExperienceEvents.json": + foreach (var r in job["Rows"]) + { + r["Name"] = r["Name"].ToObject(); + if (r["EventDescription"] != null) + { + r["EventDescription"] = r["EventDescription"].ToObject(); + } + if (r["SharedExperience"] != null) + { + r["SharedExperience"] = r["SharedExperience"].ToObject(); + } + if (r["ExperienceGranted"] != null) + { + r["ExperienceGranted"] = r["ExperienceGranted"].ToObject() * ExperienceMultiplier; + } + } + break; + + case "D_StaminaActionCosts.json": + foreach (var r in job["Rows"]) + { + if(ActionList.Contains(r["Name"].ToString())) + { + if (r["PerSecondCost"] != null) + { + r["PerSecondCost"] = r["PerSecondCost"].ToObject() / DivideCostPer; + } + if (r["BeginActionCost"] != null) + { + r["BeginActionCost"] = r["BeginActionCost"].ToObject() / DivideCostPer; + } + } + } + break; + + case "D_ToolDamage.json": + foreach (var r in job["Rows"]) + { + if (PickList.Contains(r["Name"].ToString())) + { + int index = Array.IndexOf(PickList, r["Name"].ToString()); + r["Mining_Efficiency"] = PickEfficiencyList[index]; + } + + if (AxeList.Contains(r["Name"].ToString())) + { + int index = Array.IndexOf(AxeList, r["Name"].ToString()); + r["Felling_Efficiency"] = AxeEfficiencyList[index]; + } + } + break; + + case "D_ProcessorRecipes.json": + foreach (var r in job["Rows"]) + { + if (r["Inputs"].Count() > 0) + { + if (RecipeListOre.Contains(r["Name"].ToString())) + { + if (r["RequiredMillijoules"] != null) + { + r["RequiredMillijoules"] = RequiredMillijoules; + } + foreach (var i in r["Inputs"]) + { + i["Count"] = RequiredAmount; + } + r["Outputs"][0]["Count"] = CraftedAmount; + } + + if (RecipeList.Contains(r["Name"].ToString())) + { + foreach (var i in r["Inputs"]) + { + i["Count"] = RequiredAmount; + } + r["Outputs"][0]["Count"] = 1; + } + + if (RecipeListStack.Contains(r["Name"].ToString())) + { + foreach (var i in r["Inputs"]) + { + i["Count"] = RequiredAmount; + } + r["Outputs"][0]["Count"] = CraftedAmount; + } + } + } + break; + } + Message.CMW($"Saving {f}...", true, 1); + var raw = JsonConvert.SerializeObject(job, Formatting.Indented); + if (!Directory.Exists($@"{cd}\Data\Modded\data\{Path.GetFileName(d)}")) { Directory.CreateDirectory($@"{cd}\Data\Modded\data\{Path.GetFileName(d)}"); } + File.WriteAllText($@"Data/Modded/data/{Path.GetFileName(d)}/{f}", raw); + } + } + + if (File.Exists($@"{cd}\Paks\{ModName}.txt")) { File.Delete($@"{cd}\Paks\{ModName}.txt"); } + File.WriteAllText($@"{cd}\Paks\{ModName}.txt", $@"""{cd}\Data\Modded\*.*"" ""..\..\..\Icarus\Content\*.*"""); + p.StartInfo.FileName = @"Bin\UnrealPak\Engine\Binaries\Win64\UnrealPak.exe"; + p.StartInfo.Arguments = $@"{cd}\Paks\{ModName}_P.pak -Create={cd}\Paks\{ModName}.txt -NoCompression"; + p.StartInfo.CreateNoWindow = true; + p.StartInfo.UseShellExecute = false; + p.Start(); + p.WaitForExit(); + + if (CopyList.Length > 0) + { + foreach (var p in CopyList) + { + File.Copy($@"{cd}\Paks\{ModName}_P.pak", $@"{p}\{ModName}_P.pak", true); + } + } + } + } +} diff --git a/Jsarus/Properties/AssemblyInfo.cs b/Jsarus/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a39bace --- /dev/null +++ b/Jsarus/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Les informations générales relatives à un assembly dépendent de +// l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations +// associées à un assembly. +[assembly: AssemblyTitle("IcarusJsonEditor")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("IcarusJsonEditor")] +[assembly: AssemblyCopyright("Copyright © 2023")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// L'affectation de la valeur false à ComVisible rend les types invisibles dans cet assembly +// aux composants COM. Si vous devez accéder à un type dans cet assembly à partir de +// COM, affectez la valeur true à l'attribut ComVisible sur ce type. +[assembly: ComVisible(false)] + +// Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM +[assembly: Guid("c7596a21-235c-411c-989b-1d8bc907bd57")] + +// Les informations de version pour un assembly se composent des quatre valeurs suivantes : +// +// Version principale +// Version secondaire +// Numéro de build +// Révision +// +// Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut +// en utilisant '*', comme indiqué ci-dessous : +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Jsarus/packages.config b/Jsarus/packages.config new file mode 100644 index 0000000..3448a4a --- /dev/null +++ b/Jsarus/packages.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29