From ba44e9b1a4d0d5b30617e1615f8cc7e4be6c51bd Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Thu, 20 Aug 2020 17:44:51 +0200 Subject: [PATCH] Empty dummy proj --- ELMA.sln | 25 ++++ ELMA/App.config | 6 + ELMA/ELMA.csproj | 80 ++++++++++++ ELMA/Form1.Designer.cs | 40 ++++++ ELMA/Form1.cs | 20 +++ ELMA/Program.cs | 22 ++++ ELMA/Properties/AssemblyInfo.cs | 36 ++++++ ELMA/Properties/Resources.Designer.cs | 71 +++++++++++ ELMA/Properties/Resources.resx | 117 ++++++++++++++++++ ELMA/Properties/Settings.Designer.cs | 30 +++++ ELMA/Properties/Settings.settings | 7 ++ ...ework,Version=v4.6.2.AssemblyAttributes.cs | 4 + ...le_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs | 0 ...le_5937a670-0e60-4077-877b-f7221da3dda1.cs | 0 ...le_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs | 0 15 files changed, 458 insertions(+) create mode 100644 ELMA.sln create mode 100644 ELMA/App.config create mode 100644 ELMA/ELMA.csproj create mode 100644 ELMA/Form1.Designer.cs create mode 100644 ELMA/Form1.cs create mode 100644 ELMA/Program.cs create mode 100644 ELMA/Properties/AssemblyInfo.cs create mode 100644 ELMA/Properties/Resources.Designer.cs create mode 100644 ELMA/Properties/Resources.resx create mode 100644 ELMA/Properties/Settings.Designer.cs create mode 100644 ELMA/Properties/Settings.settings create mode 100644 ELMA/obj/Debug/.NETFramework,Version=v4.6.2.AssemblyAttributes.cs create mode 100644 ELMA/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs create mode 100644 ELMA/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs create mode 100644 ELMA/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs diff --git a/ELMA.sln b/ELMA.sln new file mode 100644 index 0000000..434c78d --- /dev/null +++ b/ELMA.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30225.117 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ELMA", "ELMA\ELMA.csproj", "{4342C0F9-646E-4197-97E2-AEE620EE0A99}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4342C0F9-646E-4197-97E2-AEE620EE0A99}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4342C0F9-646E-4197-97E2-AEE620EE0A99}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4342C0F9-646E-4197-97E2-AEE620EE0A99}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4342C0F9-646E-4197-97E2-AEE620EE0A99}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC851A47-7444-46FE-AC27-51F2E189A40B} + EndGlobalSection +EndGlobal diff --git a/ELMA/App.config b/ELMA/App.config new file mode 100644 index 0000000..b50c74f --- /dev/null +++ b/ELMA/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ELMA/ELMA.csproj b/ELMA/ELMA.csproj new file mode 100644 index 0000000..2c8b2a5 --- /dev/null +++ b/ELMA/ELMA.csproj @@ -0,0 +1,80 @@ + + + + + Debug + AnyCPU + {4342C0F9-646E-4197-97E2-AEE620EE0A99} + WinExe + ELMA + ELMA + v4.6.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + 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/ELMA/Form1.Designer.cs b/ELMA/Form1.Designer.cs new file mode 100644 index 0000000..8310c42 --- /dev/null +++ b/ELMA/Form1.Designer.cs @@ -0,0 +1,40 @@ +namespace ELMA +{ + partial class Form1 + { + /// + /// Variabile di progettazione necessaria. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Pulire le risorse in uso. + /// + /// ha valore true se le risorse gestite devono essere eliminate, false in caso contrario. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Codice generato da Progettazione Windows Form + + /// + /// Metodo necessario per il supporto della finestra di progettazione. Non modificare + /// il contenuto del metodo con l'editor di codice. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "Form1"; + } + + #endregion + } +} + diff --git a/ELMA/Form1.cs b/ELMA/Form1.cs new file mode 100644 index 0000000..232ef38 --- /dev/null +++ b/ELMA/Form1.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ELMA +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/ELMA/Program.cs b/ELMA/Program.cs new file mode 100644 index 0000000..30d30cf --- /dev/null +++ b/ELMA/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ELMA +{ + static class Program + { + /// + /// Punto di ingresso principale dell'applicazione. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/ELMA/Properties/AssemblyInfo.cs b/ELMA/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..9eac221 --- /dev/null +++ b/ELMA/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Le informazioni generali relative a un assembly sono controllate dal seguente +// set di attributi. Modificare i valori di questi attributi per modificare le informazioni +// associate a un assembly. +[assembly: AssemblyTitle("ELMA")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ELMA")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Se si imposta ComVisible su false, i tipi in questo assembly non saranno visibili +// ai componenti COM. Se è necessario accedere a un tipo in questo assembly da +// COM, impostare su true l'attributo ComVisible per tale tipo. +[assembly: ComVisible(false)] + +// Se il progetto viene esposto a COM, il GUID seguente verrà utilizzato come ID della libreria dei tipi +[assembly: Guid("4342c0f9-646e-4197-97e2-aee620ee0a99")] + +// Le informazioni sulla versione di un assembly sono costituite dai seguenti quattro valori: +// +// Versione principale +// Versione secondaria +// Numero di build +// Revisione +// +// È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build +// usando l'asterisco '*' come illustrato di seguito: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ELMA/Properties/Resources.Designer.cs b/ELMA/Properties/Resources.Designer.cs new file mode 100644 index 0000000..00e9c9e --- /dev/null +++ b/ELMA/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Codice generato da uno strumento. +// Versione runtime:4.0.30319.42000 +// +// Le modifiche apportate a questo file possono causare un comportamento non corretto e andranno perse se +// il codice viene rigenerato. +// +//------------------------------------------------------------------------------ + +namespace ELMA.Properties +{ + + + /// + /// Classe di risorse fortemente tipizzata per la ricerca di stringhe localizzate e così via. + /// + // Questa classe è stata generata automaticamente dalla classe StronglyTypedResourceBuilder + // tramite uno strumento quale ResGen o Visual Studio. + // Per aggiungere o rimuovere un membro, modificare il file .ResX, quindi eseguire di nuovo ResGen + // con l'opzione /str oppure ricompilare il progetto 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() + { + } + + /// + /// Restituisce l'istanza di ResourceManager memorizzata nella cache e usata da questa 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("ELMA.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Esegue l'override della proprietà CurrentUICulture del thread corrente per tutte + /// le ricerche di risorse che utilizzano questa classe di risorse fortemente tipizzata. + /// + [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/ELMA/Properties/Resources.resx b/ELMA/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/ELMA/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/ELMA/Properties/Settings.Designer.cs b/ELMA/Properties/Settings.Designer.cs new file mode 100644 index 0000000..a38bfcd --- /dev/null +++ b/ELMA/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 ELMA.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/ELMA/Properties/Settings.settings b/ELMA/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/ELMA/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/ELMA/obj/Debug/.NETFramework,Version=v4.6.2.AssemblyAttributes.cs b/ELMA/obj/Debug/.NETFramework,Version=v4.6.2.AssemblyAttributes.cs new file mode 100644 index 0000000..edc4647 --- /dev/null +++ b/ELMA/obj/Debug/.NETFramework,Version=v4.6.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.2", FrameworkDisplayName = ".NET Framework 4.6.2")] diff --git a/ELMA/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/ELMA/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/ELMA/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/ELMA/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/ELMA/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/ELMA/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29