commit 3ab80fc8edc0db5d70abe4b171a264bbc909dee1 Author: SONGQUE PARK Date: Mon Nov 22 10:27:34 2021 +0900 1st commit diff --git a/ThreePFive.sln b/ThreePFive.sln new file mode 100644 index 0000000..5562dac --- /dev/null +++ b/ThreePFive.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31729.503 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThreePFive", "ThreePFive\ThreePFive.csproj", "{986C4CED-1E7B-4E39-97D8-B70E2740C9F5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {986C4CED-1E7B-4E39-97D8-B70E2740C9F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {986C4CED-1E7B-4E39-97D8-B70E2740C9F5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {986C4CED-1E7B-4E39-97D8-B70E2740C9F5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {986C4CED-1E7B-4E39-97D8-B70E2740C9F5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A4BECBC4-F8EF-4D3A-9D83-B589897E31C0} + EndGlobalSection +EndGlobal diff --git a/ThreePFive/App.config b/ThreePFive/App.config new file mode 100644 index 0000000..b50c74f --- /dev/null +++ b/ThreePFive/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ThreePFive/Form1.Designer.cs b/ThreePFive/Form1.Designer.cs new file mode 100644 index 0000000..40353bf --- /dev/null +++ b/ThreePFive/Form1.Designer.cs @@ -0,0 +1,116 @@ + +namespace ThreePFive +{ + 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.lblRand = new System.Windows.Forms.Label(); + this.button1 = new System.Windows.Forms.Button(); + this.lbl1st = new System.Windows.Forms.Label(); + this.lbl2nd = new System.Windows.Forms.Label(); + this.lbl3rd = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // lblRand + // + this.lblRand.AutoSize = true; + this.lblRand.Font = new System.Drawing.Font("나눔고딕", 40F); + this.lblRand.Location = new System.Drawing.Point(161, 241); + this.lblRand.Name = "lblRand"; + this.lblRand.Size = new System.Drawing.Size(56, 62); + this.lblRand.TabIndex = 0; + this.lblRand.Text = "_"; + // + // button1 + // + this.button1.Location = new System.Drawing.Point(55, 350); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(273, 49); + this.button1.TabIndex = 1; + this.button1.Text = "LUCK!"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // lbl1st + // + this.lbl1st.AutoSize = true; + this.lbl1st.Font = new System.Drawing.Font("나눔고딕", 40F); + this.lbl1st.Location = new System.Drawing.Point(56, 51); + this.lbl1st.Name = "lbl1st"; + this.lbl1st.Size = new System.Drawing.Size(56, 62); + this.lbl1st.TabIndex = 2; + this.lbl1st.Text = "_"; + // + // lbl2nd + // + this.lbl2nd.AutoSize = true; + this.lbl2nd.Font = new System.Drawing.Font("나눔고딕", 40F); + this.lbl2nd.Location = new System.Drawing.Point(161, 51); + this.lbl2nd.Name = "lbl2nd"; + this.lbl2nd.Size = new System.Drawing.Size(56, 62); + this.lbl2nd.TabIndex = 3; + this.lbl2nd.Text = "_"; + // + // lbl3rd + // + this.lbl3rd.AutoSize = true; + this.lbl3rd.Font = new System.Drawing.Font("나눔고딕", 40F); + this.lbl3rd.Location = new System.Drawing.Point(272, 51); + this.lbl3rd.Name = "lbl3rd"; + this.lbl3rd.Size = new System.Drawing.Size(56, 62); + this.lbl3rd.TabIndex = 4; + this.lbl3rd.Text = "_"; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(384, 411); + this.Controls.Add(this.lbl3rd); + this.Controls.Add(this.lbl2nd); + this.Controls.Add(this.lbl1st); + this.Controls.Add(this.button1); + this.Controls.Add(this.lblRand); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.Name = "Form1"; + this.Text = "Lucky"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label lblRand; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Label lbl1st; + private System.Windows.Forms.Label lbl2nd; + private System.Windows.Forms.Label lbl3rd; + } +} + diff --git a/ThreePFive/Form1.cs b/ThreePFive/Form1.cs new file mode 100644 index 0000000..9c43e6c --- /dev/null +++ b/ThreePFive/Form1.cs @@ -0,0 +1,62 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ThreePFive +{ + public partial class Form1 : Form + { + private Random random = new Random((int)DateTime.Now.Ticks); + private int[] selectedNums = new int[3]; + private int trial = 0; + + public Form1() + { + InitializeComponent(); + } + + private void button1_Click(object sender, EventArgs e) + { + if(++trial > 3) + { + trial = 0; + lbl1st.Text = "_"; + lbl2nd.Text = "_"; + lbl3rd.Text = "_"; + lblRand.Text = "_"; + selectedNums = new int[3]; + return; + } + int newRand; + do + { + newRand = random.Next() % 5 + 1; + } + while (HasSameNumber(newRand)); + + Thread.Sleep(1000); + lblRand.Text = "" + newRand; + + selectedNums[trial - 1] = newRand; + if (trial == 1) lbl1st.Text = "" + newRand; + else if (trial == 2) lbl2nd.Text = "" + newRand; + else lbl3rd.Text = "" + newRand; + } + + private bool HasSameNumber(int newRand) + { + for(int i = 0; i < 3; i++) + { + if (newRand == selectedNums[i]) return true; + } + return false; + } + } +} diff --git a/ThreePFive/Form1.resx b/ThreePFive/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/ThreePFive/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/ThreePFive/Program.cs b/ThreePFive/Program.cs new file mode 100644 index 0000000..127f554 --- /dev/null +++ b/ThreePFive/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ThreePFive +{ + static class Program + { + /// + /// 해당 애플리케이션의 주 진입점입니다. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/ThreePFive/Properties/AssemblyInfo.cs b/ThreePFive/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0ad286c --- /dev/null +++ b/ThreePFive/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 +// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면 +// 이러한 특성 값을 변경하세요. +[assembly: AssemblyTitle("ThreePFive")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ThreePFive")] +[assembly: AssemblyCopyright("Copyright © 2021")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 +// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면 +// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요. +[assembly: ComVisible(false)] + +// 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다. +[assembly: Guid("986c4ced-1e7b-4e39-97d8-b70e2740c9f5")] + +// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다. +// +// 주 버전 +// 부 버전 +// 빌드 번호 +// 수정 버전 +// +// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를 +// 기본값으로 할 수 있습니다. +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.1")] +[assembly: AssemblyFileVersion("1.0.0.1")] diff --git a/ThreePFive/Properties/Resources.Designer.cs b/ThreePFive/Properties/Resources.Designer.cs new file mode 100644 index 0000000..8a9ea0c --- /dev/null +++ b/ThreePFive/Properties/Resources.Designer.cs @@ -0,0 +1,70 @@ +//------------------------------------------------------------------------------ +// +// 이 코드는 도구를 사용하여 생성되었습니다. +// 런타임 버전:4.0.30319.42000 +// +// 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 +// 이러한 변경 내용이 손실됩니다. +// +//------------------------------------------------------------------------------ + + +namespace ThreePFive.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("ThreePFive.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/ThreePFive/Properties/Resources.resx b/ThreePFive/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/ThreePFive/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/ThreePFive/Properties/Settings.Designer.cs b/ThreePFive/Properties/Settings.Designer.cs new file mode 100644 index 0000000..c58077f --- /dev/null +++ b/ThreePFive/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 ThreePFive.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/ThreePFive/Properties/Settings.settings b/ThreePFive/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/ThreePFive/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/ThreePFive/ThreePFive.csproj b/ThreePFive/ThreePFive.csproj new file mode 100644 index 0000000..ee090a5 --- /dev/null +++ b/ThreePFive/ThreePFive.csproj @@ -0,0 +1,83 @@ + + + + + Debug + AnyCPU + {986C4CED-1E7B-4E39-97D8-B70E2740C9F5} + WinExe + ThreePFive + ThreePFive + 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 + + + + + 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/ThreePFive/bin/Debug/ThreePFive.exe b/ThreePFive/bin/Debug/ThreePFive.exe new file mode 100644 index 0000000..5948c6e Binary files /dev/null and b/ThreePFive/bin/Debug/ThreePFive.exe differ diff --git a/ThreePFive/bin/Debug/ThreePFive.exe.config b/ThreePFive/bin/Debug/ThreePFive.exe.config new file mode 100644 index 0000000..b50c74f --- /dev/null +++ b/ThreePFive/bin/Debug/ThreePFive.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ThreePFive/bin/Debug/ThreePFive.pdb b/ThreePFive/bin/Debug/ThreePFive.pdb new file mode 100644 index 0000000..9b43237 Binary files /dev/null and b/ThreePFive/bin/Debug/ThreePFive.pdb differ diff --git a/ThreePFive/bin/Release/ThreePFive.exe b/ThreePFive/bin/Release/ThreePFive.exe new file mode 100644 index 0000000..dfc6f6f Binary files /dev/null and b/ThreePFive/bin/Release/ThreePFive.exe differ diff --git a/ThreePFive/bin/Release/ThreePFive.exe.config b/ThreePFive/bin/Release/ThreePFive.exe.config new file mode 100644 index 0000000..b50c74f --- /dev/null +++ b/ThreePFive/bin/Release/ThreePFive.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ThreePFive/bin/Release/ThreePFive.pdb b/ThreePFive/bin/Release/ThreePFive.pdb new file mode 100644 index 0000000..d8a0850 Binary files /dev/null and b/ThreePFive/bin/Release/ThreePFive.pdb differ diff --git a/ThreePFive/obj/Debug/.NETFramework,Version=v4.6.2.AssemblyAttributes.cs b/ThreePFive/obj/Debug/.NETFramework,Version=v4.6.2.AssemblyAttributes.cs new file mode 100644 index 0000000..edc4647 --- /dev/null +++ b/ThreePFive/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/ThreePFive/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/ThreePFive/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..9a1f53f Binary files /dev/null and b/ThreePFive/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/ThreePFive/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/ThreePFive/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..ce25307 Binary files /dev/null and b/ThreePFive/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/ThreePFive/obj/Debug/ThreePFive.Form1.resources b/ThreePFive/obj/Debug/ThreePFive.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/ThreePFive/obj/Debug/ThreePFive.Form1.resources differ diff --git a/ThreePFive/obj/Debug/ThreePFive.Properties.Resources.resources b/ThreePFive/obj/Debug/ThreePFive.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/ThreePFive/obj/Debug/ThreePFive.Properties.Resources.resources differ diff --git a/ThreePFive/obj/Debug/ThreePFive.csproj.AssemblyReference.cache b/ThreePFive/obj/Debug/ThreePFive.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/ThreePFive/obj/Debug/ThreePFive.csproj.AssemblyReference.cache differ diff --git a/ThreePFive/obj/Debug/ThreePFive.csproj.CoreCompileInputs.cache b/ThreePFive/obj/Debug/ThreePFive.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..520e852 --- /dev/null +++ b/ThreePFive/obj/Debug/ThreePFive.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7cfce2b3de168c48eebf22f84338baeb90cb1cb5 diff --git a/ThreePFive/obj/Debug/ThreePFive.csproj.FileListAbsolute.txt b/ThreePFive/obj/Debug/ThreePFive.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f9d61ba --- /dev/null +++ b/ThreePFive/obj/Debug/ThreePFive.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\songq\source\repos\ThreePFive\ThreePFive\bin\Debug\ThreePFive.exe.config +C:\Users\songq\source\repos\ThreePFive\ThreePFive\bin\Debug\ThreePFive.exe +C:\Users\songq\source\repos\ThreePFive\ThreePFive\bin\Debug\ThreePFive.pdb +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Debug\ThreePFive.Form1.resources +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Debug\ThreePFive.Properties.Resources.resources +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Debug\ThreePFive.csproj.GenerateResource.cache +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Debug\ThreePFive.csproj.CoreCompileInputs.cache +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Debug\ThreePFive.exe +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Debug\ThreePFive.pdb +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Debug\ThreePFive.csproj.AssemblyReference.cache diff --git a/ThreePFive/obj/Debug/ThreePFive.csproj.GenerateResource.cache b/ThreePFive/obj/Debug/ThreePFive.csproj.GenerateResource.cache new file mode 100644 index 0000000..f010c46 Binary files /dev/null and b/ThreePFive/obj/Debug/ThreePFive.csproj.GenerateResource.cache differ diff --git a/ThreePFive/obj/Debug/ThreePFive.exe b/ThreePFive/obj/Debug/ThreePFive.exe new file mode 100644 index 0000000..5948c6e Binary files /dev/null and b/ThreePFive/obj/Debug/ThreePFive.exe differ diff --git a/ThreePFive/obj/Debug/ThreePFive.pdb b/ThreePFive/obj/Debug/ThreePFive.pdb new file mode 100644 index 0000000..9b43237 Binary files /dev/null and b/ThreePFive/obj/Debug/ThreePFive.pdb differ diff --git a/ThreePFive/obj/Release/.NETFramework,Version=v4.6.2.AssemblyAttributes.cs b/ThreePFive/obj/Release/.NETFramework,Version=v4.6.2.AssemblyAttributes.cs new file mode 100644 index 0000000..edc4647 --- /dev/null +++ b/ThreePFive/obj/Release/.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/ThreePFive/obj/Release/DesignTimeResolveAssemblyReferences.cache b/ThreePFive/obj/Release/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..9a1f53f Binary files /dev/null and b/ThreePFive/obj/Release/DesignTimeResolveAssemblyReferences.cache differ diff --git a/ThreePFive/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/ThreePFive/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..a65372d Binary files /dev/null and b/ThreePFive/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/ThreePFive/obj/Release/ThreePFive.Form1.resources b/ThreePFive/obj/Release/ThreePFive.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/ThreePFive/obj/Release/ThreePFive.Form1.resources differ diff --git a/ThreePFive/obj/Release/ThreePFive.Properties.Resources.resources b/ThreePFive/obj/Release/ThreePFive.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/ThreePFive/obj/Release/ThreePFive.Properties.Resources.resources differ diff --git a/ThreePFive/obj/Release/ThreePFive.csproj.AssemblyReference.cache b/ThreePFive/obj/Release/ThreePFive.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/ThreePFive/obj/Release/ThreePFive.csproj.AssemblyReference.cache differ diff --git a/ThreePFive/obj/Release/ThreePFive.csproj.CoreCompileInputs.cache b/ThreePFive/obj/Release/ThreePFive.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..14c5e1e --- /dev/null +++ b/ThreePFive/obj/Release/ThreePFive.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +48c27f6c26548977f1a8fb6865fc99cf1eacf7b1 diff --git a/ThreePFive/obj/Release/ThreePFive.csproj.FileListAbsolute.txt b/ThreePFive/obj/Release/ThreePFive.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6cf64f4 --- /dev/null +++ b/ThreePFive/obj/Release/ThreePFive.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\songq\source\repos\ThreePFive\ThreePFive\bin\Release\ThreePFive.exe.config +C:\Users\songq\source\repos\ThreePFive\ThreePFive\bin\Release\ThreePFive.exe +C:\Users\songq\source\repos\ThreePFive\ThreePFive\bin\Release\ThreePFive.pdb +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Release\ThreePFive.csproj.AssemblyReference.cache +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Release\ThreePFive.Form1.resources +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Release\ThreePFive.Properties.Resources.resources +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Release\ThreePFive.csproj.GenerateResource.cache +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Release\ThreePFive.csproj.CoreCompileInputs.cache +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Release\ThreePFive.exe +C:\Users\songq\source\repos\ThreePFive\ThreePFive\obj\Release\ThreePFive.pdb diff --git a/ThreePFive/obj/Release/ThreePFive.csproj.GenerateResource.cache b/ThreePFive/obj/Release/ThreePFive.csproj.GenerateResource.cache new file mode 100644 index 0000000..2c40ec1 Binary files /dev/null and b/ThreePFive/obj/Release/ThreePFive.csproj.GenerateResource.cache differ diff --git a/ThreePFive/obj/Release/ThreePFive.exe b/ThreePFive/obj/Release/ThreePFive.exe new file mode 100644 index 0000000..dfc6f6f Binary files /dev/null and b/ThreePFive/obj/Release/ThreePFive.exe differ diff --git a/ThreePFive/obj/Release/ThreePFive.pdb b/ThreePFive/obj/Release/ThreePFive.pdb new file mode 100644 index 0000000..d8a0850 Binary files /dev/null and b/ThreePFive/obj/Release/ThreePFive.pdb differ