From b4b1d1613075c43dd0bcad4c29e048f84ab51067 Mon Sep 17 00:00:00 2001 From: Bouletmarc Date: Thu, 21 Apr 2022 07:39:16 -0400 Subject: [PATCH] Add files via upload --- Form1.Designer.cs | 118 ++++++++++++++++ Form1.cs | 43 ++++++ Form1.resx | 126 ++++++++++++++++++ Program.cs | 21 +++ Properties/AssemblyInfo.cs | 36 +++++ Properties/Resources.Designer.cs | 71 ++++++++++ Properties/Resources.resx | 117 ++++++++++++++++ Properties/Settings.Designer.cs | 30 +++++ Properties/Settings.settings | 7 + ResourceConverter.csproj | 78 +++++++++++ ResourceConverter.sln | 25 ++++ bin/Debug/ResourceConverter.exe | Bin 0 -> 9728 bytes bin/Debug/ResourceConverter.pdb | Bin 0 -> 28160 bytes .../DesignTimeResolveAssemblyReferences.cache | Bin 0 -> 1423 bytes ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 6944 bytes obj/Debug/ResourceConverter.Form1.resources | Bin 0 -> 180 bytes ...ceConverter.Properties.Resources.resources | Bin 0 -> 180 bytes ...ourceConverter.csproj.FileListAbsolute.txt | 8 ++ ...rceConverter.csproj.GenerateResource.cache | Bin 0 -> 1012 bytes ...rceConverter.csprojAssemblyReference.cache | Bin 0 -> 424 bytes obj/Debug/ResourceConverter.exe | Bin 0 -> 9728 bytes obj/Debug/ResourceConverter.pdb | Bin 0 -> 28160 bytes 22 files changed, 680 insertions(+) create mode 100644 Form1.Designer.cs create mode 100644 Form1.cs create mode 100644 Form1.resx create mode 100644 Program.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 Properties/Resources.Designer.cs create mode 100644 Properties/Resources.resx create mode 100644 Properties/Settings.Designer.cs create mode 100644 Properties/Settings.settings create mode 100644 ResourceConverter.csproj create mode 100644 ResourceConverter.sln create mode 100644 bin/Debug/ResourceConverter.exe create mode 100644 bin/Debug/ResourceConverter.pdb create mode 100644 obj/Debug/DesignTimeResolveAssemblyReferences.cache create mode 100644 obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 obj/Debug/ResourceConverter.Form1.resources create mode 100644 obj/Debug/ResourceConverter.Properties.Resources.resources create mode 100644 obj/Debug/ResourceConverter.csproj.FileListAbsolute.txt create mode 100644 obj/Debug/ResourceConverter.csproj.GenerateResource.cache create mode 100644 obj/Debug/ResourceConverter.csprojAssemblyReference.cache create mode 100644 obj/Debug/ResourceConverter.exe create mode 100644 obj/Debug/ResourceConverter.pdb diff --git a/Form1.Designer.cs b/Form1.Designer.cs new file mode 100644 index 0000000..c70b444 --- /dev/null +++ b/Form1.Designer.cs @@ -0,0 +1,118 @@ +namespace ResourceConverter +{ + partial class Form1 + { + /// + /// Variable nécessaire au concepteur. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Nettoyage des ressources utilisées. + /// + /// true si les ressources managées doivent être supprimées ; sinon, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Code généré par le Concepteur Windows Form + + /// + /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas + /// le contenu de cette méthode avec l'éditeur de code. + /// + private void InitializeComponent() + { + this.textBox1 = new System.Windows.Forms.TextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.label3 = new System.Windows.Forms.Label(); + this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); + this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog(); + this.SuspendLayout(); + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(141, 21); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(308, 20); + this.textBox1.TabIndex = 0; + this.textBox1.Click += new System.EventHandler(this.textBox1_Click); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(13, 24); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(103, 13); + this.label1.TabIndex = 1; + this.label1.Text = "Select .resource file:"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(13, 69); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(112, 13); + this.label2.TabIndex = 3; + this.label2.Text = "Select folder directory:"; + // + // textBox2 + // + this.textBox2.Location = new System.Drawing.Point(141, 66); + this.textBox2.Name = "textBox2"; + this.textBox2.Size = new System.Drawing.Size(308, 20); + this.textBox2.TabIndex = 2; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(53, 46); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(23, 13); + this.label3.TabIndex = 4; + this.label3.Text = "OR"; + // + // openFileDialog1 + // + this.openFileDialog1.DefaultExt = "resource"; + this.openFileDialog1.Filter = "Resource File|*.resources"; + this.openFileDialog1.Title = "Open Resource File"; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(461, 98); + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Controls.Add(this.textBox2); + this.Controls.Add(this.label1); + this.Controls.Add(this.textBox1); + this.MaximizeBox = false; + this.Name = "Form1"; + this.ShowIcon = false; + this.Text = "Resource Converter (.resource to .resx)"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.TextBox textBox2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.OpenFileDialog openFileDialog1; + private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1; + } +} + diff --git a/Form1.cs b/Form1.cs new file mode 100644 index 0000000..752c243 --- /dev/null +++ b/Form1.cs @@ -0,0 +1,43 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.IO; +using System.Windows.Forms; +using System.Diagnostics; + +namespace ResourceConverter +{ + + //"C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools" + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void textBox1_Click(object sender, EventArgs e) + { + DialogResult result = openFileDialog1.ShowDialog(); + if (result == DialogResult.OK) + { + ProcessStartInfo startInfo = new ProcessStartInfo(); + startInfo.CreateNoWindow = false; + startInfo.UseShellExecute = false; + startInfo.FileName = @"C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6 Tools\ResGen.exe"; + startInfo.WindowStyle = ProcessWindowStyle.Hidden; + + // Part 2: set arguments. + startInfo.Arguments = "ResGen " + openFileDialog1.FileName + " [" + Path.GetDirectoryName(openFileDialog1.FileName) + @"\" + Path.GetFileNameWithoutExtension(openFileDialog1.FileName) + ".resx]"; + + //Console.WriteLine("ResGen " + openFileDialog1.FileName + " [" + Path.GetDirectoryName(openFileDialog1.FileName) + @"\" + Path.GetFileNameWithoutExtension(openFileDialog1.FileName) + ".resx]"); + + Process.Start(startInfo); + } + } + } +} diff --git a/Form1.resx b/Form1.resx new file mode 100644 index 0000000..43fdaf2 --- /dev/null +++ b/Form1.resx @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + 157, 17 + + \ No newline at end of file diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..ccb4137 --- /dev/null +++ b/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace ResourceConverter +{ + static class Program + { + /// + /// Point d'entrée principal de l'application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f189b05 --- /dev/null +++ b/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("ResourceConverter")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ResourceConverter")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[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("e9ec9d76-ece0-40c6-9b04-75bd498e586b")] + +// 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/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs new file mode 100644 index 0000000..78dd45b --- /dev/null +++ b/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Ce code a été généré par un outil. +// Version du runtime :4.0.30319.42000 +// +// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si +// le code est régénéré. +// +//------------------------------------------------------------------------------ + +namespace ResourceConverter.Properties +{ + + + /// + /// Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées. + /// + // Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder + // à l'aide d'un outil, tel que ResGen ou Visual Studio. + // Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen + // avec l'option /str ou régénérez votre projet VS. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Retourne l'instance ResourceManager mise en cache utilisée par cette classe. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ResourceConverter.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Remplace la propriété CurrentUICulture du thread actuel pour toutes + /// les recherches de ressources à l'aide de cette classe de ressource fortement typée. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Properties/Resources.resx b/Properties/Resources.resx new file mode 100644 index 0000000..ffecec8 --- /dev/null +++ b/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs new file mode 100644 index 0000000..7b7e770 --- /dev/null +++ b/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace ResourceConverter.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Properties/Settings.settings b/Properties/Settings.settings new file mode 100644 index 0000000..abf36c5 --- /dev/null +++ b/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/ResourceConverter.csproj b/ResourceConverter.csproj new file mode 100644 index 0000000..f3e8987 --- /dev/null +++ b/ResourceConverter.csproj @@ -0,0 +1,78 @@ + + + + + Debug + AnyCPU + {E9EC9D76-ECE0-40C6-9B04-75BD498E586B} + WinExe + ResourceConverter + ResourceConverter + v4.0 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + \ No newline at end of file diff --git a/ResourceConverter.sln b/ResourceConverter.sln new file mode 100644 index 0000000..ecab19b --- /dev/null +++ b/ResourceConverter.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29418.71 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResourceConverter", "ResourceConverter.csproj", "{E9EC9D76-ECE0-40C6-9B04-75BD498E586B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E9EC9D76-ECE0-40C6-9B04-75BD498E586B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E9EC9D76-ECE0-40C6-9B04-75BD498E586B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E9EC9D76-ECE0-40C6-9B04-75BD498E586B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E9EC9D76-ECE0-40C6-9B04-75BD498E586B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8FD9C1A5-A302-462A-93F2-1540D8EFA62B} + EndGlobalSection +EndGlobal diff --git a/bin/Debug/ResourceConverter.exe b/bin/Debug/ResourceConverter.exe new file mode 100644 index 0000000000000000000000000000000000000000..826929b4db7513cea401b947c222124d59c39714 GIT binary patch literal 9728 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 literal 0 HcmV?d00001 diff --git a/bin/Debug/ResourceConverter.pdb b/bin/Debug/ResourceConverter.pdb new file mode 100644 index 0000000000000000000000000000000000000000..82288f6d5c23790d8f828924b9870b2182993093 GIT binary patch literal 28160 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 literal 0 HcmV?d00001 diff --git a/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000000000000000000000000000000000000..8cf7883334dc928519b98e16f20425511f5a8fdc GIT binary patch literal 1423 zcmcIk-EPw`6n5Gq>(78PU~s`jxC5=SQkB9$s?g}DkoX(4+HL}qo17G@PCVJkO1b43 zcmp1X2jC%i2k^pyXMg8AIu5Z2A-_z+9@}=sz=u~nR8q@0qfc`#B06Sz zrs+T`XnV(?G?!_=)1w{gQ@`yEa*^c<`YGg@VxsLGE@cwcTYLZ&bunCRS&D zzTJOP!!T?ES8?DVpq!0M|2T&(o2Pu5n&b|c24Yz)Jc#GqEd#T`kw?JAyOqYJB6`QQ0}DN}Li>sZ=aduUYu0$(JABcD{bE;WKG88tyghv4&~a t?{*#$3xmTr%EaqsA{tmnyiq2i$#ultG7%H8j(D?7#AK}_-YOBBzX9n!lrR7Q literal 0 HcmV?d00001 diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000000000000000000000000000000000000..6cf8240090518df0823782b1573dd96f46398233 GIT binary patch literal 6944 zcmeHM+fo}x5S2iz5f}#%2V;nxb>dv?C>zP#UB!cqP(sCa5lO+RLMlAkZHY0vJIc%~ zLZQteQfrt?pXr{NozqP$9*f2P!H0h7xjllydChGpl&EQI zm#cueMIAU?SewH0guk8JN}IbN6&LXh+K7#Zz;I2b>+r9=V8gC_QG(cJfCb#`Ypw)dGe4n|l zXoB-XDe$UpYwK8pPqR`}*n3m>HD1qi7iMkdJKSL!x;?2@Ez|<^Q;Aiv z?e4j@yl@?~_aRl5n5={D4J!s!1^NvtQIC1u7ZP$%W9W))Uum3Qe|BxfPp|LPR@d%& zk6*3g!KM1Mqf8g=RQkd+b6kS0h2)^78;)kO2u#`sJ4_#_>H39=$%Yg)^blD!BcaZf zmaYDPBpRlHTsV)4&N|}^%It-v*TUzAARk>_o#U$EvK9ee9N5`t3+;hBQrMuBkS}od zT%%36@qii9meImXT7dP zExBJ$o1U_Tba}OZ#+Lr~5nEkl%l7h0c71UPGHdIV^mX&Np;L{*50$~X^@gj9$A?=q zie1z@O;ISn;d^Sp2WYrKqu4{k4LYccvl1sBoE$|lkxWo=j0DnwSn?JM{23>aBr!o^ z62*jZ8)eLxLhFZZa&iua4}gVs<_G8U7ucNRgB2Ys`|cn%wss;~th1mgBm{Tv&o*NYOfwgAF48 z_JI6?F2le=BQY))L2IO7%0fmT7L0iWsv{6~s$-yFhH-=W-SOJW6LfKhLz z?m6T9T9?WGem85gc)(;MG;{&M_9Fo663P(da|EeI0Mg^T5<;8@h@+#!$uZ3=61Zml zurEY@7_EgNGVRMR5a%F53!&kP7M=9aDihHv(V>w+j}QW)gUCsSN4p+c^CdzZMhEql z`;KTTD=(y{Lcp&OkVOahyXS^5j}fL8EzB$K|3O#@x{!u6YDl97nlKo26cXO+`=8Nu1( z`V~Dph!CX8{Z0syqR1k2?2lN8V&%fv0(IXCmx-Y08U1Vc%K5K<(+poZz4Uoy@?Vgl B3y}Z- literal 0 HcmV?d00001 diff --git a/obj/Debug/ResourceConverter.Form1.resources b/obj/Debug/ResourceConverter.Form1.resources new file mode 100644 index 0000000000000000000000000000000000000000..6c05a9776bd7cbae976fdcec7e3a254e93018279 GIT binary patch literal 180 zcmX?i>is@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J onW3ezNveT`r81^vrFkWpxv4PQgHubGfR2KJ07n-P+5+SQ04Y>DD*ylh literal 0 HcmV?d00001 diff --git a/obj/Debug/ResourceConverter.Properties.Resources.resources b/obj/Debug/ResourceConverter.Properties.Resources.resources new file mode 100644 index 0000000000000000000000000000000000000000..6c05a9776bd7cbae976fdcec7e3a254e93018279 GIT binary patch literal 180 zcmX?i>is@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J onW3ezNveT`r81^vrFkWpxv4PQgHubGfR2KJ07n-P+5+SQ04Y>DD*ylh literal 0 HcmV?d00001 diff --git a/obj/Debug/ResourceConverter.csproj.FileListAbsolute.txt b/obj/Debug/ResourceConverter.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fa486d8 --- /dev/null +++ b/obj/Debug/ResourceConverter.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +C:\Users\boule\Documents\Visual Studio 2019\Projects\ResourceConverter\bin\Debug\ResourceConverter.exe +C:\Users\boule\Documents\Visual Studio 2019\Projects\ResourceConverter\bin\Debug\ResourceConverter.pdb +C:\Users\boule\Documents\Visual Studio 2019\Projects\ResourceConverter\obj\Debug\ResourceConverter.csprojAssemblyReference.cache +C:\Users\boule\Documents\Visual Studio 2019\Projects\ResourceConverter\obj\Debug\ResourceConverter.Form1.resources +C:\Users\boule\Documents\Visual Studio 2019\Projects\ResourceConverter\obj\Debug\ResourceConverter.Properties.Resources.resources +C:\Users\boule\Documents\Visual Studio 2019\Projects\ResourceConverter\obj\Debug\ResourceConverter.csproj.GenerateResource.cache +C:\Users\boule\Documents\Visual Studio 2019\Projects\ResourceConverter\obj\Debug\ResourceConverter.exe +C:\Users\boule\Documents\Visual Studio 2019\Projects\ResourceConverter\obj\Debug\ResourceConverter.pdb diff --git a/obj/Debug/ResourceConverter.csproj.GenerateResource.cache b/obj/Debug/ResourceConverter.csproj.GenerateResource.cache new file mode 100644 index 0000000000000000000000000000000000000000..5024480ff074b148450d2b0a299007e9986b83a2 GIT binary patch literal 1012 zcma)4!EVz)5Vf1wjh&P_2UH_v^sQ^<)aG=4w9}5Yly-?b+RKmVUHPe{iNSVP~ zJ_AmOU7=xWm0orxmRX?C4g$I-2DD&Od;xx;pk8;K$JJe2=cj?(5w=3uphk|m4n2>~ zcX&(#Y4K~KYmX*NV_}XnmlE~hz)k#`nNOwmlE%X~F42^HJ|5~6`tQS41cdvF@iC(r ztzJx`F;epd)1V`w7%2{iT74EAbb|sD99kX!rty!NEWjXT&GEcuql#e1CDpredqcYzDz}sVMpIs`qS?6Gqb2QO zH$#`RIXt`(m(17$#YHB7-@lQAQ(>&}aYNSJvh8&w2}twr?+lOJcUOCm}&ZOW1U V^KV~YZvQ+#bK3+bYg3M_`48w|7$^V$ literal 0 HcmV?d00001 diff --git a/obj/Debug/ResourceConverter.csprojAssemblyReference.cache b/obj/Debug/ResourceConverter.csprojAssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..282c79f286d9eecb58aa4a8cc4a6656fa542a4c7 GIT binary patch literal 424 zcmaJ-Jx{|h5Oru$TEb8kCWf#_R-!6`B|;(yApruEsw3!}Rpp~${*{`vAC`+SR~c77ZSft zqoeODpF&D(t&d>%6_^(bjYLX49eE0g{*{isVDCmjcL}XkdUrcd?BiBy{R$fOgx;;i z8-~7U#!HY64Pzq~Me*cto8wM*VgUK$d4D)PyPz1MrvutVMAR;%(jPvWGJX=zga6zL P46-1Yk&!SXGa>#2unTqX literal 0 HcmV?d00001 diff --git a/obj/Debug/ResourceConverter.exe b/obj/Debug/ResourceConverter.exe new file mode 100644 index 0000000000000000000000000000000000000000..826929b4db7513cea401b947c222124d59c39714 GIT binary patch literal 9728 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 literal 0 HcmV?d00001 diff --git a/obj/Debug/ResourceConverter.pdb b/obj/Debug/ResourceConverter.pdb new file mode 100644 index 0000000000000000000000000000000000000000..82288f6d5c23790d8f828924b9870b2182993093 GIT binary patch literal 28160 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 literal 0 HcmV?d00001