Finish Lab3_2

This commit is contained in:
2022-09-06 21:45:08 -05:00
parent ccb2634aa8
commit 75d83330ea
144 changed files with 2163 additions and 6 deletions

View File

@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32825.248
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "lab3_3_5_CalebFontenot", "lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot.csproj", "{1BD5CAFC-6E38-4294-90A2-2E1A35DFB52F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1BD5CAFC-6E38-4294-90A2-2E1A35DFB52F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1BD5CAFC-6E38-4294-90A2-2E1A35DFB52F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1BD5CAFC-6E38-4294-90A2-2E1A35DFB52F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1BD5CAFC-6E38-4294-90A2-2E1A35DFB52F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {245831BF-2435-4F28-991F-7EBCCF0B9E7C}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,167 @@
namespace lab3_3_5_CalebFontenot
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.instructionLabel = new System.Windows.Forms.Label();
this.outputDescriptionLabel = new System.Windows.Forms.Label();
this.totalLabel = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.fiveCentsPictureBox = new System.Windows.Forms.PictureBox();
this.tenCentsPictureBox = new System.Windows.Forms.PictureBox();
this.twentyFiveCentsPictureBox = new System.Windows.Forms.PictureBox();
this.fiftyCentsPictureBox = new System.Windows.Forms.PictureBox();
this.exitButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.fiveCentsPictureBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tenCentsPictureBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.twentyFiveCentsPictureBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.fiftyCentsPictureBox)).BeginInit();
this.SuspendLayout();
//
// instructionLabel
//
this.instructionLabel.Location = new System.Drawing.Point(1, -1);
this.instructionLabel.Name = "instructionLabel";
this.instructionLabel.Size = new System.Drawing.Size(416, 27);
this.instructionLabel.TabIndex = 0;
this.instructionLabel.Text = "Click the Coins";
this.instructionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// outputDescriptionLabel
//
this.outputDescriptionLabel.Location = new System.Drawing.Point(302, 190);
this.outputDescriptionLabel.Name = "outputDescriptionLabel";
this.outputDescriptionLabel.Size = new System.Drawing.Size(115, 23);
this.outputDescriptionLabel.TabIndex = 1;
this.outputDescriptionLabel.Text = "Total";
this.outputDescriptionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// totalLabel
//
this.totalLabel.Location = new System.Drawing.Point(302, 213);
this.totalLabel.Name = "totalLabel";
this.totalLabel.Size = new System.Drawing.Size(115, 23);
this.totalLabel.TabIndex = 2;
this.totalLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// button1
//
this.button1.Location = new System.Drawing.Point(253, 461);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 3;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
//
// fiveCentsPictureBox
//
this.fiveCentsPictureBox.Image = global::lab3_3_5_CalebFontenot.Properties.Resources._5cents;
this.fiveCentsPictureBox.Location = new System.Drawing.Point(12, 29);
this.fiveCentsPictureBox.Name = "fiveCentsPictureBox";
this.fiveCentsPictureBox.Size = new System.Drawing.Size(138, 184);
this.fiveCentsPictureBox.TabIndex = 4;
this.fiveCentsPictureBox.TabStop = false;
this.fiveCentsPictureBox.Click += new System.EventHandler(this.fiveCentsPictureBox_Click);
//
// tenCentsPictureBox
//
this.tenCentsPictureBox.Image = global::lab3_3_5_CalebFontenot.Properties.Resources._10cents;
this.tenCentsPictureBox.Location = new System.Drawing.Point(156, 29);
this.tenCentsPictureBox.Name = "tenCentsPictureBox";
this.tenCentsPictureBox.Size = new System.Drawing.Size(140, 184);
this.tenCentsPictureBox.TabIndex = 5;
this.tenCentsPictureBox.TabStop = false;
this.tenCentsPictureBox.Click += new System.EventHandler(this.tenCentsPictureBox_Click);
//
// twentyFiveCentsPictureBox
//
this.twentyFiveCentsPictureBox.Image = global::lab3_3_5_CalebFontenot.Properties.Resources._25cents;
this.twentyFiveCentsPictureBox.Location = new System.Drawing.Point(12, 219);
this.twentyFiveCentsPictureBox.Name = "twentyFiveCentsPictureBox";
this.twentyFiveCentsPictureBox.Size = new System.Drawing.Size(138, 184);
this.twentyFiveCentsPictureBox.TabIndex = 6;
this.twentyFiveCentsPictureBox.TabStop = false;
this.twentyFiveCentsPictureBox.Click += new System.EventHandler(this.twentyFiveCentsPictureBox_Click);
//
// fiftyCentsPictureBox
//
this.fiftyCentsPictureBox.Image = global::lab3_3_5_CalebFontenot.Properties.Resources._50cents;
this.fiftyCentsPictureBox.Location = new System.Drawing.Point(156, 219);
this.fiftyCentsPictureBox.Name = "fiftyCentsPictureBox";
this.fiftyCentsPictureBox.Size = new System.Drawing.Size(140, 184);
this.fiftyCentsPictureBox.TabIndex = 7;
this.fiftyCentsPictureBox.TabStop = false;
this.fiftyCentsPictureBox.Click += new System.EventHandler(this.fiftyCentsPictureBox_Click);
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(173, 411);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 23);
this.exitButton.TabIndex = 8;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(416, 446);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.fiftyCentsPictureBox);
this.Controls.Add(this.twentyFiveCentsPictureBox);
this.Controls.Add(this.tenCentsPictureBox);
this.Controls.Add(this.fiveCentsPictureBox);
this.Controls.Add(this.button1);
this.Controls.Add(this.totalLabel);
this.Controls.Add(this.outputDescriptionLabel);
this.Controls.Add(this.instructionLabel);
this.Name = "Form1";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.fiveCentsPictureBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tenCentsPictureBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.twentyFiveCentsPictureBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.fiftyCentsPictureBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Label instructionLabel;
private Label outputDescriptionLabel;
private Label totalLabel;
private Button button1;
private PictureBox fiveCentsPictureBox;
private PictureBox tenCentsPictureBox;
private PictureBox twentyFiveCentsPictureBox;
private PictureBox fiftyCentsPictureBox;
private Button exitButton;
}
}

View File

@@ -0,0 +1,61 @@
namespace lab3_3_5_CalebFontenot
{
public partial class Form1 : Form
{
// Constant fields
const decimal FIVE_CENTS_VALUE = 0.05m;
const decimal TEN_CENTS_VALUE = 0.10m;
const decimal TWENTY_FIVE_CENTS_VALUE = 0.25m;
const decimal FIFTY_CENTS_VALUE = 0.50m;
// Field variable to hold the total,
// initialized with 0.
private decimal total = 0m;
public Form1()
{
InitializeComponent();
}
private void fiveCentsPictureBox_Click(object sender, EventArgs e)
{
// Add the value of 5 cents to the total.
total += FIVE_CENTS_VALUE;
// Display the total, comatted as currency.
totalLabel.Text = total.ToString("c");
}
private void tenCentsPictureBox_Click(object sender, EventArgs e)
{
// Add the value of 10 cents to the total.
total += TEN_CENTS_VALUE;
// Display the total, comatted as currency.
totalLabel.Text = total.ToString("c");
}
private void twentyFiveCentsPictureBox_Click(object sender, EventArgs e)
{
// Add the value of 25 cents to the total.
total += TWENTY_FIVE_CENTS_VALUE;
// Display the total, comatted as currency.
totalLabel.Text = total.ToString("c");
}
private void fiftyCentsPictureBox_Click(object sender, EventArgs e)
{
// Add the value of 50 cents to the total.
total += FIFTY_CENTS_VALUE;
// Display the total, comatted as currency.
totalLabel.Text = total.ToString("c");
}
private void exitButton_Click(object sender, EventArgs e)
{
this.Close();
}
}
}

View File

@@ -0,0 +1,60 @@
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@@ -0,0 +1,17 @@
namespace lab3_3_5_CalebFontenot
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[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());
}
}
}

View File

@@ -0,0 +1,103 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
namespace lab3_3_5_CalebFontenot.Properties {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// 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() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[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("lab3_3_5_CalebFontenot.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _10cents {
get {
object obj = ResourceManager.GetObject("10cents", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _25cents {
get {
object obj = ResourceManager.GetObject("25cents", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _50cents {
get {
object obj = ResourceManager.GetObject("50cents", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap _5cents {
get {
object obj = ResourceManager.GetObject("5cents", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
}
}

View File

@@ -0,0 +1,133 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="5cents" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\5cents.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="10cents" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\10cents.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="25cents" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\25cents.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="50cents" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\50cents.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"lab3_3_5_CalebFontenot/1.0.0": {
"runtime": {
"lab3_3_5_CalebFontenot.dll": {}
}
}
}
},
"libraries": {
"lab3_3_5_CalebFontenot/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -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"
}
]
}
}

View File

@@ -0,0 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Update="Form1.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("lab3_3_5_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("lab3_3_5_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("lab3_3_5_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.

View File

@@ -0,0 +1 @@
09d8eb2e1f1a787c38eec9ae5ab8d7206f0930ae

View File

@@ -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 = lab3_3_5_CalebFontenot
build_property.ProjectDir = Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\

View File

@@ -0,0 +1,10 @@
// <auto-generated/>
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;

View File

@@ -0,0 +1,18 @@
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\bin\Debug\net6.0-windows\lab3_3_5_CalebFontenot.exe
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\bin\Debug\net6.0-windows\lab3_3_5_CalebFontenot.deps.json
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\bin\Debug\net6.0-windows\lab3_3_5_CalebFontenot.runtimeconfig.json
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\bin\Debug\net6.0-windows\lab3_3_5_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\bin\Debug\net6.0-windows\lab3_3_5_CalebFontenot.pdb
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.csproj.AssemblyReference.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.Form1.resources
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.Properties.Resources.resources
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.csproj.GenerateResource.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.AssemblyInfoInputs.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.AssemblyInfo.cs
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.csproj.CoreCompileInputs.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\refint\lab3_3_5_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.pdb
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\lab3_3_5_CalebFontenot.genruntimeconfig.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_5_CalebFontenot\lab3_3_5_CalebFontenot\obj\Debug\net6.0-windows\ref\lab3_3_5_CalebFontenot.dll

View File

@@ -0,0 +1,11 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {}
},
"libraries": {}
}

View File

@@ -0,0 +1,23 @@
{
"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",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1 @@
d6533a4f19ccbd0a18f4a7acbe8798fce6d23166

View File

@@ -0,0 +1,70 @@
{
"format": 1,
"restore": {
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot.csproj": {}
},
"projects": {
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot.csproj",
"projectName": "lab3_3_5_CalebFontenot",
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.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"
}
}
}
}
}

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\caleb\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\caleb\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,76 @@
{
"version": 3,
"targets": {
"net6.0-windows7.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net6.0-windows7.0": []
},
"packageFolders": {
"C:\\Users\\caleb\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot.csproj",
"projectName": "lab3_3_5_CalebFontenot",
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.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"
}
}
}
}

View File

@@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "P7XUWycG0lbLbUJHxTNsyVRir+yihthUTGZ5D1AEaOeEErMZa/bh44/EAKDR9XMTKhod4CpO9ssqUD3qOFs/iw==",
"success": true,
"projectFilePath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot\\lab3_3_5_CalebFontenot.csproj",
"expectedPackageFiles": [],
"logs": []
}