diff --git a/lab6/lab6_1_CalebFontenot/.vs/ProjectEvaluation/lab6_1_calebfontenot.metadata.v5 b/lab6/lab6_1_CalebFontenot/.vs/ProjectEvaluation/lab6_1_calebfontenot.metadata.v5 new file mode 100755 index 0000000..5910715 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/.vs/ProjectEvaluation/lab6_1_calebfontenot.metadata.v5 differ diff --git a/lab6/lab6_1_CalebFontenot/.vs/ProjectEvaluation/lab6_1_calebfontenot.projects.v5 b/lab6/lab6_1_CalebFontenot/.vs/ProjectEvaluation/lab6_1_calebfontenot.projects.v5 new file mode 100755 index 0000000..ec93f17 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/.vs/ProjectEvaluation/lab6_1_calebfontenot.projects.v5 differ diff --git a/lab6/lab6_1_CalebFontenot/.vs/lab6_1_CalebFontenot/DesignTimeBuild/.dtbcache.v2 b/lab6/lab6_1_CalebFontenot/.vs/lab6_1_CalebFontenot/DesignTimeBuild/.dtbcache.v2 new file mode 100755 index 0000000..0945468 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/.vs/lab6_1_CalebFontenot/DesignTimeBuild/.dtbcache.v2 differ diff --git a/lab6/lab6_1_CalebFontenot/.vs/lab6_1_CalebFontenot/v17/.futdcache.v2 b/lab6/lab6_1_CalebFontenot/.vs/lab6_1_CalebFontenot/v17/.futdcache.v2 new file mode 100755 index 0000000..291fb03 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/.vs/lab6_1_CalebFontenot/v17/.futdcache.v2 differ diff --git a/lab6/lab6_1_CalebFontenot/.vs/lab6_1_CalebFontenot/v17/.suo b/lab6/lab6_1_CalebFontenot/.vs/lab6_1_CalebFontenot/v17/.suo new file mode 100755 index 0000000..e12fdee Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/.vs/lab6_1_CalebFontenot/v17/.suo differ diff --git a/lab6/lab6_1_CalebFontenot/Form1.Designer.cs b/lab6/lab6_1_CalebFontenot/Form1.Designer.cs new file mode 100755 index 0000000..f68e41c --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/Form1.Designer.cs @@ -0,0 +1,101 @@ +namespace lab6_1_CalebFontenot +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.lightPictureBox = new System.Windows.Forms.PictureBox(); + this.lightStateLabel = new System.Windows.Forms.Label(); + this.switchButton = new System.Windows.Forms.Button(); + this.exitButton = new System.Windows.Forms.Button(); + ((System.ComponentModel.ISupportInitialize)(this.lightPictureBox)).BeginInit(); + this.SuspendLayout(); + // + // lightPictureBox + // + this.lightPictureBox.Image = global::lab6_1_CalebFontenot.Properties.Resources.LightOff; + this.lightPictureBox.Location = new System.Drawing.Point(12, 12); + this.lightPictureBox.Name = "lightPictureBox"; + this.lightPictureBox.Size = new System.Drawing.Size(199, 252); + this.lightPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.lightPictureBox.TabIndex = 0; + this.lightPictureBox.TabStop = false; + // + // lightStateLabel + // + this.lightStateLabel.Font = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); + this.lightStateLabel.Location = new System.Drawing.Point(12, 267); + this.lightStateLabel.Name = "lightStateLabel"; + this.lightStateLabel.Size = new System.Drawing.Size(199, 36); + this.lightStateLabel.TabIndex = 1; + this.lightStateLabel.Text = "OFF"; + this.lightStateLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // switchButton + // + this.switchButton.Location = new System.Drawing.Point(12, 306); + this.switchButton.Name = "switchButton"; + this.switchButton.Size = new System.Drawing.Size(95, 23); + this.switchButton.TabIndex = 2; + this.switchButton.Text = "Switch Light"; + this.switchButton.UseVisualStyleBackColor = true; + this.switchButton.Click += new System.EventHandler(this.switchButton_Click); + // + // exitButton + // + this.exitButton.Location = new System.Drawing.Point(115, 306); + this.exitButton.Name = "exitButton"; + this.exitButton.Size = new System.Drawing.Size(95, 23); + this.exitButton.TabIndex = 3; + this.exitButton.Text = "Exit"; + this.exitButton.UseVisualStyleBackColor = true; + this.exitButton.Click += new System.EventHandler(this.exitButton_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(222, 356); + this.Controls.Add(this.exitButton); + this.Controls.Add(this.switchButton); + this.Controls.Add(this.lightStateLabel); + this.Controls.Add(this.lightPictureBox); + this.Name = "Form1"; + this.Text = "Light - Caleb Fontenot"; + ((System.ComponentModel.ISupportInitialize)(this.lightPictureBox)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private PictureBox lightPictureBox; + private Label lightStateLabel; + private Button switchButton; + private Button exitButton; + } +} \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/Form1.cs b/lab6/lab6_1_CalebFontenot/Form1.cs new file mode 100755 index 0000000..6257eaa --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/Form1.cs @@ -0,0 +1,45 @@ +namespace lab6_1_CalebFontenot +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void exitButton_Click(object sender, EventArgs e) + { + this.Close(); + } + bool isLit = false; + private void switchButton_Click(object sender, EventArgs e) + { + // Update the light state according to what state we are currently in + if (isLit) + { + isLit = false; + } else + { + isLit = true; + } + lightState(isLit); + } + private void lightState(bool lightState) + { + if (lightState) + { + // Update the label + lightStateLabel.Text = "ON"; + // Update the image. + lightPictureBox.Image = Properties.Resources.LightOn; + } + else + { + // Update the label + lightStateLabel.Text = "OFF"; + // Update the image. + lightPictureBox.Image = Properties.Resources.LightOff; + } + } + } +} \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/Form1.resx b/lab6/lab6_1_CalebFontenot/Form1.resx new file mode 100755 index 0000000..b5ae26c --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/Form1.resx @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/lab6/lab6_1_CalebFontenot/Program.cs b/lab6/lab6_1_CalebFontenot/Program.cs new file mode 100755 index 0000000..9c36d54 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/Program.cs @@ -0,0 +1,17 @@ +namespace lab6_1_CalebFontenot +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/Properties/Resources.Designer.cs b/lab6/lab6_1_CalebFontenot/Properties/Resources.Designer.cs new file mode 100755 index 0000000..b8ad016 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/Properties/Resources.Designer.cs @@ -0,0 +1,83 @@ +//------------------------------------------------------------------------------ +// +// 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 lab6_1_CalebFontenot.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.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() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("lab6_1_CalebFontenot.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap LightOff { + get { + object obj = ResourceManager.GetObject("LightOff", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap LightOn { + get { + object obj = ResourceManager.GetObject("LightOn", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/lab6/lab6_1_CalebFontenot/Properties/Resources.resx b/lab6/lab6_1_CalebFontenot/Properties/Resources.resx new file mode 100755 index 0000000..7e00606 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/Properties/Resources.resx @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + ..\Resources\LightOff.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\LightOn.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/Resources/LightOff.bmp b/lab6/lab6_1_CalebFontenot/Resources/LightOff.bmp new file mode 100755 index 0000000..4385f2d Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/Resources/LightOff.bmp differ diff --git a/lab6/lab6_1_CalebFontenot/Resources/LightOn.bmp b/lab6/lab6_1_CalebFontenot/Resources/LightOn.bmp new file mode 100755 index 0000000..89698d2 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/Resources/LightOn.bmp differ diff --git a/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.deps.json b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.deps.json new file mode 100755 index 0000000..5e9e759 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "lab6_1_CalebFontenot/1.0.0": { + "runtime": { + "lab6_1_CalebFontenot.dll": {} + } + } + } + }, + "libraries": { + "lab6_1_CalebFontenot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.dll b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.dll new file mode 100755 index 0000000..a1e4304 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.dll differ diff --git a/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.exe b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.exe new file mode 100755 index 0000000..d9ef1fa Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.exe differ diff --git a/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.pdb b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.pdb new file mode 100755 index 0000000..b9927f9 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.pdb differ diff --git a/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.runtimeconfig.json b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.runtimeconfig.json new file mode 100755 index 0000000..b6062ae --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/bin/Debug/net6.0-windows/lab6_1_CalebFontenot.runtimeconfig.json @@ -0,0 +1,15 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ] + } +} \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/lab6_1_CalebFontenot.csproj b/lab6/lab6_1_CalebFontenot/lab6_1_CalebFontenot.csproj new file mode 100755 index 0000000..714c472 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/lab6_1_CalebFontenot.csproj @@ -0,0 +1,26 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/lab6_1_CalebFontenot.csproj.user b/lab6/lab6_1_CalebFontenot/lab6_1_CalebFontenot.csproj.user new file mode 100755 index 0000000..f61322e --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/lab6_1_CalebFontenot.csproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + diff --git a/lab6/lab6_1_CalebFontenot/lab6_1_CalebFontenot.sln b/lab6/lab6_1_CalebFontenot/lab6_1_CalebFontenot.sln new file mode 100755 index 0000000..1d05324 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/lab6_1_CalebFontenot.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32804.467 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lab6_1_CalebFontenot", "lab6_1_CalebFontenot.csproj", "{942178FD-17F2-4E0C-9D30-0AEC68DEBA43}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {942178FD-17F2-4E0C-9D30-0AEC68DEBA43}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {942178FD-17F2-4E0C-9D30-0AEC68DEBA43}.Debug|Any CPU.Build.0 = Debug|Any CPU + {942178FD-17F2-4E0C-9D30-0AEC68DEBA43}.Release|Any CPU.ActiveCfg = Release|Any CPU + {942178FD-17F2-4E0C-9D30-0AEC68DEBA43}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {100BFB48-9E6E-458B-A456-355ADD885FDE} + EndGlobalSection +EndGlobal diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100755 index 0000000..32c95f9 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll new file mode 100755 index 0000000..7f643ec Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe new file mode 100755 index 0000000..d9ef1fa Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.AssemblyInfo.cs b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.AssemblyInfo.cs new file mode 100755 index 0000000..bdebb4c --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("lab6_1_CalebFontenot")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("lab6_1_CalebFontenot")] +[assembly: System.Reflection.AssemblyTitleAttribute("lab6_1_CalebFontenot")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.AssemblyInfoInputs.cache b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.AssemblyInfoInputs.cache new file mode 100755 index 0000000..59773de --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +bae15dc81faad155e18b30dfef5507d4d356dfe6 diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.Form1.resources b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.Form1.resources new file mode 100755 index 0000000..6c05a97 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.Form1.resources differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100755 index 0000000..aef4d60 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = lab6_1_CalebFontenot +build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.GlobalUsings.g.cs b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.GlobalUsings.g.cs new file mode 100755 index 0000000..fea4009 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Drawing; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; +global using global::System.Windows.Forms; diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.Properties.Resources.resources b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.Properties.Resources.resources new file mode 100755 index 0000000..1585a1b Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.Properties.Resources.resources differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.assets.cache b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.assets.cache new file mode 100755 index 0000000..f7fcd57 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.assets.cache differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.AssemblyReference.cache b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.AssemblyReference.cache new file mode 100755 index 0000000..f790783 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.AssemblyReference.cache differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.BuildWithSkipAnalyzers b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.BuildWithSkipAnalyzers new file mode 100755 index 0000000..e69de29 diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.CoreCompileInputs.cache b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.CoreCompileInputs.cache new file mode 100755 index 0000000..8d2817b --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a333a7561f7bc122ff057f17b7f163f5bee540ee diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.FileListAbsolute.txt b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.FileListAbsolute.txt new file mode 100755 index 0000000..0f4e163 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\bin\Debug\net6.0-windows\lab6_1_CalebFontenot.exe +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\bin\Debug\net6.0-windows\lab6_1_CalebFontenot.deps.json +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\bin\Debug\net6.0-windows\lab6_1_CalebFontenot.runtimeconfig.json +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\bin\Debug\net6.0-windows\lab6_1_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\bin\Debug\net6.0-windows\lab6_1_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.csproj.AssemblyReference.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.Form1.resources +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.Properties.Resources.resources +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.csproj.GenerateResource.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.AssemblyInfoInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.AssemblyInfo.cs +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.csproj.CoreCompileInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\refint\lab6_1_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\lab6_1_CalebFontenot.genruntimeconfig.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_1_CalebFontenot\obj\Debug\net6.0-windows\ref\lab6_1_CalebFontenot.dll diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.GenerateResource.cache b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.GenerateResource.cache new file mode 100755 index 0000000..da19906 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.csproj.GenerateResource.cache differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.designer.deps.json b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.designer.deps.json new file mode 100755 index 0000000..fbeaac4 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.designer.runtimeconfig.json b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.designer.runtimeconfig.json new file mode 100755 index 0000000..4ec7c38 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.designer.runtimeconfig.json @@ -0,0 +1,22 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\caleb\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\caleb\\.nuget\\packages" + ], + "configProperties": { + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.dll b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.dll new file mode 100755 index 0000000..a1e4304 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.dll differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.genruntimeconfig.cache b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.genruntimeconfig.cache new file mode 100755 index 0000000..ae382c3 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.genruntimeconfig.cache @@ -0,0 +1 @@ +bf3a8b3373a9a0e0e07af3bb2fe2c710a2fc7115 diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.pdb b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.pdb new file mode 100755 index 0000000..b9927f9 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/lab6_1_CalebFontenot.pdb differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/ref/lab6_1_CalebFontenot.dll b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/ref/lab6_1_CalebFontenot.dll new file mode 100755 index 0000000..effd597 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/ref/lab6_1_CalebFontenot.dll differ diff --git a/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/refint/lab6_1_CalebFontenot.dll b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/refint/lab6_1_CalebFontenot.dll new file mode 100755 index 0000000..effd597 Binary files /dev/null and b/lab6/lab6_1_CalebFontenot/obj/Debug/net6.0-windows/refint/lab6_1_CalebFontenot.dll differ diff --git a/lab6/lab6_1_CalebFontenot/obj/lab6_1_CalebFontenot.csproj.nuget.dgspec.json b/lab6/lab6_1_CalebFontenot/obj/lab6_1_CalebFontenot.csproj.nuget.dgspec.json new file mode 100755 index 0000000..65e60d6 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/lab6_1_CalebFontenot.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_1_CalebFontenot\\lab6_1_CalebFontenot.csproj": {} + }, + "projects": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_1_CalebFontenot\\lab6_1_CalebFontenot.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_1_CalebFontenot\\lab6_1_CalebFontenot.csproj", + "projectName": "lab6_1_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_1_CalebFontenot\\lab6_1_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_1_CalebFontenot\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/obj/lab6_1_CalebFontenot.csproj.nuget.g.props b/lab6/lab6_1_CalebFontenot/obj/lab6_1_CalebFontenot.csproj.nuget.g.props new file mode 100755 index 0000000..2a0471e --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/lab6_1_CalebFontenot.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caleb\.nuget\packages\ + PackageReference + 6.3.0 + + + + + \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/obj/lab6_1_CalebFontenot.csproj.nuget.g.targets b/lab6/lab6_1_CalebFontenot/obj/lab6_1_CalebFontenot.csproj.nuget.g.targets new file mode 100755 index 0000000..35a7576 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/lab6_1_CalebFontenot.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/obj/project.assets.json b/lab6/lab6_1_CalebFontenot/obj/project.assets.json new file mode 100755 index 0000000..b9b7a75 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/project.assets.json @@ -0,0 +1,71 @@ +{ + "version": 3, + "targets": { + "net6.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net6.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\caleb\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_1_CalebFontenot\\lab6_1_CalebFontenot.csproj", + "projectName": "lab6_1_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_1_CalebFontenot\\lab6_1_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_1_CalebFontenot\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/lab6/lab6_1_CalebFontenot/obj/project.nuget.cache b/lab6/lab6_1_CalebFontenot/obj/project.nuget.cache new file mode 100755 index 0000000..8fe50a3 --- /dev/null +++ b/lab6/lab6_1_CalebFontenot/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "1TobQ5oUGdUP056xqZJxAQTJRRCDdUxs2UbbVfkwjUBsNjSEfcQSAIPrIa5SRn+KcPVdaC1/m9vLLPPhJYXA/Q==", + "success": true, + "projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_1_CalebFontenot\\lab6_1_CalebFontenot.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/.vs/ProjectEvaluation/lab6_2_calebfontenot.metadata.v5 b/lab6/lab6_2_CalebFontenot/.vs/ProjectEvaluation/lab6_2_calebfontenot.metadata.v5 new file mode 100755 index 0000000..2be4de4 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/.vs/ProjectEvaluation/lab6_2_calebfontenot.metadata.v5 differ diff --git a/lab6/lab6_2_CalebFontenot/.vs/ProjectEvaluation/lab6_2_calebfontenot.projects.v5 b/lab6/lab6_2_CalebFontenot/.vs/ProjectEvaluation/lab6_2_calebfontenot.projects.v5 new file mode 100755 index 0000000..f35eb13 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/.vs/ProjectEvaluation/lab6_2_calebfontenot.projects.v5 differ diff --git a/lab6/lab6_2_CalebFontenot/.vs/lab6_2_CalebFontenot/DesignTimeBuild/.dtbcache.v2 b/lab6/lab6_2_CalebFontenot/.vs/lab6_2_CalebFontenot/DesignTimeBuild/.dtbcache.v2 new file mode 100755 index 0000000..9a81d2c Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/.vs/lab6_2_CalebFontenot/DesignTimeBuild/.dtbcache.v2 differ diff --git a/lab6/lab6_2_CalebFontenot/.vs/lab6_2_CalebFontenot/v17/.futdcache.v2 b/lab6/lab6_2_CalebFontenot/.vs/lab6_2_CalebFontenot/v17/.futdcache.v2 new file mode 100755 index 0000000..dacfeb7 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/.vs/lab6_2_CalebFontenot/v17/.futdcache.v2 differ diff --git a/lab6/lab6_2_CalebFontenot/.vs/lab6_2_CalebFontenot/v17/.suo b/lab6/lab6_2_CalebFontenot/.vs/lab6_2_CalebFontenot/v17/.suo new file mode 100755 index 0000000..128fdbf Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/.vs/lab6_2_CalebFontenot/v17/.suo differ diff --git a/lab6/lab6_2_CalebFontenot/Form1.Designer.cs b/lab6/lab6_2_CalebFontenot/Form1.Designer.cs new file mode 100755 index 0000000..a761328 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/Form1.Designer.cs @@ -0,0 +1,118 @@ +namespace lab6_2_CalebFontenot +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.playingCardPictureBox = new System.Windows.Forms.PictureBox(); + this.cardListBox = new System.Windows.Forms.ListBox(); + this.showCardButton = new System.Windows.Forms.Button(); + this.exitButton = new System.Windows.Forms.Button(); + this.groupBox1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.playingCardPictureBox)).BeginInit(); + this.SuspendLayout(); + // + // groupBox1 + // + this.groupBox1.Controls.Add(this.playingCardPictureBox); + this.groupBox1.Location = new System.Drawing.Point(12, 12); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Size = new System.Drawing.Size(184, 196); + this.groupBox1.TabIndex = 0; + this.groupBox1.TabStop = false; + this.groupBox1.Text = "Current Card"; + // + // playingCardPictureBox + // + this.playingCardPictureBox.Image = global::lab6_2_CalebFontenot.Properties.Resources.Ace_Spades; + this.playingCardPictureBox.Location = new System.Drawing.Point(6, 22); + this.playingCardPictureBox.Name = "playingCardPictureBox"; + this.playingCardPictureBox.Size = new System.Drawing.Size(172, 168); + this.playingCardPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.playingCardPictureBox.TabIndex = 0; + this.playingCardPictureBox.TabStop = false; + // + // cardListBox + // + this.cardListBox.FormattingEnabled = true; + this.cardListBox.ItemHeight = 15; + this.cardListBox.Items.AddRange(new object[] { + "Ace of Spades", + "10 of Hearts", + "King of Clubs"}); + this.cardListBox.Location = new System.Drawing.Point(12, 214); + this.cardListBox.Name = "cardListBox"; + this.cardListBox.Size = new System.Drawing.Size(178, 64); + this.cardListBox.TabIndex = 1; + // + // showCardButton + // + this.showCardButton.Location = new System.Drawing.Point(12, 284); + this.showCardButton.Name = "showCardButton"; + this.showCardButton.Size = new System.Drawing.Size(89, 23); + this.showCardButton.TabIndex = 2; + this.showCardButton.Text = "Show Card"; + this.showCardButton.UseVisualStyleBackColor = true; + this.showCardButton.Click += new System.EventHandler(this.showCardButton_Click); + // + // exitButton + // + this.exitButton.Location = new System.Drawing.Point(107, 284); + this.exitButton.Name = "exitButton"; + this.exitButton.Size = new System.Drawing.Size(89, 23); + this.exitButton.TabIndex = 3; + this.exitButton.Text = "Exit"; + this.exitButton.UseVisualStyleBackColor = true; + this.exitButton.Click += new System.EventHandler(this.exitButton_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(208, 316); + this.Controls.Add(this.exitButton); + this.Controls.Add(this.showCardButton); + this.Controls.Add(this.cardListBox); + this.Controls.Add(this.groupBox1); + this.Name = "Form1"; + this.Text = "Form1"; + this.groupBox1.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.playingCardPictureBox)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private GroupBox groupBox1; + private PictureBox playingCardPictureBox; + private ListBox cardListBox; + private Button showCardButton; + private Button exitButton; + } +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/Form1.cs b/lab6/lab6_2_CalebFontenot/Form1.cs new file mode 100755 index 0000000..aba3059 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/Form1.cs @@ -0,0 +1,39 @@ +namespace lab6_2_CalebFontenot +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void exitButton_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void showCardButton_Click(object sender, EventArgs e) + { + // If a card is selected in the List Box, display it. + if (cardListBox.SelectedIndex != -1) + { + showCard(cardListBox.SelectedItem.ToString()); + } + } + private void showCard (string card) + { + switch (card) + { + case "Ace of Spades": + playingCardPictureBox.Image = Properties.Resources.Ace_Spades; + break; + case "10 of Hearts": + playingCardPictureBox.Image = Properties.Resources._10_Hearts; + break; + case "King of Clubs": + playingCardPictureBox.Image = Properties.Resources.King_Clubs; + break; + } + } + } +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/Form1.resx b/lab6/lab6_2_CalebFontenot/Form1.resx new file mode 100755 index 0000000..b5ae26c --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/Form1.resx @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/lab6/lab6_2_CalebFontenot/Program.cs b/lab6/lab6_2_CalebFontenot/Program.cs new file mode 100755 index 0000000..d074990 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/Program.cs @@ -0,0 +1,17 @@ +namespace lab6_2_CalebFontenot +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/Properties/Resources.Designer.cs b/lab6/lab6_2_CalebFontenot/Properties/Resources.Designer.cs new file mode 100755 index 0000000..0f47737 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/Properties/Resources.Designer.cs @@ -0,0 +1,93 @@ +//------------------------------------------------------------------------------ +// +// 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 lab6_2_CalebFontenot.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.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() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("lab6_2_CalebFontenot.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _10_Hearts { + get { + object obj = ResourceManager.GetObject("10_Hearts", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Ace_Spades { + get { + object obj = ResourceManager.GetObject("Ace_Spades", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap King_Clubs { + get { + object obj = ResourceManager.GetObject("King_Clubs", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/lab6/lab6_2_CalebFontenot/Properties/Resources.resx b/lab6/lab6_2_CalebFontenot/Properties/Resources.resx new file mode 100755 index 0000000..422d2a4 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/Properties/Resources.resx @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + + ..\Resources\10_Hearts.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\Ace_Spades.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\King_Clubs.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/Resources/10_Hearts.jpg b/lab6/lab6_2_CalebFontenot/Resources/10_Hearts.jpg new file mode 100755 index 0000000..b0cdefe Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/Resources/10_Hearts.jpg differ diff --git a/lab6/lab6_2_CalebFontenot/Resources/Ace_Spades.jpg b/lab6/lab6_2_CalebFontenot/Resources/Ace_Spades.jpg new file mode 100755 index 0000000..8c7dce8 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/Resources/Ace_Spades.jpg differ diff --git a/lab6/lab6_2_CalebFontenot/Resources/King_Clubs.jpg b/lab6/lab6_2_CalebFontenot/Resources/King_Clubs.jpg new file mode 100755 index 0000000..b6fdd35 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/Resources/King_Clubs.jpg differ diff --git a/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.deps.json b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.deps.json new file mode 100755 index 0000000..0b6d395 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "lab6_2_CalebFontenot/1.0.0": { + "runtime": { + "lab6_2_CalebFontenot.dll": {} + } + } + } + }, + "libraries": { + "lab6_2_CalebFontenot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.dll b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.dll new file mode 100755 index 0000000..0469f2b Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.dll differ diff --git a/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.exe b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.exe new file mode 100755 index 0000000..dbe8c49 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.exe differ diff --git a/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.pdb b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.pdb new file mode 100755 index 0000000..008fca4 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.pdb differ diff --git a/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.runtimeconfig.json b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.runtimeconfig.json new file mode 100755 index 0000000..b6062ae --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/bin/Debug/net6.0-windows/lab6_2_CalebFontenot.runtimeconfig.json @@ -0,0 +1,15 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ] + } +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/lab6_2_CalebFontenot.csproj b/lab6/lab6_2_CalebFontenot/lab6_2_CalebFontenot.csproj new file mode 100755 index 0000000..714c472 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/lab6_2_CalebFontenot.csproj @@ -0,0 +1,26 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/lab6_2_CalebFontenot.csproj.user b/lab6/lab6_2_CalebFontenot/lab6_2_CalebFontenot.csproj.user new file mode 100755 index 0000000..f61322e --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/lab6_2_CalebFontenot.csproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + diff --git a/lab6/lab6_2_CalebFontenot/lab6_2_CalebFontenot.sln b/lab6/lab6_2_CalebFontenot/lab6_2_CalebFontenot.sln new file mode 100755 index 0000000..bda9c00 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/lab6_2_CalebFontenot.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32804.467 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lab6_2_CalebFontenot", "lab6_2_CalebFontenot.csproj", "{0AFE0F09-80D1-48FA-8891-FF270074F48F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0AFE0F09-80D1-48FA-8891-FF270074F48F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0AFE0F09-80D1-48FA-8891-FF270074F48F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0AFE0F09-80D1-48FA-8891-FF270074F48F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0AFE0F09-80D1-48FA-8891-FF270074F48F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {AAE607F4-0923-4338-BD44-DCB6B04FEABE} + EndGlobalSection +EndGlobal diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100755 index 0000000..32c95f9 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll new file mode 100755 index 0000000..f963dd9 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe new file mode 100755 index 0000000..dbe8c49 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.AssemblyInfo.cs b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.AssemblyInfo.cs new file mode 100755 index 0000000..94a6ae4 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("lab6_2_CalebFontenot")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("lab6_2_CalebFontenot")] +[assembly: System.Reflection.AssemblyTitleAttribute("lab6_2_CalebFontenot")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.AssemblyInfoInputs.cache b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.AssemblyInfoInputs.cache new file mode 100755 index 0000000..e414d42 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +89c1d85f70704e0a862873f1be95bd6cf20c1287 diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.Form1.resources b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.Form1.resources new file mode 100755 index 0000000..6c05a97 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.Form1.resources differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100755 index 0000000..cf9f9b9 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = lab6_2_CalebFontenot +build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.GlobalUsings.g.cs b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.GlobalUsings.g.cs new file mode 100755 index 0000000..fea4009 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Drawing; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; +global using global::System.Windows.Forms; diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.Properties.Resources.resources b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.Properties.Resources.resources new file mode 100755 index 0000000..bf71299 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.Properties.Resources.resources differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.assets.cache b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.assets.cache new file mode 100755 index 0000000..d93d207 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.assets.cache differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.AssemblyReference.cache b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.AssemblyReference.cache new file mode 100755 index 0000000..f790783 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.AssemblyReference.cache differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.BuildWithSkipAnalyzers b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.BuildWithSkipAnalyzers new file mode 100755 index 0000000..e69de29 diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.CoreCompileInputs.cache b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.CoreCompileInputs.cache new file mode 100755 index 0000000..60227b7 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +cdc22a4dce11af7f2d8803a793b50fefe5796a2c diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.FileListAbsolute.txt b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.FileListAbsolute.txt new file mode 100755 index 0000000..f406cc5 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\bin\Debug\net6.0-windows\lab6_2_CalebFontenot.exe +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\bin\Debug\net6.0-windows\lab6_2_CalebFontenot.deps.json +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\bin\Debug\net6.0-windows\lab6_2_CalebFontenot.runtimeconfig.json +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\bin\Debug\net6.0-windows\lab6_2_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\bin\Debug\net6.0-windows\lab6_2_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.csproj.AssemblyReference.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.Form1.resources +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.Properties.Resources.resources +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.csproj.GenerateResource.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.AssemblyInfoInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.AssemblyInfo.cs +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.csproj.CoreCompileInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\refint\lab6_2_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\lab6_2_CalebFontenot.genruntimeconfig.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_2_CalebFontenot\obj\Debug\net6.0-windows\ref\lab6_2_CalebFontenot.dll diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.GenerateResource.cache b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.GenerateResource.cache new file mode 100755 index 0000000..cbf82ac Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.csproj.GenerateResource.cache differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.designer.deps.json b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.designer.deps.json new file mode 100755 index 0000000..fbeaac4 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.designer.runtimeconfig.json b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.designer.runtimeconfig.json new file mode 100755 index 0000000..4ec7c38 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.designer.runtimeconfig.json @@ -0,0 +1,22 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\caleb\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\caleb\\.nuget\\packages" + ], + "configProperties": { + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.dll b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.dll new file mode 100755 index 0000000..0469f2b Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.dll differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.genruntimeconfig.cache b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.genruntimeconfig.cache new file mode 100755 index 0000000..bcb7ed4 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.genruntimeconfig.cache @@ -0,0 +1 @@ +306d41e8ef37d26e4c6cd2d82db16a1ba825e573 diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.pdb b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.pdb new file mode 100755 index 0000000..008fca4 Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/lab6_2_CalebFontenot.pdb differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/ref/lab6_2_CalebFontenot.dll b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/ref/lab6_2_CalebFontenot.dll new file mode 100755 index 0000000..919696c Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/ref/lab6_2_CalebFontenot.dll differ diff --git a/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/refint/lab6_2_CalebFontenot.dll b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/refint/lab6_2_CalebFontenot.dll new file mode 100755 index 0000000..919696c Binary files /dev/null and b/lab6/lab6_2_CalebFontenot/obj/Debug/net6.0-windows/refint/lab6_2_CalebFontenot.dll differ diff --git a/lab6/lab6_2_CalebFontenot/obj/lab6_2_CalebFontenot.csproj.nuget.dgspec.json b/lab6/lab6_2_CalebFontenot/obj/lab6_2_CalebFontenot.csproj.nuget.dgspec.json new file mode 100755 index 0000000..b97ce03 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/lab6_2_CalebFontenot.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_2_CalebFontenot\\lab6_2_CalebFontenot.csproj": {} + }, + "projects": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_2_CalebFontenot\\lab6_2_CalebFontenot.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_2_CalebFontenot\\lab6_2_CalebFontenot.csproj", + "projectName": "lab6_2_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_2_CalebFontenot\\lab6_2_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_2_CalebFontenot\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/obj/lab6_2_CalebFontenot.csproj.nuget.g.props b/lab6/lab6_2_CalebFontenot/obj/lab6_2_CalebFontenot.csproj.nuget.g.props new file mode 100755 index 0000000..2a0471e --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/lab6_2_CalebFontenot.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caleb\.nuget\packages\ + PackageReference + 6.3.0 + + + + + \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/obj/lab6_2_CalebFontenot.csproj.nuget.g.targets b/lab6/lab6_2_CalebFontenot/obj/lab6_2_CalebFontenot.csproj.nuget.g.targets new file mode 100755 index 0000000..35a7576 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/lab6_2_CalebFontenot.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/obj/project.assets.json b/lab6/lab6_2_CalebFontenot/obj/project.assets.json new file mode 100755 index 0000000..6d88478 --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/project.assets.json @@ -0,0 +1,71 @@ +{ + "version": 3, + "targets": { + "net6.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net6.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\caleb\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_2_CalebFontenot\\lab6_2_CalebFontenot.csproj", + "projectName": "lab6_2_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_2_CalebFontenot\\lab6_2_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_2_CalebFontenot\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/lab6/lab6_2_CalebFontenot/obj/project.nuget.cache b/lab6/lab6_2_CalebFontenot/obj/project.nuget.cache new file mode 100755 index 0000000..41af07a --- /dev/null +++ b/lab6/lab6_2_CalebFontenot/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "fOF7CLl1qDFRmlKPTsbfQEzjeRkPMWyOPczaL1GT2a3G2jCZWLzJcIG7BJhKytbFYs1wBUTBlEMxg/W2iw820w==", + "success": true, + "projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_2_CalebFontenot\\lab6_2_CalebFontenot.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/.vs/ProjectEvaluation/lab6_3_calebfontenot.metadata.v5 b/lab6/lab6_3_CalebFontenot/.vs/ProjectEvaluation/lab6_3_calebfontenot.metadata.v5 new file mode 100755 index 0000000..0331aa3 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/.vs/ProjectEvaluation/lab6_3_calebfontenot.metadata.v5 differ diff --git a/lab6/lab6_3_CalebFontenot/.vs/ProjectEvaluation/lab6_3_calebfontenot.projects.v5 b/lab6/lab6_3_CalebFontenot/.vs/ProjectEvaluation/lab6_3_calebfontenot.projects.v5 new file mode 100755 index 0000000..713c25d Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/.vs/ProjectEvaluation/lab6_3_calebfontenot.projects.v5 differ diff --git a/lab6/lab6_3_CalebFontenot/.vs/lab6_3_CalebFontenot/DesignTimeBuild/.dtbcache.v2 b/lab6/lab6_3_CalebFontenot/.vs/lab6_3_CalebFontenot/DesignTimeBuild/.dtbcache.v2 new file mode 100755 index 0000000..398de71 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/.vs/lab6_3_CalebFontenot/DesignTimeBuild/.dtbcache.v2 differ diff --git a/lab6/lab6_3_CalebFontenot/.vs/lab6_3_CalebFontenot/v17/.futdcache.v2 b/lab6/lab6_3_CalebFontenot/.vs/lab6_3_CalebFontenot/v17/.futdcache.v2 new file mode 100755 index 0000000..bbd8caa Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/.vs/lab6_3_CalebFontenot/v17/.futdcache.v2 differ diff --git a/lab6/lab6_3_CalebFontenot/.vs/lab6_3_CalebFontenot/v17/.suo b/lab6/lab6_3_CalebFontenot/.vs/lab6_3_CalebFontenot/v17/.suo new file mode 100755 index 0000000..6861aba Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/.vs/lab6_3_CalebFontenot/v17/.suo differ diff --git a/lab6/lab6_3_CalebFontenot/Form1.Designer.cs b/lab6/lab6_3_CalebFontenot/Form1.Designer.cs new file mode 100755 index 0000000..9ff796a --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/Form1.Designer.cs @@ -0,0 +1,105 @@ +namespace lab6_3_CalebFontenot +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.label1 = new System.Windows.Forms.Label(); + this.countriesListBox = new System.Windows.Forms.ListBox(); + this.getCountriesButton = new System.Windows.Forms.Button(); + this.exitButton = new System.Windows.Forms.Button(); + this.openFile = new System.Windows.Forms.OpenFileDialog(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); + this.label1.Location = new System.Drawing.Point(12, 9); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(251, 21); + this.label1.TabIndex = 0; + this.label1.Text = "The Countries of North America"; + // + // countriesListBox + // + this.countriesListBox.FormattingEnabled = true; + this.countriesListBox.ItemHeight = 15; + this.countriesListBox.Location = new System.Drawing.Point(12, 33); + this.countriesListBox.Name = "countriesListBox"; + this.countriesListBox.Size = new System.Drawing.Size(251, 184); + this.countriesListBox.TabIndex = 1; + // + // getCountriesButton + // + this.getCountriesButton.Location = new System.Drawing.Point(55, 223); + this.getCountriesButton.Name = "getCountriesButton"; + this.getCountriesButton.Size = new System.Drawing.Size(75, 42); + this.getCountriesButton.TabIndex = 2; + this.getCountriesButton.Text = "Get Countries"; + this.getCountriesButton.UseVisualStyleBackColor = true; + this.getCountriesButton.Click += new System.EventHandler(this.getCountriesButton_Click); + // + // exitButton + // + this.exitButton.Location = new System.Drawing.Point(136, 223); + this.exitButton.Name = "exitButton"; + this.exitButton.Size = new System.Drawing.Size(75, 42); + this.exitButton.TabIndex = 3; + this.exitButton.Text = "Exit"; + this.exitButton.UseVisualStyleBackColor = true; + this.exitButton.Click += new System.EventHandler(this.exitButton_Click); + // + // openFile + // + this.openFile.FileName = "countries_NA.txt"; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(277, 277); + this.Controls.Add(this.exitButton); + this.Controls.Add(this.getCountriesButton); + this.Controls.Add(this.countriesListBox); + this.Controls.Add(this.label1); + this.Name = "Form1"; + this.Text = "Form1"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private Label label1; + private ListBox countriesListBox; + private Button getCountriesButton; + private Button exitButton; + private OpenFileDialog openFile; + } +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/Form1.cs b/lab6/lab6_3_CalebFontenot/Form1.cs new file mode 100755 index 0000000..ea0ddb1 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/Form1.cs @@ -0,0 +1,74 @@ +namespace lab6_3_CalebFontenot +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + private void exitButton_Click(object sender, EventArgs e) + { + this.Close(); + } + /* + * The GetFileName method gets a filename from the user and assigns it to the variable passed as an argument. + */ + private void GetFileName(out string selectedfile) + { + if (openFile.ShowDialog() == DialogResult.OK) + { + selectedfile = openFile.FileName; + } else + { + selectedfile = ""; + } + } + /* + * The GetCountries method accepts a filename as an argument. It opens the specified file and displays its contents in the countriesListBox control. + */ + private void GetCountries(string filename) + { + try + { + // Declare a variable to hold a country name. + string countryName; + + // Declare a StreamReader variable. + StreamReader inputFile; + + // Open the file and get a StreamReader object. + inputFile = File.OpenText(filename); + + // Clear anything currently in the ListBox. + countriesListBox.Items.Clear(); + + // Read the file's contents. + while (!inputFile.EndOfStream) + { + // Get a country name. + countryName = inputFile.ReadLine(); + // Add the country name to the ListBox. + countriesListBox.Items.Add(countryName); + } + // Close the file. + inputFile.Close(); + } catch (Exception ex) + { + // Display an error message. + MessageBox.Show(ex.Message); + } + } + private void getCountriesButton_Click(object sender, EventArgs e) + { + string filename; // To hold the filename + + //Get the filename from the user. + GetFileName(out filename); + + // Get the countries from the file. + GetCountries(filename); + } + + + } +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/Form1.resx b/lab6/lab6_3_CalebFontenot/Form1.resx new file mode 100755 index 0000000..c126e5d --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/Form1.resx @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/Program.cs b/lab6/lab6_3_CalebFontenot/Program.cs new file mode 100755 index 0000000..4ab52fc --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/Program.cs @@ -0,0 +1,17 @@ +namespace lab6_3_CalebFontenot +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.deps.json b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.deps.json new file mode 100755 index 0000000..74e36ea --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "lab6_3_CalebFontenot/1.0.0": { + "runtime": { + "lab6_3_CalebFontenot.dll": {} + } + } + } + }, + "libraries": { + "lab6_3_CalebFontenot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.dll b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.dll new file mode 100755 index 0000000..1159077 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.dll differ diff --git a/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.exe b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.exe new file mode 100755 index 0000000..df54e0a Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.exe differ diff --git a/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.pdb b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.pdb new file mode 100755 index 0000000..d9c4eae Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.pdb differ diff --git a/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.runtimeconfig.json b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.runtimeconfig.json new file mode 100755 index 0000000..b6062ae --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/bin/Debug/net6.0-windows/lab6_3_CalebFontenot.runtimeconfig.json @@ -0,0 +1,15 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ] + } +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/lab6_3_CalebFontenot.csproj b/lab6/lab6_3_CalebFontenot/lab6_3_CalebFontenot.csproj new file mode 100755 index 0000000..45de288 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/lab6_3_CalebFontenot.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/lab6_3_CalebFontenot.csproj.user b/lab6/lab6_3_CalebFontenot/lab6_3_CalebFontenot.csproj.user new file mode 100755 index 0000000..f61322e --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/lab6_3_CalebFontenot.csproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + diff --git a/lab6/lab6_3_CalebFontenot/lab6_3_CalebFontenot.sln b/lab6/lab6_3_CalebFontenot/lab6_3_CalebFontenot.sln new file mode 100755 index 0000000..4bd9b14 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/lab6_3_CalebFontenot.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32804.467 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lab6_3_CalebFontenot", "lab6_3_CalebFontenot.csproj", "{BA9205A1-A2F5-40CB-807C-10E61CB14320}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BA9205A1-A2F5-40CB-807C-10E61CB14320}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BA9205A1-A2F5-40CB-807C-10E61CB14320}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BA9205A1-A2F5-40CB-807C-10E61CB14320}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BA9205A1-A2F5-40CB-807C-10E61CB14320}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {18E20C43-52BB-4029-B978-8AFDB664BF56} + EndGlobalSection +EndGlobal diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100755 index 0000000..32c95f9 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe new file mode 100755 index 0000000..df54e0a Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.AssemblyInfo.cs b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.AssemblyInfo.cs new file mode 100755 index 0000000..eced036 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("lab6_3_CalebFontenot")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("lab6_3_CalebFontenot")] +[assembly: System.Reflection.AssemblyTitleAttribute("lab6_3_CalebFontenot")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.AssemblyInfoInputs.cache b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.AssemblyInfoInputs.cache new file mode 100755 index 0000000..e7b1043 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7323deb3a28cd1f5045eba5d572b573910cd7267 diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.Form1.resources b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.Form1.resources new file mode 100755 index 0000000..6c05a97 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.Form1.resources differ diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100755 index 0000000..ca82740 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net6.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = lab6_3_CalebFontenot +build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\ diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.GlobalUsings.g.cs b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.GlobalUsings.g.cs new file mode 100755 index 0000000..fea4009 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.GlobalUsings.g.cs @@ -0,0 +1,10 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Drawing; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; +global using global::System.Windows.Forms; diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.assets.cache b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.assets.cache new file mode 100755 index 0000000..ed54859 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.assets.cache differ diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.AssemblyReference.cache b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.AssemblyReference.cache new file mode 100755 index 0000000..f790783 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.AssemblyReference.cache differ diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.BuildWithSkipAnalyzers b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.BuildWithSkipAnalyzers new file mode 100755 index 0000000..e69de29 diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.CoreCompileInputs.cache b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.CoreCompileInputs.cache new file mode 100755 index 0000000..e4db966 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +02cf8aaf82258e73c68464d471819378c8be6357 diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.FileListAbsolute.txt b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.FileListAbsolute.txt new file mode 100755 index 0000000..d3b96a1 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.csproj.AssemblyReference.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.Form1.resources +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.csproj.GenerateResource.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.AssemblyInfoInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.AssemblyInfo.cs +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.csproj.CoreCompileInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\bin\Debug\net6.0-windows\lab6_3_CalebFontenot.exe +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\bin\Debug\net6.0-windows\lab6_3_CalebFontenot.deps.json +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\bin\Debug\net6.0-windows\lab6_3_CalebFontenot.runtimeconfig.json +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\bin\Debug\net6.0-windows\lab6_3_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\bin\Debug\net6.0-windows\lab6_3_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\refint\lab6_3_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\lab6_3_CalebFontenot.genruntimeconfig.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab6\lab6_3_CalebFontenot\obj\Debug\net6.0-windows\ref\lab6_3_CalebFontenot.dll diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.GenerateResource.cache b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.GenerateResource.cache new file mode 100755 index 0000000..425e955 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.csproj.GenerateResource.cache differ diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.designer.deps.json b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.designer.deps.json new file mode 100755 index 0000000..fbeaac4 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.designer.runtimeconfig.json b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.designer.runtimeconfig.json new file mode 100755 index 0000000..4ec7c38 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.designer.runtimeconfig.json @@ -0,0 +1,22 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "6.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\caleb\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\caleb\\.nuget\\packages" + ], + "configProperties": { + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.dll b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.dll new file mode 100755 index 0000000..1159077 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.dll differ diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.genruntimeconfig.cache b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.genruntimeconfig.cache new file mode 100755 index 0000000..bac15e9 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.genruntimeconfig.cache @@ -0,0 +1 @@ +4fe881b15ac412bfd5d062938bc6af9a9274b8f6 diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.pdb b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.pdb new file mode 100755 index 0000000..d9c4eae Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/lab6_3_CalebFontenot.pdb differ diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/ref/lab6_3_CalebFontenot.dll b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/ref/lab6_3_CalebFontenot.dll new file mode 100755 index 0000000..5626037 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/ref/lab6_3_CalebFontenot.dll differ diff --git a/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/refint/lab6_3_CalebFontenot.dll b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/refint/lab6_3_CalebFontenot.dll new file mode 100755 index 0000000..5626037 Binary files /dev/null and b/lab6/lab6_3_CalebFontenot/obj/Debug/net6.0-windows/refint/lab6_3_CalebFontenot.dll differ diff --git a/lab6/lab6_3_CalebFontenot/obj/lab6_3_CalebFontenot.csproj.nuget.dgspec.json b/lab6/lab6_3_CalebFontenot/obj/lab6_3_CalebFontenot.csproj.nuget.dgspec.json new file mode 100755 index 0000000..a6571bc --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/lab6_3_CalebFontenot.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_3_CalebFontenot\\lab6_3_CalebFontenot.csproj": {} + }, + "projects": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_3_CalebFontenot\\lab6_3_CalebFontenot.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_3_CalebFontenot\\lab6_3_CalebFontenot.csproj", + "projectName": "lab6_3_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_3_CalebFontenot\\lab6_3_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_3_CalebFontenot\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/obj/lab6_3_CalebFontenot.csproj.nuget.g.props b/lab6/lab6_3_CalebFontenot/obj/lab6_3_CalebFontenot.csproj.nuget.g.props new file mode 100755 index 0000000..2a0471e --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/lab6_3_CalebFontenot.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caleb\.nuget\packages\ + PackageReference + 6.3.0 + + + + + \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/obj/lab6_3_CalebFontenot.csproj.nuget.g.targets b/lab6/lab6_3_CalebFontenot/obj/lab6_3_CalebFontenot.csproj.nuget.g.targets new file mode 100755 index 0000000..35a7576 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/lab6_3_CalebFontenot.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/obj/project.assets.json b/lab6/lab6_3_CalebFontenot/obj/project.assets.json new file mode 100755 index 0000000..b0b60ba --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/project.assets.json @@ -0,0 +1,71 @@ +{ + "version": 3, + "targets": { + "net6.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net6.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\caleb\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_3_CalebFontenot\\lab6_3_CalebFontenot.csproj", + "projectName": "lab6_3_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_3_CalebFontenot\\lab6_3_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_3_CalebFontenot\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0-windows7.0": { + "targetAlias": "net6.0-windows", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WindowsForms": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/lab6/lab6_3_CalebFontenot/obj/project.nuget.cache b/lab6/lab6_3_CalebFontenot/obj/project.nuget.cache new file mode 100755 index 0000000..1d4b704 --- /dev/null +++ b/lab6/lab6_3_CalebFontenot/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "9hWOyBkXAY71iRzOiqYp8ZeXQ3UWl7mDhr6GQW9qE76EyiSxQCiKkcMMzgcPDIKfFRUevWZFp3n3Dzcyjmghog==", + "success": true, + "projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab6\\lab6_3_CalebFontenot\\lab6_3_CalebFontenot.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file