diff --git a/lab5_4/Lab5_8_CalebFontenot/.vs/Lab5_8_CalebFontenot/v17/.suo b/lab5_4/Lab5_8_CalebFontenot/.vs/Lab5_8_CalebFontenot/v17/.suo new file mode 100755 index 0000000..e87f153 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/.vs/Lab5_8_CalebFontenot/v17/.suo differ diff --git a/lab5_4/Lab5_8_CalebFontenot/.vs/ProjectEvaluation/lab5_8_calebfontenot.metadata.v5 b/lab5_4/Lab5_8_CalebFontenot/.vs/ProjectEvaluation/lab5_8_calebfontenot.metadata.v5 new file mode 100755 index 0000000..6c40f16 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/.vs/ProjectEvaluation/lab5_8_calebfontenot.metadata.v5 differ diff --git a/lab5_4/Lab5_8_CalebFontenot/.vs/ProjectEvaluation/lab5_8_calebfontenot.projects.v5 b/lab5_4/Lab5_8_CalebFontenot/.vs/ProjectEvaluation/lab5_8_calebfontenot.projects.v5 new file mode 100755 index 0000000..46cca93 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/.vs/ProjectEvaluation/lab5_8_calebfontenot.projects.v5 differ diff --git a/lab5_4/Lab5_8_CalebFontenot/Form1.Designer.cs b/lab5_4/Lab5_8_CalebFontenot/Form1.Designer.cs new file mode 100755 index 0000000..0379e8c --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/Form1.Designer.cs @@ -0,0 +1,119 @@ +namespace Lab5_7_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.headsPictureBox = new System.Windows.Forms.PictureBox(); + this.tailsPictureBox = new System.Windows.Forms.PictureBox(); + this.tossButton = new System.Windows.Forms.Button(); + this.exitButton = new System.Windows.Forms.Button(); + this.label1 = new System.Windows.Forms.Label(); + ((System.ComponentModel.ISupportInitialize)(this.headsPictureBox)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.tailsPictureBox)).BeginInit(); + this.SuspendLayout(); + // + // headsPictureBox + // + this.headsPictureBox.Image = global::Lab5_7_CalebFontenot.Properties.Resources.Heads1; + this.headsPictureBox.Location = new System.Drawing.Point(12, 12); + this.headsPictureBox.Name = "headsPictureBox"; + this.headsPictureBox.Size = new System.Drawing.Size(170, 170); + this.headsPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.headsPictureBox.TabIndex = 0; + this.headsPictureBox.TabStop = false; + // + // tailsPictureBox + // + this.tailsPictureBox.Image = global::Lab5_7_CalebFontenot.Properties.Resources.Tails1; + this.tailsPictureBox.Location = new System.Drawing.Point(12, 12); + this.tailsPictureBox.Name = "tailsPictureBox"; + this.tailsPictureBox.Size = new System.Drawing.Size(170, 170); + this.tailsPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.tailsPictureBox.TabIndex = 1; + this.tailsPictureBox.TabStop = false; + this.tailsPictureBox.Visible = false; + // + // tossButton + // + this.tossButton.Location = new System.Drawing.Point(12, 212); + this.tossButton.Name = "tossButton"; + this.tossButton.Size = new System.Drawing.Size(82, 23); + this.tossButton.TabIndex = 2; + this.tossButton.Text = "Toss"; + this.tossButton.UseVisualStyleBackColor = true; + this.tossButton.Click += new System.EventHandler(this.tossButton_Click); + // + // exitButton + // + this.exitButton.Location = new System.Drawing.Point(100, 212); + this.exitButton.Name = "exitButton"; + this.exitButton.Size = new System.Drawing.Size(82, 23); + this.exitButton.TabIndex = 3; + this.exitButton.Text = "Exit"; + this.exitButton.UseVisualStyleBackColor = true; + this.exitButton.Click += new System.EventHandler(this.exitButton_Click); + // + // label1 + // + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.label1.Location = new System.Drawing.Point(12, 186); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(170, 23); + this.label1.TabIndex = 4; + this.label1.Text = "Times run: 0"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(193, 247); + this.Controls.Add(this.label1); + this.Controls.Add(this.exitButton); + this.Controls.Add(this.tossButton); + this.Controls.Add(this.tailsPictureBox); + this.Controls.Add(this.headsPictureBox); + this.Name = "Form1"; + this.Text = "Form1"; + ((System.ComponentModel.ISupportInitialize)(this.headsPictureBox)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.tailsPictureBox)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private PictureBox headsPictureBox; + private PictureBox tailsPictureBox; + private Button tossButton; + private Button exitButton; + private Label label1; + } +} \ No newline at end of file diff --git a/lab5_4/Lab5_8_CalebFontenot/Form1.cs b/lab5_4/Lab5_8_CalebFontenot/Form1.cs new file mode 100755 index 0000000..7f936e9 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/Form1.cs @@ -0,0 +1,44 @@ +namespace Lab5_7_CalebFontenot +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + int timesExecuted; + private void tossButton_Click(object sender, EventArgs e) + { + // Variable to indicate which side is up + int sideUp; + + // Create a Random object. + Random rand = new Random(); + + // Get a random integer in the range of 0 through 1. + // 0 means tails up, 1 means heads up. + sideUp = rand.Next(2); + + // Display the side that is up. + if (sideUp == 0) + { + // Display tales up. + tailsPictureBox.Visible = true; + headsPictureBox.Visible = false; + } + else + { + //Display heads up. + headsPictureBox.Visible = true; + tailsPictureBox.Visible = false; + } + timesExecuted++; + label1.Text = "Times run: " + timesExecuted; + } + + private void exitButton_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} \ No newline at end of file diff --git a/lab5_4/Lab5_8_CalebFontenot/Form1.resx b/lab5_4/Lab5_8_CalebFontenot/Form1.resx new file mode 100755 index 0000000..b5ae26c --- /dev/null +++ b/lab5_4/Lab5_8_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/lab5_4/Lab5_8_CalebFontenot/Lab5_8_CalebFontenot.csproj b/lab5_4/Lab5_8_CalebFontenot/Lab5_8_CalebFontenot.csproj new file mode 100755 index 0000000..714c472 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/Lab5_8_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/lab5_4/Lab5_8_CalebFontenot/Lab5_8_CalebFontenot.csproj.user b/lab5_4/Lab5_8_CalebFontenot/Lab5_8_CalebFontenot.csproj.user new file mode 100755 index 0000000..f61322e --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/Lab5_8_CalebFontenot.csproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + diff --git a/lab5_4/Lab5_8_CalebFontenot/Lab5_8_CalebFontenot.sln b/lab5_4/Lab5_8_CalebFontenot/Lab5_8_CalebFontenot.sln new file mode 100755 index 0000000..969c9f1 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/Lab5_8_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}") = "Lab5_8_CalebFontenot", "Lab5_8_CalebFontenot.csproj", "{7C5AEFF6-DE69-4FF2-9285-6F33FCAE2912}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7C5AEFF6-DE69-4FF2-9285-6F33FCAE2912}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7C5AEFF6-DE69-4FF2-9285-6F33FCAE2912}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7C5AEFF6-DE69-4FF2-9285-6F33FCAE2912}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7C5AEFF6-DE69-4FF2-9285-6F33FCAE2912}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4A261866-97FF-432D-BF17-4A6FD18B9559} + EndGlobalSection +EndGlobal diff --git a/lab5_4/Lab5_8_CalebFontenot/Program.cs b/lab5_4/Lab5_8_CalebFontenot/Program.cs new file mode 100755 index 0000000..2d9ff04 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/Program.cs @@ -0,0 +1,17 @@ +namespace Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/Properties/Resources.Designer.cs b/lab5_4/Lab5_8_CalebFontenot/Properties/Resources.Designer.cs new file mode 100755 index 0000000..4f3ed1b --- /dev/null +++ b/lab5_4/Lab5_8_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 Lab5_8_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("Lab5_8_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 Heads1 { + get { + object obj = ResourceManager.GetObject("Heads1", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Tails1 { + get { + object obj = ResourceManager.GetObject("Tails1", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/lab5_4/Lab5_8_CalebFontenot/Properties/Resources.resx b/lab5_4/Lab5_8_CalebFontenot/Properties/Resources.resx new file mode 100755 index 0000000..c988a2f --- /dev/null +++ b/lab5_4/Lab5_8_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\Heads1.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\Tails1.bmp;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/lab5_4/Lab5_8_CalebFontenot/Resources/Heads1.bmp b/lab5_4/Lab5_8_CalebFontenot/Resources/Heads1.bmp new file mode 100755 index 0000000..244924f Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/Resources/Heads1.bmp differ diff --git a/lab5_4/Lab5_8_CalebFontenot/Resources/Tails1.bmp b/lab5_4/Lab5_8_CalebFontenot/Resources/Tails1.bmp new file mode 100755 index 0000000..58d85b8 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/Resources/Tails1.bmp differ diff --git a/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.deps.json b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.deps.json new file mode 100755 index 0000000..112ddd7 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Lab5_7_CalebFontenot/1.0.0": { + "runtime": { + "Lab5_7_CalebFontenot.dll": {} + } + } + } + }, + "libraries": { + "Lab5_7_CalebFontenot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.dll b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.dll new file mode 100755 index 0000000..59ef669 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.dll differ diff --git a/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.exe b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.exe new file mode 100755 index 0000000..850a792 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.exe differ diff --git a/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.pdb b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.pdb new file mode 100755 index 0000000..6db841f Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.pdb differ diff --git a/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.runtimeconfig.json b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_CalebFontenot.runtimeconfig.json new file mode 100755 index 0000000..b6062ae --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/bin/Debug/net6.0-windows/Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100755 index 0000000..32c95f9 --- /dev/null +++ b/lab5_4/Lab5_8_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/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.AssemblyInfo.cs b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.AssemblyInfo.cs new file mode 100755 index 0000000..eea39d3 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_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("Lab5_7_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("Lab5_7_CalebFontenot")] +[assembly: System.Reflection.AssemblyTitleAttribute("Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.AssemblyInfoInputs.cache b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.AssemblyInfoInputs.cache new file mode 100755 index 0000000..d8c9fe1 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +067d1e6494a22dbb1c00e400bc1051a2251ba143 diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.Form1.resources b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.Form1.resources new file mode 100755 index 0000000..6c05a97 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.Form1.resources differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100755 index 0000000..8bcc4af --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_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 = Lab5_7_CalebFontenot +build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.GlobalUsings.g.cs b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.GlobalUsings.g.cs new file mode 100755 index 0000000..fea4009 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.Properties.Resources.resources b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.Properties.Resources.resources new file mode 100755 index 0000000..352ea9b Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.Properties.Resources.resources differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.assets.cache b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.assets.cache new file mode 100755 index 0000000..dbea26f Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.assets.cache differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.AssemblyReference.cache b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.AssemblyReference.cache new file mode 100755 index 0000000..f790783 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.AssemblyReference.cache differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.BuildWithSkipAnalyzers b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.BuildWithSkipAnalyzers new file mode 100755 index 0000000..e69de29 diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.CoreCompileInputs.cache b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.CoreCompileInputs.cache new file mode 100755 index 0000000..b4aabcf --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8859a95f1c04d39ee8ba4c36d07919d45c6b5f9c diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.FileListAbsolute.txt b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.FileListAbsolute.txt new file mode 100755 index 0000000..fd41cc7 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\bin\Debug\net6.0-windows\Lab5_7_CalebFontenot.exe +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\bin\Debug\net6.0-windows\Lab5_7_CalebFontenot.deps.json +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\bin\Debug\net6.0-windows\Lab5_7_CalebFontenot.runtimeconfig.json +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\bin\Debug\net6.0-windows\Lab5_7_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\bin\Debug\net6.0-windows\Lab5_7_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.csproj.AssemblyReference.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.Form1.resources +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.Properties.Resources.resources +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.csproj.GenerateResource.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.AssemblyInfoInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.AssemblyInfo.cs +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.csproj.CoreCompileInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\refint\Lab5_7_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\Lab5_7_CalebFontenot.genruntimeconfig.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\obj\Debug\net6.0-windows\ref\Lab5_7_CalebFontenot.dll diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.GenerateResource.cache b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.GenerateResource.cache new file mode 100755 index 0000000..a798ae7 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.csproj.GenerateResource.cache differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.designer.deps.json b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.designer.deps.json new file mode 100755 index 0000000..fbeaac4 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.designer.runtimeconfig.json b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.designer.runtimeconfig.json new file mode 100755 index 0000000..4ec7c38 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.dll b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.dll new file mode 100755 index 0000000..59ef669 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.dll differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.genruntimeconfig.cache b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.genruntimeconfig.cache new file mode 100755 index 0000000..cd3afe8 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.genruntimeconfig.cache @@ -0,0 +1 @@ +855d4facf19c3dcd62bcb294e09b75a5a42afcc3 diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.pdb b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.pdb new file mode 100755 index 0000000..6db841f Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_7_CalebFontenot.pdb differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.AssemblyInfo.cs b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.AssemblyInfo.cs new file mode 100755 index 0000000..2012398 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_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("Lab5_8_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("Lab5_8_CalebFontenot")] +[assembly: System.Reflection.AssemblyTitleAttribute("Lab5_8_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/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.AssemblyInfoInputs.cache b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.AssemblyInfoInputs.cache new file mode 100755 index 0000000..9d21a09 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +51b5a1512cd2fe4b88cfc45c20fa6ca383ec89eb diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100755 index 0000000..58f1640 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_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 = Lab5_8_CalebFontenot +build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_7_CalebFontenot\ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.GlobalUsings.g.cs b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.GlobalUsings.g.cs new file mode 100755 index 0000000..fea4009 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_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/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.assets.cache b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.assets.cache new file mode 100755 index 0000000..4301dd5 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.assets.cache differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.csproj.AssemblyReference.cache b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.csproj.AssemblyReference.cache new file mode 100755 index 0000000..f790783 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/Lab5_8_CalebFontenot.csproj.AssemblyReference.cache differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll new file mode 100755 index 0000000..cd98725 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe new file mode 100755 index 0000000..850a792 Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/ref/Lab5_7_CalebFontenot.dll b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/ref/Lab5_7_CalebFontenot.dll new file mode 100755 index 0000000..bb41b5e Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/ref/Lab5_7_CalebFontenot.dll differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/refint/Lab5_7_CalebFontenot.dll b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/refint/Lab5_7_CalebFontenot.dll new file mode 100755 index 0000000..bb41b5e Binary files /dev/null and b/lab5_4/Lab5_8_CalebFontenot/obj/Debug/net6.0-windows/refint/Lab5_7_CalebFontenot.dll differ diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_7_CalebFontenot.csproj.nuget.dgspec.json b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_7_CalebFontenot.csproj.nuget.dgspec.json new file mode 100755 index 0000000..95e0c80 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_7_CalebFontenot.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_7_CalebFontenot.csproj": {} + }, + "projects": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_7_CalebFontenot.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_7_CalebFontenot.csproj", + "projectName": "Lab5_7_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_7_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_7_CalebFontenot.csproj.nuget.g.props b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_7_CalebFontenot.csproj.nuget.g.props new file mode 100755 index 0000000..2a0471e --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_7_CalebFontenot.csproj.nuget.g.targets b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_7_CalebFontenot.csproj.nuget.g.targets new file mode 100755 index 0000000..35a7576 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_7_CalebFontenot.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_8_CalebFontenot.csproj.nuget.dgspec.json b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_8_CalebFontenot.csproj.nuget.dgspec.json new file mode 100755 index 0000000..3dfd911 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_8_CalebFontenot.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_8_CalebFontenot.csproj": {} + }, + "projects": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_8_CalebFontenot.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_8_CalebFontenot.csproj", + "projectName": "Lab5_8_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_8_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_8_CalebFontenot.csproj.nuget.g.props b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_8_CalebFontenot.csproj.nuget.g.props new file mode 100755 index 0000000..2a0471e --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_8_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/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_8_CalebFontenot.csproj.nuget.g.targets b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_8_CalebFontenot.csproj.nuget.g.targets new file mode 100755 index 0000000..35a7576 --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/Lab5_8_CalebFontenot.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/lab5_4/Lab5_8_CalebFontenot/obj/project.assets.json b/lab5_4/Lab5_8_CalebFontenot/obj/project.assets.json new file mode 100755 index 0000000..58fa3c3 --- /dev/null +++ b/lab5_4/Lab5_8_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#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_8_CalebFontenot.csproj", + "projectName": "Lab5_8_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_8_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_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/lab5_4/Lab5_8_CalebFontenot/obj/project.nuget.cache b/lab5_4/Lab5_8_CalebFontenot/obj/project.nuget.cache new file mode 100755 index 0000000..6bc691b --- /dev/null +++ b/lab5_4/Lab5_8_CalebFontenot/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "JHDs9PiX0QXnP5xL+c+GOxOy8Ip6tCKzcSJRQ1qu+8dgDny0w6T/28nb1A3orlgymqtvbgBiIYxdm4f21lAW9w==", + "success": true, + "projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_7_CalebFontenot\\Lab5_8_CalebFontenot.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/lab5_4/Lab5_9_CalebFontenot/.vs/Lab5_9_CalebFontenot/DesignTimeBuild/.dtbcache.v2 b/lab5_4/Lab5_9_CalebFontenot/.vs/Lab5_9_CalebFontenot/DesignTimeBuild/.dtbcache.v2 new file mode 100755 index 0000000..b88a97d Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/.vs/Lab5_9_CalebFontenot/DesignTimeBuild/.dtbcache.v2 differ diff --git a/lab5_4/Lab5_9_CalebFontenot/.vs/Lab5_9_CalebFontenot/v17/.futdcache.v2 b/lab5_4/Lab5_9_CalebFontenot/.vs/Lab5_9_CalebFontenot/v17/.futdcache.v2 new file mode 100755 index 0000000..e2c7700 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/.vs/Lab5_9_CalebFontenot/v17/.futdcache.v2 differ diff --git a/lab5_4/Lab5_9_CalebFontenot/.vs/Lab5_9_CalebFontenot/v17/.suo b/lab5_4/Lab5_9_CalebFontenot/.vs/Lab5_9_CalebFontenot/v17/.suo new file mode 100755 index 0000000..2b8e7a0 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/.vs/Lab5_9_CalebFontenot/v17/.suo differ diff --git a/lab5_4/Lab5_9_CalebFontenot/.vs/ProjectEvaluation/lab5_9_calebfontenot.metadata.v5 b/lab5_4/Lab5_9_CalebFontenot/.vs/ProjectEvaluation/lab5_9_calebfontenot.metadata.v5 new file mode 100755 index 0000000..8439129 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/.vs/ProjectEvaluation/lab5_9_calebfontenot.metadata.v5 differ diff --git a/lab5_4/Lab5_9_CalebFontenot/.vs/ProjectEvaluation/lab5_9_calebfontenot.projects.v5 b/lab5_4/Lab5_9_CalebFontenot/.vs/ProjectEvaluation/lab5_9_calebfontenot.projects.v5 new file mode 100755 index 0000000..e76eecb Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/.vs/ProjectEvaluation/lab5_9_calebfontenot.projects.v5 differ diff --git a/lab5_4/Lab5_9_CalebFontenot/Form1.Designer.cs b/lab5_4/Lab5_9_CalebFontenot/Form1.Designer.cs new file mode 100755 index 0000000..a5271f5 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/Form1.Designer.cs @@ -0,0 +1,73 @@ +namespace Lab5_9_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.SuspendLayout(); + // + // label1 + // + this.label1.Font = new System.Drawing.Font("Segoe UI", 14.25F, 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(339, 39); + this.label1.TabIndex = 0; + this.label1.Text = "The Countries of South America"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // countriesListBox + // + this.countriesListBox.FormattingEnabled = true; + this.countriesListBox.ItemHeight = 15; + this.countriesListBox.Location = new System.Drawing.Point(12, 51); + this.countriesListBox.Name = "countriesListBox"; + this.countriesListBox.Size = new System.Drawing.Size(339, 199); + this.countriesListBox.TabIndex = 1; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(363, 298); + this.Controls.Add(this.countriesListBox); + this.Controls.Add(this.label1); + this.Name = "Form1"; + this.Text = "Form1"; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + + } + + #endregion + + private Label label1; + private ListBox countriesListBox; + } +} \ No newline at end of file diff --git a/lab5_4/Lab5_9_CalebFontenot/Form1.cs b/lab5_4/Lab5_9_CalebFontenot/Form1.cs new file mode 100755 index 0000000..b20179b --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/Form1.cs @@ -0,0 +1,41 @@ +namespace Lab5_9_CalebFontenot +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + try + { + // Declare a variable to load a country name. + string countryName; + + // Declare a StreamReader variable. + StreamReader inputFile; + + // Open the file and get a StreamReader object. + inputFile = File.OpenText("Countries.txt"); + + // 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); + } + } + } +} \ No newline at end of file diff --git a/lab5_4/Lab5_9_CalebFontenot/Form1.resx b/lab5_4/Lab5_9_CalebFontenot/Form1.resx new file mode 100755 index 0000000..b5ae26c --- /dev/null +++ b/lab5_4/Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/Lab5_9_CalebFontenot.csproj b/lab5_4/Lab5_9_CalebFontenot/Lab5_9_CalebFontenot.csproj new file mode 100755 index 0000000..45de288 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/Lab5_9_CalebFontenot.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/lab5_4/Lab5_9_CalebFontenot/Lab5_9_CalebFontenot.csproj.user b/lab5_4/Lab5_9_CalebFontenot/Lab5_9_CalebFontenot.csproj.user new file mode 100755 index 0000000..f61322e --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/Lab5_9_CalebFontenot.csproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + diff --git a/lab5_4/Lab5_9_CalebFontenot/Lab5_9_CalebFontenot.sln b/lab5_4/Lab5_9_CalebFontenot/Lab5_9_CalebFontenot.sln new file mode 100755 index 0000000..3d4bf66 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/Lab5_9_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}") = "Lab5_9_CalebFontenot", "Lab5_9_CalebFontenot.csproj", "{24F25087-AF09-4FEE-8F10-1DA82FE1C976}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {24F25087-AF09-4FEE-8F10-1DA82FE1C976}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {24F25087-AF09-4FEE-8F10-1DA82FE1C976}.Debug|Any CPU.Build.0 = Debug|Any CPU + {24F25087-AF09-4FEE-8F10-1DA82FE1C976}.Release|Any CPU.ActiveCfg = Release|Any CPU + {24F25087-AF09-4FEE-8F10-1DA82FE1C976}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BA81FC6F-05E3-4A8C-8B44-8B628185C289} + EndGlobalSection +EndGlobal diff --git a/lab5_4/Lab5_9_CalebFontenot/Program.cs b/lab5_4/Lab5_9_CalebFontenot/Program.cs new file mode 100755 index 0000000..14dd5a3 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/Program.cs @@ -0,0 +1,17 @@ +namespace Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Countries.txt b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Countries.txt new file mode 100755 index 0000000..89304e0 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Countries.txt @@ -0,0 +1,14 @@ +Argentina +Bolivia +Brazil +Chile +Colombia +Ecuador +Falkland Islands +French Guiana +Guyana +Paraguay +Peru +Suriname +Uruguay +Venezuela \ No newline at end of file diff --git a/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.deps.json b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.deps.json new file mode 100755 index 0000000..89cbfc9 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Lab5_9_CalebFontenot/1.0.0": { + "runtime": { + "Lab5_9_CalebFontenot.dll": {} + } + } + } + }, + "libraries": { + "Lab5_9_CalebFontenot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.dll b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.dll new file mode 100755 index 0000000..9ff8100 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.dll differ diff --git a/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.exe b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.exe new file mode 100755 index 0000000..fbe7819 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.exe differ diff --git a/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.pdb b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.pdb new file mode 100755 index 0000000..592b160 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.pdb differ diff --git a/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.runtimeconfig.json b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_CalebFontenot.runtimeconfig.json new file mode 100755 index 0000000..b6062ae --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/bin/Debug/net6.0-windows/Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100755 index 0000000..32c95f9 --- /dev/null +++ b/lab5_4/Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.AssemblyInfo.cs b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.AssemblyInfo.cs new file mode 100755 index 0000000..8708b2c --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_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("Lab5_9_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("Lab5_9_CalebFontenot")] +[assembly: System.Reflection.AssemblyTitleAttribute("Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.AssemblyInfoInputs.cache b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.AssemblyInfoInputs.cache new file mode 100755 index 0000000..0ad25c3 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +12787b6ce8e7ae6b697cd6ffd1defefdac9a1971 diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.Form1.resources b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.Form1.resources new file mode 100755 index 0000000..6c05a97 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.Form1.resources differ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100755 index 0000000..b12c87c --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_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 = Lab5_9_CalebFontenot +build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.GlobalUsings.g.cs b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.GlobalUsings.g.cs new file mode 100755 index 0000000..fea4009 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.assets.cache b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.assets.cache new file mode 100755 index 0000000..5322c16 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.assets.cache differ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.AssemblyReference.cache b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.AssemblyReference.cache new file mode 100755 index 0000000..f790783 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.AssemblyReference.cache differ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.BuildWithSkipAnalyzers b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.BuildWithSkipAnalyzers new file mode 100755 index 0000000..e69de29 diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.CoreCompileInputs.cache b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.CoreCompileInputs.cache new file mode 100755 index 0000000..b003a8e --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +73077d7b2114b971a332968869b2873a39157101 diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.FileListAbsolute.txt b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.FileListAbsolute.txt new file mode 100755 index 0000000..a23f1c5 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\bin\Debug\net6.0-windows\Lab5_9_CalebFontenot.exe +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\bin\Debug\net6.0-windows\Lab5_9_CalebFontenot.deps.json +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\bin\Debug\net6.0-windows\Lab5_9_CalebFontenot.runtimeconfig.json +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\bin\Debug\net6.0-windows\Lab5_9_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\bin\Debug\net6.0-windows\Lab5_9_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.csproj.AssemblyReference.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.Form1.resources +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.csproj.GenerateResource.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.AssemblyInfoInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.AssemblyInfo.cs +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.csproj.CoreCompileInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\refint\Lab5_9_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\Lab5_9_CalebFontenot.genruntimeconfig.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Lab5_9_CalebFontenot\obj\Debug\net6.0-windows\ref\Lab5_9_CalebFontenot.dll diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.GenerateResource.cache b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.GenerateResource.cache new file mode 100755 index 0000000..4729976 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.csproj.GenerateResource.cache differ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.designer.deps.json b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.designer.deps.json new file mode 100755 index 0000000..fbeaac4 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.designer.runtimeconfig.json b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.designer.runtimeconfig.json new file mode 100755 index 0000000..4ec7c38 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.dll b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.dll new file mode 100755 index 0000000..9ff8100 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.dll differ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.genruntimeconfig.cache b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.genruntimeconfig.cache new file mode 100755 index 0000000..ed2fba8 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.genruntimeconfig.cache @@ -0,0 +1 @@ +e5e3798cddc7a30e6e77985fa6f21807644a524a diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.pdb b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.pdb new file mode 100755 index 0000000..592b160 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/Lab5_9_CalebFontenot.pdb differ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe new file mode 100755 index 0000000..fbe7819 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/ref/Lab5_9_CalebFontenot.dll b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/ref/Lab5_9_CalebFontenot.dll new file mode 100755 index 0000000..2dac481 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/ref/Lab5_9_CalebFontenot.dll differ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/refint/Lab5_9_CalebFontenot.dll b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/refint/Lab5_9_CalebFontenot.dll new file mode 100755 index 0000000..2dac481 Binary files /dev/null and b/lab5_4/Lab5_9_CalebFontenot/obj/Debug/net6.0-windows/refint/Lab5_9_CalebFontenot.dll differ diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/Lab5_9_CalebFontenot.csproj.nuget.dgspec.json b/lab5_4/Lab5_9_CalebFontenot/obj/Lab5_9_CalebFontenot.csproj.nuget.dgspec.json new file mode 100755 index 0000000..b33714d --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Lab5_9_CalebFontenot.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_9_CalebFontenot\\Lab5_9_CalebFontenot.csproj": {} + }, + "projects": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_9_CalebFontenot\\Lab5_9_CalebFontenot.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_9_CalebFontenot\\Lab5_9_CalebFontenot.csproj", + "projectName": "Lab5_9_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_9_CalebFontenot\\Lab5_9_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/obj/Lab5_9_CalebFontenot.csproj.nuget.g.props b/lab5_4/Lab5_9_CalebFontenot/obj/Lab5_9_CalebFontenot.csproj.nuget.g.props new file mode 100755 index 0000000..2a0471e --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/obj/Lab5_9_CalebFontenot.csproj.nuget.g.targets b/lab5_4/Lab5_9_CalebFontenot/obj/Lab5_9_CalebFontenot.csproj.nuget.g.targets new file mode 100755 index 0000000..35a7576 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/Lab5_9_CalebFontenot.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/lab5_4/Lab5_9_CalebFontenot/obj/project.assets.json b/lab5_4/Lab5_9_CalebFontenot/obj/project.assets.json new file mode 100755 index 0000000..94e6366 --- /dev/null +++ b/lab5_4/Lab5_9_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#\\lab5_4\\Lab5_9_CalebFontenot\\Lab5_9_CalebFontenot.csproj", + "projectName": "Lab5_9_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_9_CalebFontenot\\Lab5_9_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_9_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/lab5_4/Lab5_9_CalebFontenot/obj/project.nuget.cache b/lab5_4/Lab5_9_CalebFontenot/obj/project.nuget.cache new file mode 100755 index 0000000..8d961e4 --- /dev/null +++ b/lab5_4/Lab5_9_CalebFontenot/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "aApdAU8oAy0ttaRgWnH7+rywkoizEIfBP+TUQp93u9TS1G026VUUttdEWbF3NOKbAxtXRgNQw/u5XuL+1F5luA==", + "success": true, + "projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Lab5_9_CalebFontenot\\Lab5_9_CalebFontenot.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/lab5_4/Problem1_CalebFontenot/.vs/Problem1_CalebFontenot/DesignTimeBuild/.dtbcache.v2 b/lab5_4/Problem1_CalebFontenot/.vs/Problem1_CalebFontenot/DesignTimeBuild/.dtbcache.v2 new file mode 100755 index 0000000..2437b03 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/.vs/Problem1_CalebFontenot/DesignTimeBuild/.dtbcache.v2 differ diff --git a/lab5_4/Problem1_CalebFontenot/.vs/Problem1_CalebFontenot/v17/.futdcache.v2 b/lab5_4/Problem1_CalebFontenot/.vs/Problem1_CalebFontenot/v17/.futdcache.v2 new file mode 100755 index 0000000..1636269 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/.vs/Problem1_CalebFontenot/v17/.futdcache.v2 differ diff --git a/lab5_4/Problem1_CalebFontenot/.vs/Problem1_CalebFontenot/v17/.suo b/lab5_4/Problem1_CalebFontenot/.vs/Problem1_CalebFontenot/v17/.suo new file mode 100755 index 0000000..0be918a Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/.vs/Problem1_CalebFontenot/v17/.suo differ diff --git a/lab5_4/Problem1_CalebFontenot/.vs/ProjectEvaluation/problem1_calebfontenot.metadata.v5 b/lab5_4/Problem1_CalebFontenot/.vs/ProjectEvaluation/problem1_calebfontenot.metadata.v5 new file mode 100755 index 0000000..ca42de8 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/.vs/ProjectEvaluation/problem1_calebfontenot.metadata.v5 differ diff --git a/lab5_4/Problem1_CalebFontenot/.vs/ProjectEvaluation/problem1_calebfontenot.projects.v5 b/lab5_4/Problem1_CalebFontenot/.vs/ProjectEvaluation/problem1_calebfontenot.projects.v5 new file mode 100755 index 0000000..b565409 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/.vs/ProjectEvaluation/problem1_calebfontenot.projects.v5 differ diff --git a/lab5_4/Problem1_CalebFontenot/Form1.Designer.cs b/lab5_4/Problem1_CalebFontenot/Form1.Designer.cs new file mode 100755 index 0000000..8e676db --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/Form1.Designer.cs @@ -0,0 +1,93 @@ +namespace Problem1_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.listBox1 = new System.Windows.Forms.ListBox(); + this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); + this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog(); + this.openButton = new System.Windows.Forms.Button(); + this.saveButton = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // listBox1 + // + this.listBox1.FormattingEnabled = true; + this.listBox1.ItemHeight = 15; + this.listBox1.Location = new System.Drawing.Point(12, 12); + this.listBox1.Name = "listBox1"; + this.listBox1.Size = new System.Drawing.Size(175, 229); + this.listBox1.TabIndex = 0; + // + // openFileDialog1 + // + this.openFileDialog1.FileName = "openFileDialog1"; + // + // openButton + // + this.openButton.Location = new System.Drawing.Point(12, 247); + this.openButton.Name = "openButton"; + this.openButton.Size = new System.Drawing.Size(75, 23); + this.openButton.TabIndex = 1; + this.openButton.Text = "Open File"; + this.openButton.UseVisualStyleBackColor = true; + this.openButton.Click += new System.EventHandler(this.openButton_Click); + // + // saveButton + // + this.saveButton.Location = new System.Drawing.Point(112, 247); + this.saveButton.Name = "saveButton"; + this.saveButton.Size = new System.Drawing.Size(75, 23); + this.saveButton.TabIndex = 2; + this.saveButton.Text = "Save File"; + this.saveButton.UseVisualStyleBackColor = true; + this.saveButton.Click += new System.EventHandler(this.saveButton_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(200, 288); + this.Controls.Add(this.saveButton); + this.Controls.Add(this.openButton); + this.Controls.Add(this.listBox1); + this.Name = "Form1"; + this.Text = "Form1"; + this.ResumeLayout(false); + + } + + #endregion + + private ListBox listBox1; + private OpenFileDialog openFileDialog1; + private SaveFileDialog saveFileDialog1; + private Button openButton; + private Button saveButton; + } +} \ No newline at end of file diff --git a/lab5_4/Problem1_CalebFontenot/Form1.cs b/lab5_4/Problem1_CalebFontenot/Form1.cs new file mode 100755 index 0000000..3966015 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/Form1.cs @@ -0,0 +1,43 @@ +namespace Problem1_CalebFontenot +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void openButton_Click(object sender, EventArgs e) + { + // Create StreamReader + StreamReader inputFile = null; + // Read the contents of the text file. + if (openFileDialog1.ShowDialog() == DialogResult.OK) + { + inputFile = File.OpenText(openFileDialog1.FileName); + } + // Clear the listbox. + listBox1.Items.Clear(); + + while (!inputFile.EndOfStream) + { + listBox1.Items.Add(inputFile.ReadLine()); + + } + } + + private void saveButton_Click(object sender, EventArgs e) + { + // Create StreamWriter + StreamWriter outputFile = null; + + //Open the save file dialog. + if (saveFileDialog1.ShowDialog() == DialogResult.OK) + { + outputFile == File.OpenWrite(saveFileDialog1.FileName); + } + + + } + } +} \ No newline at end of file diff --git a/lab5_4/Problem1_CalebFontenot/Form1.resx b/lab5_4/Problem1_CalebFontenot/Form1.resx new file mode 100755 index 0000000..e9bb86a --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/Form1.resx @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 157, 17 + + \ No newline at end of file diff --git a/lab5_4/Problem1_CalebFontenot/Problem1_CalebFontenot.csproj b/lab5_4/Problem1_CalebFontenot/Problem1_CalebFontenot.csproj new file mode 100755 index 0000000..45de288 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/Problem1_CalebFontenot.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/lab5_4/Problem1_CalebFontenot/Problem1_CalebFontenot.csproj.user b/lab5_4/Problem1_CalebFontenot/Problem1_CalebFontenot.csproj.user new file mode 100755 index 0000000..f61322e --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/Problem1_CalebFontenot.csproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + diff --git a/lab5_4/Problem1_CalebFontenot/Problem1_CalebFontenot.sln b/lab5_4/Problem1_CalebFontenot/Problem1_CalebFontenot.sln new file mode 100755 index 0000000..f674c08 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/Problem1_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}") = "Problem1_CalebFontenot", "Problem1_CalebFontenot.csproj", "{043A5BF2-F94F-4717-977D-EEF13538D292}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {043A5BF2-F94F-4717-977D-EEF13538D292}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {043A5BF2-F94F-4717-977D-EEF13538D292}.Debug|Any CPU.Build.0 = Debug|Any CPU + {043A5BF2-F94F-4717-977D-EEF13538D292}.Release|Any CPU.ActiveCfg = Release|Any CPU + {043A5BF2-F94F-4717-977D-EEF13538D292}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {71179344-44F6-4E43-B27F-CA67976C1647} + EndGlobalSection +EndGlobal diff --git a/lab5_4/Problem1_CalebFontenot/Program.cs b/lab5_4/Problem1_CalebFontenot/Program.cs new file mode 100755 index 0000000..8f32057 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/Program.cs @@ -0,0 +1,17 @@ +namespace Problem1_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/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.deps.json b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.deps.json new file mode 100755 index 0000000..8386995 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Problem1_CalebFontenot/1.0.0": { + "runtime": { + "Problem1_CalebFontenot.dll": {} + } + } + } + }, + "libraries": { + "Problem1_CalebFontenot/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.dll b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.dll new file mode 100755 index 0000000..b129ba8 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.dll differ diff --git a/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.exe b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.exe new file mode 100755 index 0000000..032c2a2 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.exe differ diff --git a/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.pdb b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.pdb new file mode 100755 index 0000000..7eb4e98 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.pdb differ diff --git a/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.runtimeconfig.json b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_CalebFontenot.runtimeconfig.json new file mode 100755 index 0000000..b6062ae --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/bin/Debug/net6.0-windows/Problem1_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/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100755 index 0000000..32c95f9 --- /dev/null +++ b/lab5_4/Problem1_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/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.AssemblyInfo.cs b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.AssemblyInfo.cs new file mode 100755 index 0000000..b062cad --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_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("Problem1_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("Problem1_CalebFontenot")] +[assembly: System.Reflection.AssemblyTitleAttribute("Problem1_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/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.AssemblyInfoInputs.cache b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.AssemblyInfoInputs.cache new file mode 100755 index 0000000..714ce94 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0791121a54aeff380b784a8273cf50c55cf84501 diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.Form1.resources b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.Form1.resources new file mode 100755 index 0000000..6c05a97 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.Form1.resources differ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig new file mode 100755 index 0000000..9c01b34 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_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 = Problem1_CalebFontenot +build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.GlobalUsings.g.cs b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.GlobalUsings.g.cs new file mode 100755 index 0000000..fea4009 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_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/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.assets.cache b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.assets.cache new file mode 100755 index 0000000..3f0f1d6 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.assets.cache differ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.AssemblyReference.cache b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.AssemblyReference.cache new file mode 100755 index 0000000..f790783 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.AssemblyReference.cache differ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.BuildWithSkipAnalyzers b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.BuildWithSkipAnalyzers new file mode 100755 index 0000000..e69de29 diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.CoreCompileInputs.cache b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.CoreCompileInputs.cache new file mode 100755 index 0000000..4ddf414 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +670de1a3c5dd62bc660c4385046339c6bc9447b4 diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.FileListAbsolute.txt b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.FileListAbsolute.txt new file mode 100755 index 0000000..b59bbfb --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\bin\Debug\net6.0-windows\Problem1_CalebFontenot.exe +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\bin\Debug\net6.0-windows\Problem1_CalebFontenot.deps.json +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\bin\Debug\net6.0-windows\Problem1_CalebFontenot.runtimeconfig.json +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\bin\Debug\net6.0-windows\Problem1_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\bin\Debug\net6.0-windows\Problem1_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.csproj.AssemblyReference.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.Form1.resources +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.csproj.GenerateResource.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.AssemblyInfoInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.AssemblyInfo.cs +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.csproj.CoreCompileInputs.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\refint\Problem1_CalebFontenot.dll +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.pdb +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\Problem1_CalebFontenot.genruntimeconfig.cache +Z:\media\DataEXT4\Documents\ASDV C#\lab5_4\Problem1_CalebFontenot\obj\Debug\net6.0-windows\ref\Problem1_CalebFontenot.dll diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.GenerateResource.cache b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.GenerateResource.cache new file mode 100755 index 0000000..89b2122 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.csproj.GenerateResource.cache differ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.designer.deps.json b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.designer.deps.json new file mode 100755 index 0000000..fbeaac4 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_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/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.designer.runtimeconfig.json b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.designer.runtimeconfig.json new file mode 100755 index 0000000..4ec7c38 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_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/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.dll b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.dll new file mode 100755 index 0000000..b129ba8 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.dll differ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.genruntimeconfig.cache b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.genruntimeconfig.cache new file mode 100755 index 0000000..d294cd4 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.genruntimeconfig.cache @@ -0,0 +1 @@ +1a72e0307b90ab743518815f3086e5f4f41289bf diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.pdb b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.pdb new file mode 100755 index 0000000..7eb4e98 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/Problem1_CalebFontenot.pdb differ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe new file mode 100755 index 0000000..032c2a2 Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe differ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/ref/Problem1_CalebFontenot.dll b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/ref/Problem1_CalebFontenot.dll new file mode 100755 index 0000000..9536f0d Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/ref/Problem1_CalebFontenot.dll differ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/refint/Problem1_CalebFontenot.dll b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/refint/Problem1_CalebFontenot.dll new file mode 100755 index 0000000..9536f0d Binary files /dev/null and b/lab5_4/Problem1_CalebFontenot/obj/Debug/net6.0-windows/refint/Problem1_CalebFontenot.dll differ diff --git a/lab5_4/Problem1_CalebFontenot/obj/Problem1_CalebFontenot.csproj.nuget.dgspec.json b/lab5_4/Problem1_CalebFontenot/obj/Problem1_CalebFontenot.csproj.nuget.dgspec.json new file mode 100755 index 0000000..5b3cdf1 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Problem1_CalebFontenot.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Problem1_CalebFontenot\\Problem1_CalebFontenot.csproj": {} + }, + "projects": { + "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Problem1_CalebFontenot\\Problem1_CalebFontenot.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Problem1_CalebFontenot\\Problem1_CalebFontenot.csproj", + "projectName": "Problem1_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Problem1_CalebFontenot\\Problem1_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Problem1_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/lab5_4/Problem1_CalebFontenot/obj/Problem1_CalebFontenot.csproj.nuget.g.props b/lab5_4/Problem1_CalebFontenot/obj/Problem1_CalebFontenot.csproj.nuget.g.props new file mode 100755 index 0000000..2a0471e --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Problem1_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/lab5_4/Problem1_CalebFontenot/obj/Problem1_CalebFontenot.csproj.nuget.g.targets b/lab5_4/Problem1_CalebFontenot/obj/Problem1_CalebFontenot.csproj.nuget.g.targets new file mode 100755 index 0000000..35a7576 --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/Problem1_CalebFontenot.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/lab5_4/Problem1_CalebFontenot/obj/project.assets.json b/lab5_4/Problem1_CalebFontenot/obj/project.assets.json new file mode 100755 index 0000000..7b7fc96 --- /dev/null +++ b/lab5_4/Problem1_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#\\lab5_4\\Problem1_CalebFontenot\\Problem1_CalebFontenot.csproj", + "projectName": "Problem1_CalebFontenot", + "projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Problem1_CalebFontenot\\Problem1_CalebFontenot.csproj", + "packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\", + "outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Problem1_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/lab5_4/Problem1_CalebFontenot/obj/project.nuget.cache b/lab5_4/Problem1_CalebFontenot/obj/project.nuget.cache new file mode 100755 index 0000000..270aeaf --- /dev/null +++ b/lab5_4/Problem1_CalebFontenot/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "9u46lt5h1Kjbtv7Ynu5q8Gac4k5fcBd/WB165H1s+2rfDZ/i4NMwkGg08eHklnQ3v3KhHN1T08dvbBgbDMLxrw==", + "success": true, + "projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\lab5_4\\Problem1_CalebFontenot\\Problem1_CalebFontenot.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file