This commit is contained in:
2022-09-20 12:35:24 -05:00
parent b90ebbb217
commit e77001d537
196 changed files with 1526 additions and 80 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}") = "Problem4WorkshopSelector_CalebFontenot", "Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot.csproj", "{3160063B-A5F8-4776-B790-7243D4B68124}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3160063B-A5F8-4776-B790-7243D4B68124}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3160063B-A5F8-4776-B790-7243D4B68124}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3160063B-A5F8-4776-B790-7243D4B68124}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3160063B-A5F8-4776-B790-7243D4B68124}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D60DB71E-B0C6-416B-91F6-EF6A8B683904}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,230 @@
namespace Problem4WorkshopSelector_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.groupBox1 = new System.Windows.Forms.GroupBox();
this.workshopListBox = new System.Windows.Forms.ListBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.locationListBox = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.registrationCostTextBox = new System.Windows.Forms.TextBox();
this.lodgingCostTextBox = new System.Windows.Forms.TextBox();
this.totalCostTextBox = new System.Windows.Forms.TextBox();
this.calculateButton = new System.Windows.Forms.Button();
this.closeButton = new System.Windows.Forms.Button();
this.selectedWorkshopLabel = new System.Windows.Forms.Label();
this.selectedLocationLabel = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.workshopListBox);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(132, 116);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Select a Workshop.";
//
// workshopListBox
//
this.workshopListBox.FormattingEnabled = true;
this.workshopListBox.ItemHeight = 15;
this.workshopListBox.Items.AddRange(new object[] {
"Handling Stress",
"Time Management",
"Supervision Skills",
"Negotiation",
"How to Interview"});
this.workshopListBox.Location = new System.Drawing.Point(6, 16);
this.workshopListBox.Name = "workshopListBox";
this.workshopListBox.Size = new System.Drawing.Size(114, 94);
this.workshopListBox.TabIndex = 0;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.locationListBox);
this.groupBox2.Location = new System.Drawing.Point(150, 12);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(164, 116);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Select a Location.";
//
// locationListBox
//
this.locationListBox.FormattingEnabled = true;
this.locationListBox.ItemHeight = 15;
this.locationListBox.Items.AddRange(new object[] {
"Austin",
"Chicago",
"Dallas",
"Orlando",
"Phoenix",
"Raleigh"});
this.locationListBox.Location = new System.Drawing.Point(6, 16);
this.locationListBox.Name = "locationListBox";
this.locationListBox.Size = new System.Drawing.Size(147, 94);
this.locationListBox.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(320, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(100, 15);
this.label1.TabIndex = 2;
this.label1.Text = "Registration Cost:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(339, 44);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(81, 15);
this.label2.TabIndex = 3;
this.label2.Text = "Lodging Cost:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(358, 73);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(62, 15);
this.label3.TabIndex = 4;
this.label3.Text = "Total Cost:";
//
// registrationCostTextBox
//
this.registrationCostTextBox.Location = new System.Drawing.Point(427, 12);
this.registrationCostTextBox.Name = "registrationCostTextBox";
this.registrationCostTextBox.ReadOnly = true;
this.registrationCostTextBox.Size = new System.Drawing.Size(100, 23);
this.registrationCostTextBox.TabIndex = 5;
//
// lodgingCostTextBox
//
this.lodgingCostTextBox.Location = new System.Drawing.Point(427, 41);
this.lodgingCostTextBox.Name = "lodgingCostTextBox";
this.lodgingCostTextBox.ReadOnly = true;
this.lodgingCostTextBox.Size = new System.Drawing.Size(100, 23);
this.lodgingCostTextBox.TabIndex = 6;
//
// totalCostTextBox
//
this.totalCostTextBox.Location = new System.Drawing.Point(427, 70);
this.totalCostTextBox.Name = "totalCostTextBox";
this.totalCostTextBox.ReadOnly = true;
this.totalCostTextBox.Size = new System.Drawing.Size(100, 23);
this.totalCostTextBox.TabIndex = 7;
//
// calculateButton
//
this.calculateButton.Location = new System.Drawing.Point(320, 105);
this.calculateButton.Name = "calculateButton";
this.calculateButton.Size = new System.Drawing.Size(100, 23);
this.calculateButton.TabIndex = 8;
this.calculateButton.Text = "Calculate!";
this.calculateButton.UseVisualStyleBackColor = true;
this.calculateButton.Click += new System.EventHandler(this.calculateButton_Click);
//
// closeButton
//
this.closeButton.Location = new System.Drawing.Point(427, 105);
this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(101, 23);
this.closeButton.TabIndex = 9;
this.closeButton.Text = "Close";
this.closeButton.UseVisualStyleBackColor = true;
this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
//
// selectedWorkshopLabel
//
this.selectedWorkshopLabel.Location = new System.Drawing.Point(12, 131);
this.selectedWorkshopLabel.Name = "selectedWorkshopLabel";
this.selectedWorkshopLabel.Size = new System.Drawing.Size(132, 38);
this.selectedWorkshopLabel.TabIndex = 10;
this.selectedWorkshopLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// selectedLocationLabel
//
this.selectedLocationLabel.Location = new System.Drawing.Point(150, 131);
this.selectedLocationLabel.Name = "selectedLocationLabel";
this.selectedLocationLabel.Size = new System.Drawing.Size(164, 38);
this.selectedLocationLabel.TabIndex = 11;
this.selectedLocationLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(540, 174);
this.Controls.Add(this.selectedLocationLabel);
this.Controls.Add(this.selectedWorkshopLabel);
this.Controls.Add(this.closeButton);
this.Controls.Add(this.calculateButton);
this.Controls.Add(this.totalCostTextBox);
this.Controls.Add(this.lodgingCostTextBox);
this.Controls.Add(this.registrationCostTextBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "Form1";
this.Text = "Workshop Selector - Caleb Fontenot";
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private GroupBox groupBox1;
private ListBox workshopListBox;
private GroupBox groupBox2;
private ListBox locationListBox;
private Label label1;
private Label label2;
private Label label3;
private TextBox registrationCostTextBox;
private TextBox lodgingCostTextBox;
private TextBox totalCostTextBox;
private Button calculateButton;
private Button closeButton;
private Label selectedWorkshopLabel;
private Label selectedLocationLabel;
}
}

View File

@@ -0,0 +1,88 @@
namespace Problem4WorkshopSelector_CalebFontenot
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void closeButton_Click(object sender, EventArgs e)
{
this.Close();
}
private void calculateButton_Click(object sender, EventArgs e)
{
// Define variables
double daysRegistration = 0,
registrationFee = 0,
lodgingPrice = 0,
total = 0;
string location,
workshop;
// Obtain data
location = locationListBox.SelectedItem.ToString();
workshop = workshopListBox.SelectedItem.ToString();
selectedLocationLabel.Text = "Selected Item:\n"+location;
selectedWorkshopLabel.Text = "Selected Item:\n"+workshop;
// Determine Workshop information
switch(workshop)
{
case "Handling Stress":
daysRegistration = 3;
registrationFee = 1000;
break;
case "Time Management":
daysRegistration = 3;
registrationFee = 800;
break;
case "Supervision Skills":
daysRegistration = 3;
registrationFee = 1500;
break;
case "Negotiation":
daysRegistration = 5;
registrationFee = 1300;
break;
case "How to Interview":
daysRegistration = 1;
registrationFee = 500;
break;
}
// Determine location information
switch(location)
{
case "Austin":
lodgingPrice = 150;
break;
case "Chicago":
lodgingPrice = 225;
break;
case "Dallas":
lodgingPrice = 175;
break;
case "Orlando":
lodgingPrice = 300;
break;
case "Phoenix":
lodgingPrice = 175;
break;
case "Raleigh":
lodgingPrice = 150;
break;
}
// Calculate!
lodgingPrice = lodgingPrice * daysRegistration;
total = registrationFee + lodgingPrice;
//Output
lodgingCostTextBox.Text = lodgingPrice.ToString("c");
registrationCostTextBox.Text = registrationFee.ToString("c");
totalCostTextBox.Text = total.ToString("c");
}
}
}

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

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_LastSelectedProfileId>Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
</PropertyGroup>
<ItemGroup>
<Compile Update="Form1.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>

View File

@@ -0,0 +1,17 @@
namespace Problem4WorkshopSelector_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,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net6.0-windows\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<History>True|2022-09-17T17:58:03.8156801Z;</History>
<LastFailureDetails />
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Problem4WorkshopSelector_CalebFontenot/1.0.0": {
"runtime": {
"Problem4WorkshopSelector_CalebFontenot.dll": {}
}
}
}
},
"libraries": {
"Problem4WorkshopSelector_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,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Problem4WorkshopSelector_CalebFontenot/1.0.0": {
"runtime": {
"Problem4WorkshopSelector_CalebFontenot.dll": {}
}
}
}
},
"libraries": {
"Problem4WorkshopSelector_CalebFontenot/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -0,0 +1,18 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}

View File

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

View File

@@ -0,0 +1,18 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}

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("Problem4WorkshopSelector_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("Problem4WorkshopSelector_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("Problem4WorkshopSelector_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,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 = Problem4WorkshopSelector_CalebFontenot
build_property.ProjectDir = Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_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,34 @@
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.exe
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.deps.json
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.runtimeconfig.json
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.pdb
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.csproj.AssemblyReference.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.Form1.resources
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.csproj.GenerateResource.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.AssemblyInfoInputs.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.AssemblyInfo.cs
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.csproj.CoreCompileInputs.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\refint\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.pdb
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.genruntimeconfig.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\ref\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.exe
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.deps.json
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.runtimeconfig.json
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.pdb
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.csproj.AssemblyReference.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.Form1.resources
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.csproj.GenerateResource.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.AssemblyInfoInputs.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.AssemblyInfo.cs
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.csproj.CoreCompileInputs.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\refint\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.pdb
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.genruntimeconfig.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\MP2\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Debug\net6.0-windows\ref\Problem4WorkshopSelector_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,70 @@
{
"format": 1,
"restore": {
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP2\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot.csproj": {}
},
"projects": {
"Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP2\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP2\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot.csproj",
"projectName": "Problem4WorkshopSelector_CalebFontenot",
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP2\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP2\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_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,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("Problem4WorkshopSelector_CalebFontenot")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Problem4WorkshopSelector_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("Problem4WorkshopSelector_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,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 = Problem4WorkshopSelector_CalebFontenot
build_property.ProjectDir = Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_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,17 @@
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.exe
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.deps.json
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.runtimeconfig.json
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.pdb
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.csproj.AssemblyReference.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.Form1.resources
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.csproj.GenerateResource.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.AssemblyInfoInputs.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.AssemblyInfo.cs
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.csproj.CoreCompileInputs.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\refint\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.pdb
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\Problem4WorkshopSelector_CalebFontenot.genruntimeconfig.cache
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\obj\Release\net6.0-windows\ref\Problem4WorkshopSelector_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,24 @@
{
"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": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1,5 @@
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\publish\Problem4WorkshopSelector_CalebFontenot.exe
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\publish\Problem4WorkshopSelector_CalebFontenot.dll
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\publish\Problem4WorkshopSelector_CalebFontenot.deps.json
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\publish\Problem4WorkshopSelector_CalebFontenot.runtimeconfig.json
Z:\home\caleb\Documents\ASDV-C-Sharp\Lab4\Problem4WorkshopSelector_CalebFontenot\Problem4WorkshopSelector_CalebFontenot\bin\Release\net6.0-windows\publish\Problem4WorkshopSelector_CalebFontenot.pdb

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\\MP2\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot.csproj",
"projectName": "Problem4WorkshopSelector_CalebFontenot",
"projectPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP2\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP2\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_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": "C1Ci+7kT6wx8ieUMEpzmnQvjoMk6pxcDVdbyL0iBG992Bi8eYllprisS/QlZ3zR/CM7srtencEqifXznwP8UGQ==",
"success": true,
"projectFilePath": "Z:\\home\\caleb\\Documents\\ASDV-C-Sharp\\MP2\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot\\Problem4WorkshopSelector_CalebFontenot.csproj",
"expectedPackageFiles": [],
"logs": []
}