That's not a number, you doofus!

master
Caleb Fontenot 2022-09-06 13:10:25 +07:00
parent 513d038109
commit 5576351339
102 changed files with 1187 additions and 1 deletions

@ -1 +0,0 @@
,caleb,caleb-gaming-laptop-archlinux,01.09.2022 13:53,file:///home/caleb/.config/libreoffice/4;

@ -0,0 +1,142 @@
namespace TipTaxTotal_CalebFontenot
{
partial class TipTaxTotal
{
/// <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.subTotalTextbox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.tipTextBox = new System.Windows.Forms.TextBox();
this.salesTaxTextBox = new System.Windows.Forms.TextBox();
this.calculateButton = new System.Windows.Forms.Button();
this.outputLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// subTotalTextbox
//
this.subTotalTextbox.Location = new System.Drawing.Point(214, 30);
this.subTotalTextbox.Name = "subTotalTextbox";
this.subTotalTextbox.Size = new System.Drawing.Size(100, 23);
this.subTotalTextbox.TabIndex = 0;
this.subTotalTextbox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(80, 33);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(103, 15);
this.label1.TabIndex = 1;
this.label1.Text = "Enter the subtotal:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(39, 69);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(144, 15);
this.label2.TabIndex = 2;
this.label2.Text = "Enter the tip (percentage):";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(9, 101);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(174, 15);
this.label3.TabIndex = 3;
this.label3.Text = "Enter the sales tax (percentage):";
//
// tipTextBox
//
this.tipTextBox.Location = new System.Drawing.Point(214, 66);
this.tipTextBox.Name = "tipTextBox";
this.tipTextBox.Size = new System.Drawing.Size(100, 23);
this.tipTextBox.TabIndex = 4;
this.tipTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// salesTaxTextBox
//
this.salesTaxTextBox.Location = new System.Drawing.Point(214, 98);
this.salesTaxTextBox.Name = "salesTaxTextBox";
this.salesTaxTextBox.Size = new System.Drawing.Size(100, 23);
this.salesTaxTextBox.TabIndex = 5;
this.salesTaxTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// calculateButton
//
this.calculateButton.Location = new System.Drawing.Point(130, 131);
this.calculateButton.Name = "calculateButton";
this.calculateButton.Size = new System.Drawing.Size(75, 23);
this.calculateButton.TabIndex = 6;
this.calculateButton.Text = "Calculate!";
this.calculateButton.UseVisualStyleBackColor = true;
this.calculateButton.Click += new System.EventHandler(this.calculateButton_Click);
//
// outputLabel
//
this.outputLabel.Location = new System.Drawing.Point(9, 157);
this.outputLabel.Name = "outputLabel";
this.outputLabel.Size = new System.Drawing.Size(305, 23);
this.outputLabel.TabIndex = 7;
this.outputLabel.Text = "Your total will be displayed here.";
this.outputLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// TipTaxTotal
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(326, 189);
this.Controls.Add(this.outputLabel);
this.Controls.Add(this.calculateButton);
this.Controls.Add(this.salesTaxTextBox);
this.Controls.Add(this.tipTextBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.subTotalTextbox);
this.Name = "TipTaxTotal";
this.Text = "Tip, Tax, Total";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private TextBox subTotalTextbox;
private Label label1;
private Label label2;
private Label label3;
private TextBox tipTextBox;
private TextBox salesTaxTextBox;
private Button calculateButton;
private Label outputLabel;
}
}

@ -0,0 +1,66 @@
using System.Linq.Expressions;
namespace TipTaxTotal_CalebFontenot
{
public partial class TipTaxTotal : Form
{
public TipTaxTotal()
{
InitializeComponent();
}
private void calculateButton_Click(object sender, EventArgs e)
{
// Setup Vars
double tip;
double salesTax;
double subTotal;
double total;
double salesTaxAmount;
double tipAmount;
try
{
// Get data
tip = double.Parse(tipTextBox.Text);
salesTax = double.Parse(salesTaxTextBox.Text);
subTotal = double.Parse(subTotalTextbox.Text);
// Calculate
// Check if tip is a decimal. If it isn't, turn it into one.
if (tip > .99)
{
while (tip > 1)
{
tip = tip / 10;
}
}
if (salesTax > .99)
{
while (salesTax > 1)
{
salesTax = salesTax / 10;
}
}
tipAmount = subTotal * tip;
salesTaxAmount = subTotal * salesTax;
total = subTotal + (tipAmount + salesTaxAmount);
//Output
outputLabel.Text = "Your total is $" + total;
salesTaxTextBox.Text = salesTax.ToString();
tipTextBox.Text = tip.ToString();
}
catch
{
MessageBox.Show("That's not a number, you doofus!");
}
}
}
}

@ -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 TipTaxTotal_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 TipTaxTotal());
}
}
}

@ -0,0 +1,18 @@
<?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\win-x64\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
<TargetFramework>net6.0-windows</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>false</PublishSingleFile>
<PublishReadyToRun>false</PublishReadyToRun>
</PropertyGroup>
</Project>

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<History>False|2022-09-06T20:06:02.4064454Z;True|2022-09-06T13:02:51.5514003-07:00;</History>
<LastFailureDetails />
</PropertyGroup>
</Project>

@ -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,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_LastSelectedProfileId>Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
</PropertyGroup>
<ItemGroup>
<Compile Update="Form1.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32804.467
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TipTaxTotal_CalebFontenot", "TipTaxTotal_CalebFontenot.csproj", "{E0D97F10-A482-498E-BC40-4D313245F073}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E0D97F10-A482-498E-BC40-4D313245F073}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E0D97F10-A482-498E-BC40-4D313245F073}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E0D97F10-A482-498E-BC40-4D313245F073}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E0D97F10-A482-498E-BC40-4D313245F073}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9A6C5631-0E3C-4ACA-BEE6-B1F8EB5FF522}
EndGlobalSection
EndGlobal

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

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

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

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

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

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

@ -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("TipTaxTotal_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("TipTaxTotal_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("TipTaxTotal_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 = TipTaxTotal_CalebFontenot
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_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:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.exe
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.deps.json
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.runtimeconfig.json
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.csproj.AssemblyReference.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.TipTaxTotal.resources
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.csproj.GenerateResource.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.AssemblyInfoInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.AssemblyInfo.cs
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.csproj.CoreCompileInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\refint\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\TipTaxTotal_CalebFontenot.genruntimeconfig.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Debug\net6.0-windows\ref\TipTaxTotal_CalebFontenot.dll

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

@ -0,0 +1,22 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\caleb\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\caleb\\.nuget\\packages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

@ -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("TipTaxTotal_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("TipTaxTotal_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("TipTaxTotal_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 = TipTaxTotal_CalebFontenot
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_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:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\TipTaxTotal_CalebFontenot.exe
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\TipTaxTotal_CalebFontenot.deps.json
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\TipTaxTotal_CalebFontenot.runtimeconfig.json
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\TipTaxTotal_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.csproj.AssemblyReference.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.TipTaxTotal.resources
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.csproj.GenerateResource.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.AssemblyInfoInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.AssemblyInfo.cs
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.csproj.CoreCompileInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\refint\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\TipTaxTotal_CalebFontenot.genruntimeconfig.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\ref\TipTaxTotal_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"
],
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

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

@ -0,0 +1,5 @@
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\publish\linux-x64\TipTaxTotal_CalebFontenot
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\publish\linux-x64\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\publish\linux-x64\TipTaxTotal_CalebFontenot.deps.json
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\publish\linux-x64\TipTaxTotal_CalebFontenot.runtimeconfig.json
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\publish\linux-x64\TipTaxTotal_CalebFontenot.pdb

@ -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("TipTaxTotal_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("TipTaxTotal_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("TipTaxTotal_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 = TipTaxTotal_CalebFontenot
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_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:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.deps.json
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.runtimeconfig.json
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\bin\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.csproj.AssemblyReference.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.TipTaxTotal.resources
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.csproj.GenerateResource.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.AssemblyInfoInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.AssemblyInfo.cs
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.csproj.CoreCompileInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\refint\TipTaxTotal_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\TipTaxTotal_CalebFontenot.genruntimeconfig.cache
Z:\media\DataEXT4\Documents\ASDV C#\MP1\TipTaxTotal_CalebFontenot\obj\Release\net6.0-windows\linux-x64\ref\TipTaxTotal_CalebFontenot.dll

@ -0,0 +1,66 @@
{
"format": 1,
"restore": {
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj": {}
},
"projects": {
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj",
"projectName": "TipTaxTotal_CalebFontenot",
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,15 @@
<?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\</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\" />
</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,71 @@
{
"version": 3,
"targets": {
"net6.0-windows7.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net6.0-windows7.0": []
},
"packageFolders": {
"C:\\Users\\caleb\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj",
"projectName": "TipTaxTotal_CalebFontenot",
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
}
}
}
}

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "1cHe18GSclzlaAe6tmxW28amo4+vDRnDYMLv0F5XDFvsx8BSq+11buKRrEP0A9+klHIJMfG376kBjkyR8X341g==",
"success": true,
"projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj",
"expectedPackageFiles": [],
"logs": []
}

@ -0,0 +1,85 @@
{
"format": 1,
"restore": {
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj": {}
},
"projects": {
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj",
"projectName": "TipTaxTotal_CalebFontenot",
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\obj\\publish\\linux-x64\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[6.0.8, 6.0.8]"
},
{
"name": "Microsoft.NETCore.App.Host.linux-x64",
"version": "[6.0.8, 6.0.8]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[6.0.8, 6.0.8]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
}
}
}

@ -0,0 +1,15 @@
<?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\</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\" />
</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,91 @@
{
"version": 3,
"targets": {
"net6.0-windows7.0": {},
"net6.0-windows7.0/linux-x64": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net6.0-windows7.0": []
},
"packageFolders": {
"C:\\Users\\caleb\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj",
"projectName": "TipTaxTotal_CalebFontenot",
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\TipTaxTotal_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\MP1\\TipTaxTotal_CalebFontenot\\obj\\publish\\linux-x64\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.linux-x64",
"version": "[6.0.8, 6.0.8]"
},
{
"name": "Microsoft.NETCore.App.Host.linux-x64",
"version": "[6.0.8, 6.0.8]"
},
{
"name": "Microsoft.NETCore.App.Runtime.linux-x64",
"version": "[6.0.8, 6.0.8]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
}
},
"runtimes": {
"linux-x64": {
"#import": []
}
}
}
}

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