Finish Lab3_2

master
Caleb Fontenot 2022-09-06 21:45:08 +07:00
parent ccb2634aa8
commit 75d83330ea
144 changed files with 2163 additions and 6 deletions

@ -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_3_CalebFontenot", "lab3_3_3_CalebFontenot\lab3_3_3_CalebFontenot.csproj", "{4F23C606-BFDB-4E4F-9A3D-EC5422A056E4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4F23C606-BFDB-4E4F-9A3D-EC5422A056E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4F23C606-BFDB-4E4F-9A3D-EC5422A056E4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4F23C606-BFDB-4E4F-9A3D-EC5422A056E4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4F23C606-BFDB-4E4F-9A3D-EC5422A056E4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {493D4C87-970C-446E-A2F7-69DE25545D3D}
EndGlobalSection
EndGlobal

@ -0,0 +1,142 @@
namespace lab3_3_3_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.originalPricePromptLabel = new System.Windows.Forms.Label();
this.originalPriceTextBox = new System.Windows.Forms.TextBox();
this.discPercentagePromptLabel = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.discountPercentageTextBox = new System.Windows.Forms.TextBox();
this.salePriceLabel = new System.Windows.Forms.TextBox();
this.calculateButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// originalPricePromptLabel
//
this.originalPricePromptLabel.AutoSize = true;
this.originalPricePromptLabel.Location = new System.Drawing.Point(10, 15);
this.originalPricePromptLabel.Name = "originalPricePromptLabel";
this.originalPricePromptLabel.Size = new System.Drawing.Size(164, 15);
this.originalPricePromptLabel.TabIndex = 0;
this.originalPricePromptLabel.Text = "Enter the item\'s original price:";
//
// originalPriceTextBox
//
this.originalPriceTextBox.Location = new System.Drawing.Point(180, 12);
this.originalPriceTextBox.Name = "originalPriceTextBox";
this.originalPriceTextBox.Size = new System.Drawing.Size(100, 23);
this.originalPriceTextBox.TabIndex = 1;
//
// discPercentagePromptLabel
//
this.discPercentagePromptLabel.AutoSize = true;
this.discPercentagePromptLabel.Location = new System.Drawing.Point(6, 44);
this.discPercentagePromptLabel.Name = "discPercentagePromptLabel";
this.discPercentagePromptLabel.Size = new System.Drawing.Size(168, 15);
this.discPercentagePromptLabel.TabIndex = 2;
this.discPercentagePromptLabel.Text = "Enter the discount percentage:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(114, 87);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(60, 15);
this.label3.TabIndex = 3;
this.label3.Text = "Sale price:";
//
// discountPercentageTextBox
//
this.discountPercentageTextBox.Location = new System.Drawing.Point(180, 41);
this.discountPercentageTextBox.Name = "discountPercentageTextBox";
this.discountPercentageTextBox.Size = new System.Drawing.Size(100, 23);
this.discountPercentageTextBox.TabIndex = 4;
//
// salePriceLabel
//
this.salePriceLabel.Location = new System.Drawing.Point(180, 84);
this.salePriceLabel.Name = "salePriceLabel";
this.salePriceLabel.ReadOnly = true;
this.salePriceLabel.Size = new System.Drawing.Size(100, 23);
this.salePriceLabel.TabIndex = 5;
this.salePriceLabel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// calculateButton
//
this.calculateButton.Location = new System.Drawing.Point(65, 129);
this.calculateButton.Name = "calculateButton";
this.calculateButton.Size = new System.Drawing.Size(75, 39);
this.calculateButton.TabIndex = 6;
this.calculateButton.Text = "Calculate Sale Price";
this.calculateButton.UseVisualStyleBackColor = true;
this.calculateButton.Click += new System.EventHandler(this.calculateButton_Click);
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(146, 129);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 39);
this.exitButton.TabIndex = 7;
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(290, 182);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.calculateButton);
this.Controls.Add(this.salePriceLabel);
this.Controls.Add(this.discountPercentageTextBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.discPercentagePromptLabel);
this.Controls.Add(this.originalPriceTextBox);
this.Controls.Add(this.originalPricePromptLabel);
this.Name = "Form1";
this.Text = "Sale Price Calculator";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label originalPricePromptLabel;
private TextBox originalPriceTextBox;
private Label discPercentagePromptLabel;
private Label label3;
private TextBox discountPercentageTextBox;
private TextBox salePriceLabel;
private Button calculateButton;
private Button exitButton;
}
}

@ -0,0 +1,42 @@
namespace lab3_3_3_CalebFontenot
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void calculateButton_Click(object sender, EventArgs e)
{
decimal originalPrice; // the item's original price
decimal discountPercentage; // the discount percentage
decimal discountAmount; // the amount of discount
decimal salePrice; // the item's original price
// Get the item's original price.
originalPrice = decimal.Parse(originalPriceTextBox.Text);
// Get the discount percentage.
discountPercentage = decimal.Parse(discountPercentageTextBox.Text);
// Move the percentage's decimal point left two spaces.
discountPercentage = discountPercentage / 100;
// Calculate the amount of the discount.
discountAmount = originalPrice * discountPercentage;
// Calculate the sale price.
salePrice = originalPrice - discountAmount;
// Display the sale price.
salePriceLabel.Text = salePrice.ToString("c");
}
private void exitButton_Click(object sender, EventArgs e)
{
// Close the form.
this.Close();
}
}
}

@ -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>

@ -0,0 +1,17 @@
namespace lab3_3_3_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());
}
}
}

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

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

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

@ -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>

@ -11,12 +11,12 @@
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Lab3_3_3_CalebFontenot")]
[assembly: System.Reflection.AssemblyCompanyAttribute("lab3_3_3_CalebFontenot")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Lab3_3_3_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("Lab3_3_3_CalebFontenot")]
[assembly: System.Reflection.AssemblyProductAttribute("lab3_3_3_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("lab3_3_3_CalebFontenot")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]

@ -12,5 +12,5 @@ build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Lab3_3_3_CalebFontenot
build_property.ProjectDir = Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\Lab3_3_3_CalebFontenot\Lab3_3_3_CalebFontenot\
build_property.RootNamespace = lab3_3_3_CalebFontenot
build_property.ProjectDir = Z:\home\caleb\Documents\ASDV-C-Sharp\Lab3_2\lab3_3_3_CalebFontenot\lab3_3_3_CalebFontenot\

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

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

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

@ -0,0 +1,70 @@
{
"format": 1,
"restore": {
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot.csproj": {}
},
"projects": {
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot.csproj",
"projectName": "lab3_3_3_CalebFontenot",
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_3_CalebFontenot\\lab3_3_3_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"
}
}
}
}
}

@ -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>

@ -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" />

@ -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_3_CalebFontenot\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot.csproj",
"projectName": "lab3_3_3_CalebFontenot",
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_3_CalebFontenot\\lab3_3_3_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"
}
}
}
}

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "PjTfuAXdIZcn+HJ+jr9+EgDYlnNjpg5YVmYyEmz749en0kvZUtV3I81I4/6Q6coI6K93eAFEcx4cWZ6z+DI3EQ==",
"success": true,
"projectFilePath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot\\lab3_3_3_CalebFontenot.csproj",
"expectedPackageFiles": [],
"logs": []
}

@ -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_4_CalebFontenot", "lab3_3_4_CalebFontenot\lab3_3_4_CalebFontenot.csproj", "{A50EFA65-D948-4200-8C40-F970357899ED}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A50EFA65-D948-4200-8C40-F970357899ED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A50EFA65-D948-4200-8C40-F970357899ED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A50EFA65-D948-4200-8C40-F970357899ED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A50EFA65-D948-4200-8C40-F970357899ED}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {875DF9BF-E8CA-4B7C-BFF1-5D0CF8B30C88}
EndGlobalSection
EndGlobal

@ -0,0 +1,175 @@
namespace lab3_3_4_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.test1PromptLabel = new System.Windows.Forms.Label();
this.test2PromptLabel = new System.Windows.Forms.Label();
this.test3PromptLabel = new System.Windows.Forms.Label();
this.test1TextBox = new System.Windows.Forms.TextBox();
this.test2TextBox = new System.Windows.Forms.TextBox();
this.test3TextBox = new System.Windows.Forms.TextBox();
this.averageLabel = new System.Windows.Forms.TextBox();
this.outputDescriptionLabel = new System.Windows.Forms.Label();
this.calculateButton = new System.Windows.Forms.Button();
this.clearButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// test1PromptLabel
//
this.test1PromptLabel.AutoSize = true;
this.test1PromptLabel.Location = new System.Drawing.Point(26, 23);
this.test1PromptLabel.Name = "test1PromptLabel";
this.test1PromptLabel.Size = new System.Drawing.Size(39, 15);
this.test1PromptLabel.TabIndex = 0;
this.test1PromptLabel.Text = "Test 1:";
//
// test2PromptLabel
//
this.test2PromptLabel.AutoSize = true;
this.test2PromptLabel.Location = new System.Drawing.Point(26, 49);
this.test2PromptLabel.Name = "test2PromptLabel";
this.test2PromptLabel.Size = new System.Drawing.Size(39, 15);
this.test2PromptLabel.TabIndex = 1;
this.test2PromptLabel.Text = "Test 2:";
//
// test3PromptLabel
//
this.test3PromptLabel.AutoSize = true;
this.test3PromptLabel.Location = new System.Drawing.Point(26, 76);
this.test3PromptLabel.Name = "test3PromptLabel";
this.test3PromptLabel.Size = new System.Drawing.Size(39, 15);
this.test3PromptLabel.TabIndex = 2;
this.test3PromptLabel.Text = "Test 3:";
//
// test1TextBox
//
this.test1TextBox.Location = new System.Drawing.Point(71, 20);
this.test1TextBox.Name = "test1TextBox";
this.test1TextBox.Size = new System.Drawing.Size(155, 23);
this.test1TextBox.TabIndex = 3;
//
// test2TextBox
//
this.test2TextBox.Location = new System.Drawing.Point(71, 46);
this.test2TextBox.Name = "test2TextBox";
this.test2TextBox.Size = new System.Drawing.Size(155, 23);
this.test2TextBox.TabIndex = 4;
//
// test3TextBox
//
this.test3TextBox.Location = new System.Drawing.Point(71, 73);
this.test3TextBox.Name = "test3TextBox";
this.test3TextBox.Size = new System.Drawing.Size(155, 23);
this.test3TextBox.TabIndex = 5;
//
// averageLabel
//
this.averageLabel.Location = new System.Drawing.Point(126, 112);
this.averageLabel.Name = "averageLabel";
this.averageLabel.Size = new System.Drawing.Size(100, 23);
this.averageLabel.TabIndex = 6;
//
// outputDescriptionLabel
//
this.outputDescriptionLabel.AutoSize = true;
this.outputDescriptionLabel.Location = new System.Drawing.Point(12, 115);
this.outputDescriptionLabel.Name = "outputDescriptionLabel";
this.outputDescriptionLabel.Size = new System.Drawing.Size(108, 15);
this.outputDescriptionLabel.TabIndex = 7;
this.outputDescriptionLabel.Text = "Average Test Score:";
//
// calculateButton
//
this.calculateButton.Location = new System.Drawing.Point(12, 161);
this.calculateButton.Name = "calculateButton";
this.calculateButton.Size = new System.Drawing.Size(75, 39);
this.calculateButton.TabIndex = 8;
this.calculateButton.Text = "Calculate Average";
this.calculateButton.UseVisualStyleBackColor = true;
this.calculateButton.Click += new System.EventHandler(this.calculateButton_Click);
//
// clearButton
//
this.clearButton.Location = new System.Drawing.Point(93, 161);
this.clearButton.Name = "clearButton";
this.clearButton.Size = new System.Drawing.Size(75, 39);
this.clearButton.TabIndex = 9;
this.clearButton.Text = "Clear";
this.clearButton.UseVisualStyleBackColor = true;
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(174, 161);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 39);
this.exitButton.TabIndex = 10;
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(254, 222);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.clearButton);
this.Controls.Add(this.calculateButton);
this.Controls.Add(this.outputDescriptionLabel);
this.Controls.Add(this.averageLabel);
this.Controls.Add(this.test3TextBox);
this.Controls.Add(this.test2TextBox);
this.Controls.Add(this.test1TextBox);
this.Controls.Add(this.test3PromptLabel);
this.Controls.Add(this.test2PromptLabel);
this.Controls.Add(this.test1PromptLabel);
this.Name = "Form1";
this.Text = "Test Average";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label test1PromptLabel;
private Label test2PromptLabel;
private Label test3PromptLabel;
private TextBox test1TextBox;
private TextBox test2TextBox;
private TextBox test3TextBox;
private TextBox averageLabel;
private Label outputDescriptionLabel;
private Button calculateButton;
private Button clearButton;
private Button exitButton;
}
}

@ -0,0 +1,54 @@
namespace lab3_3_4_CalebFontenot
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void calculateButton_Click(object sender, EventArgs e)
{
try
{
double test1;
double test2;
double test3;
double average;
// Get the three test scores.
test1 = double.Parse(test1TextBox.Text);
test2 = double.Parse(test2TextBox.Text);
test3 = double.Parse(test3TextBox.Text);
// Calculate the average test score.
average = (test1 + test2 + test3) / 3.0;
// Display the average test score, with
// the output rounded to 1 decimal point.
averageLabel.Text = average.ToString("n1");
}
catch (Exception ex)
{
// Display the default error message.
MessageBox.Show(ex.Message);
}
}
private void clearButton_Click(object sender, EventArgs e)
{
// Clear the input and output controls.
test1TextBox.Text = "";
test2TextBox.Text = "";
test3TextBox.Text = "";
averageLabel.Text = "";
}
private void exitButton_Click(object sender, EventArgs e)
{
// Close the form.
this.Close();
}
}
}

@ -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>

@ -0,0 +1,17 @@
namespace lab3_3_4_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());
}
}
}

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

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

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

@ -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>

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

@ -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_4_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_4_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("lab3_3_4_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.

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

@ -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;

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

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

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

@ -0,0 +1,70 @@
{
"format": 1,
"restore": {
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot.csproj": {}
},
"projects": {
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot.csproj",
"projectName": "lab3_3_4_CalebFontenot",
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_4_CalebFontenot\\lab3_3_4_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"
}
}
}
}
}

@ -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>

@ -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" />

@ -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_4_CalebFontenot\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot.csproj",
"projectName": "lab3_3_4_CalebFontenot",
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_4_CalebFontenot\\lab3_3_4_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"
}
}
}
}

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "hF+1+RNkVNjb8wZWLNuLr+PpkGAEZSv9+1WOHKWto0Mgc7S5OJIAG/apsuWAQWoQK0xHRHhwXNkZWvgRu/jD+g==",
"success": true,
"projectFilePath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\Lab3_2\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot\\lab3_3_4_CalebFontenot.csproj",
"expectedPackageFiles": [],
"logs": []
}

@ -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

Some files were not shown because too many files have changed in this diff Show More