diff --git a/Hilo1.csproj b/Hilo1.csproj new file mode 100644 index 0000000..f52c241 --- /dev/null +++ b/Hilo1.csproj @@ -0,0 +1,166 @@ + + + Debug + x86 + {2697971D-49D5-40D9-908D-0BA7196DF97B} + WinExe + false + WindowsApplication + v4.8 + + + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + x86 + false + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + x86 + false + + + Hilo1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + + + + + Form + + + Form1.cs + + + + + + + + + + + Form1.cs + + + + Form1.cs + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Hilo1.sln b/Hilo1.sln new file mode 100644 index 0000000..7a4df2a --- /dev/null +++ b/Hilo1.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34031.279 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hilo1", "Hilo1.csproj", "{2697971D-49D5-40D9-908D-0BA7196DF97B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2697971D-49D5-40D9-908D-0BA7196DF97B}.Debug|x86.ActiveCfg = Debug|x86 + {2697971D-49D5-40D9-908D-0BA7196DF97B}.Debug|x86.Build.0 = Debug|x86 + {2697971D-49D5-40D9-908D-0BA7196DF97B}.Release|x86.ActiveCfg = Release|x86 + {2697971D-49D5-40D9-908D-0BA7196DF97B}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8293EAC2-BDDA-4F6C-99E8-7FF9EDECAFF5} + EndGlobalSection +EndGlobal diff --git a/app.config b/app.config new file mode 100644 index 0000000..3e0e37c --- /dev/null +++ b/app.config @@ -0,0 +1,3 @@ + + + diff --git a/csharp/HolaMundo/HolaMundo.sln b/csharp/HolaMundo/HolaMundo.sln new file mode 100644 index 0000000..c874061 --- /dev/null +++ b/csharp/HolaMundo/HolaMundo.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}") = "HolaMundo", "HolaMundo\HolaMundo.csproj", "{8D2C590F-43EE-48CB-8BDC-C0224F2753A5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8D2C590F-43EE-48CB-8BDC-C0224F2753A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8D2C590F-43EE-48CB-8BDC-C0224F2753A5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8D2C590F-43EE-48CB-8BDC-C0224F2753A5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8D2C590F-43EE-48CB-8BDC-C0224F2753A5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {1272A85F-12E6-421D-AD7E-5B3FAEAFB7B5} + EndGlobalSection +EndGlobal diff --git a/csharp/HolaMundo/HolaMundo/HolaMundo.csproj b/csharp/HolaMundo/HolaMundo/HolaMundo.csproj new file mode 100644 index 0000000..74abf5c --- /dev/null +++ b/csharp/HolaMundo/HolaMundo/HolaMundo.csproj @@ -0,0 +1,10 @@ + + + + Exe + net6.0 + enable + enable + + + diff --git a/csharp/HolaMundo/HolaMundo/Program.cs b/csharp/HolaMundo/HolaMundo/Program.cs new file mode 100644 index 0000000..f11eb0a --- /dev/null +++ b/csharp/HolaMundo/HolaMundo/Program.cs @@ -0,0 +1,7 @@ +internal class Program +{ + private static void Main(string[] args) + { + Console.WriteLine("Hello, https://programacion-servicios-procesos.fp.edu.es/"); + } +} \ No newline at end of file diff --git a/csharp/WindowsFormsApp1/WindowsFormsApp1.sln b/csharp/WindowsFormsApp1/WindowsFormsApp1.sln new file mode 100644 index 0000000..8734675 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34031.279 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsApp1", "WindowsFormsApp1\WindowsFormsApp1.csproj", "{A4D0A6CF-1338-439F-BB76-1C916E0B42E0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A4D0A6CF-1338-439F-BB76-1C916E0B42E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A4D0A6CF-1338-439F-BB76-1C916E0B42E0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A4D0A6CF-1338-439F-BB76-1C916E0B42E0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A4D0A6CF-1338-439F-BB76-1C916E0B42E0}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {65D61C7B-F818-4136-9EAB-96BA8CE4A39B} + EndGlobalSection +EndGlobal diff --git a/csharp/WindowsFormsApp1/WindowsFormsApp1/App.config b/csharp/WindowsFormsApp1/WindowsFormsApp1/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/csharp/WindowsFormsApp1/WindowsFormsApp1/Form1.Designer.cs b/csharp/WindowsFormsApp1/WindowsFormsApp1/Form1.Designer.cs new file mode 100644 index 0000000..ec849fc --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/Form1.Designer.cs @@ -0,0 +1,40 @@ +namespace WindowsFormsApp1 +{ + partial class Form1 + { + /// + /// Variable del diseñador necesaria. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Limpiar los recursos que se estén usando. + /// + /// true si los recursos administrados se deben desechar; false en caso contrario. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Código generado por el Diseñador de Windows Forms + + /// + /// Método necesario para admitir el Diseñador. No se puede modificar + /// el contenido de este método con el editor de código. + /// + 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/csharp/WindowsFormsApp1/WindowsFormsApp1/Form1.cs b/csharp/WindowsFormsApp1/WindowsFormsApp1/Form1.cs new file mode 100644 index 0000000..e32d5a7 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/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 WindowsFormsApp1 +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/csharp/WindowsFormsApp1/WindowsFormsApp1/Form1.resx b/csharp/WindowsFormsApp1/WindowsFormsApp1/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + \ No newline at end of file diff --git a/csharp/WindowsFormsApp1/WindowsFormsApp1/Program.cs b/csharp/WindowsFormsApp1/WindowsFormsApp1/Program.cs new file mode 100644 index 0000000..8cd6854 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace WindowsFormsApp1 +{ + internal static class Program + { + /// + /// Punto de entrada principal para la aplicación. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/AssemblyInfo.cs b/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a8d33c7 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// La información general de un ensamblado se controla mediante el siguiente +// conjunto de atributos. Cambie estos valores de atributo para modificar la información +// asociada con un ensamblado. +[assembly: AssemblyTitle("WindowsFormsApp1")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("WindowsFormsApp1")] +[assembly: AssemblyCopyright("Copyright © 2023")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Si establece ComVisible en false, los tipos de este ensamblado no estarán visibles +// para los componentes COM. Si es necesario obtener acceso a un tipo en este ensamblado desde +// COM, establezca el atributo ComVisible en true en este tipo. +[assembly: ComVisible(false)] + +// El siguiente GUID sirve como id. de typelib si este proyecto se expone a COM. +[assembly: Guid("a4d0a6cf-1338-439f-bb76-1c916e0b42e0")] + +// La información de versión de un ensamblado consta de los cuatro valores siguientes: +// +// Versión principal +// Versión secundaria +// Número de compilación +// Revisión +// +// Puede especificar todos los valores o usar los valores predeterminados de número de compilación y de revisión +// utilizando el carácter "*", como se muestra a continuación: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Resources.Designer.cs b/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Resources.Designer.cs new file mode 100644 index 0000000..ed03873 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Este código fue generado por una herramienta. +// Versión de runtime: 4.0.30319.42000 +// +// Los cambios de este archivo pueden provocar un comportamiento inesperado y se perderán si +// el código se vuelve a generar. +// +//------------------------------------------------------------------------------ + +namespace WindowsFormsApp1.Properties +{ + + + /// + /// Clase de recurso fuertemente tipado para buscar cadenas traducidas, etc. + /// + // StronglyTypedResourceBuilder generó automáticamente esta clase + // a través de una herramienta como ResGen o Visual Studio. + // Para agregar o quitar un miembro, edite el archivo .ResX y, a continuación, vuelva a ejecutar ResGen + // con la opción /str o recompile su proyecto de 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() + { + } + + /// + /// Devuelve la instancia ResourceManager almacenada en caché utilizada por esta clase. + /// + [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("WindowsFormsApp1.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Invalida la propiedad CurrentUICulture del subproceso actual para todas las + /// búsquedas de recursos usando esta clase de recursos fuertemente tipados. + /// + [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/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Resources.resx b/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/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/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Settings.Designer.cs b/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Settings.Designer.cs new file mode 100644 index 0000000..438df21 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/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 WindowsFormsApp1.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/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Settings.settings b/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/csharp/WindowsFormsApp1/WindowsFormsApp1/WindowsFormsApp1.csproj b/csharp/WindowsFormsApp1/WindowsFormsApp1/WindowsFormsApp1.csproj new file mode 100644 index 0000000..5cc87f5 --- /dev/null +++ b/csharp/WindowsFormsApp1/WindowsFormsApp1/WindowsFormsApp1.csproj @@ -0,0 +1,80 @@ + + + + + Debug + AnyCPU + {A4D0A6CF-1338-439F-BB76-1C916E0B42E0} + WinExe + WindowsFormsApp1 + WindowsFormsApp1 + v4.7.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