diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:44:36 +0000 |
commit | 8511ba188088dacf6e0429f78d45a7d083339876 (patch) | |
tree | d205ecfe91b59609d41db5fdd7d576f1c4fe5b59 | |
parent | future value 1 (diff) | |
download | cs-8511ba188088dacf6e0429f78d45a7d083339876.tar cs-8511ba188088dacf6e0429f78d45a7d083339876.tar.gz cs-8511ba188088dacf6e0429f78d45a7d083339876.tar.bz2 cs-8511ba188088dacf6e0429f78d45a7d083339876.tar.xz cs-8511ba188088dacf6e0429f78d45a7d083339876.zip |
invoice total 2
43 files changed, 796 insertions, 0 deletions
diff --git a/invoice_total2/.vs/InvoiceTotal/DesignTimeBuild/.dtbcache.v2 b/invoice_total2/.vs/InvoiceTotal/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..7089dc9 --- /dev/null +++ b/invoice_total2/.vs/InvoiceTotal/DesignTimeBuild/.dtbcache.v2 Binary files differdiff --git a/invoice_total2/.vs/InvoiceTotal/FileContentIndex/1e8c5543-99f6-410d-bf92-defb9dba6b45.vsidx b/invoice_total2/.vs/InvoiceTotal/FileContentIndex/1e8c5543-99f6-410d-bf92-defb9dba6b45.vsidx new file mode 100644 index 0000000..81d2b58 --- /dev/null +++ b/invoice_total2/.vs/InvoiceTotal/FileContentIndex/1e8c5543-99f6-410d-bf92-defb9dba6b45.vsidx Binary files differdiff --git a/invoice_total2/.vs/InvoiceTotal/FileContentIndex/3af197ac-8a94-41f0-a729-2de939b53bcc.vsidx b/invoice_total2/.vs/InvoiceTotal/FileContentIndex/3af197ac-8a94-41f0-a729-2de939b53bcc.vsidx new file mode 100644 index 0000000..87267f4 --- /dev/null +++ b/invoice_total2/.vs/InvoiceTotal/FileContentIndex/3af197ac-8a94-41f0-a729-2de939b53bcc.vsidx Binary files differdiff --git a/invoice_total2/.vs/InvoiceTotal/v17/.futdcache.v1 b/invoice_total2/.vs/InvoiceTotal/v17/.futdcache.v1 new file mode 100644 index 0000000..181280a --- /dev/null +++ b/invoice_total2/.vs/InvoiceTotal/v17/.futdcache.v1 Binary files differdiff --git a/invoice_total2/.vs/InvoiceTotal/v17/.futdcache.v2 b/invoice_total2/.vs/InvoiceTotal/v17/.futdcache.v2 new file mode 100644 index 0000000..179c808 --- /dev/null +++ b/invoice_total2/.vs/InvoiceTotal/v17/.futdcache.v2 Binary files differdiff --git a/invoice_total2/.vs/InvoiceTotal/v17/.suo b/invoice_total2/.vs/InvoiceTotal/v17/.suo new file mode 100644 index 0000000..970f4d2 --- /dev/null +++ b/invoice_total2/.vs/InvoiceTotal/v17/.suo Binary files differdiff --git a/invoice_total2/.vs/ProjectEvaluation/invoicetotal.metadata.v7.bin b/invoice_total2/.vs/ProjectEvaluation/invoicetotal.metadata.v7.bin new file mode 100644 index 0000000..faf1f72 --- /dev/null +++ b/invoice_total2/.vs/ProjectEvaluation/invoicetotal.metadata.v7.bin Binary files differdiff --git a/invoice_total2/.vs/ProjectEvaluation/invoicetotal.projects.v7.bin b/invoice_total2/.vs/ProjectEvaluation/invoicetotal.projects.v7.bin new file mode 100644 index 0000000..33409f1 --- /dev/null +++ b/invoice_total2/.vs/ProjectEvaluation/invoicetotal.projects.v7.bin Binary files differdiff --git a/invoice_total2/InvoiceTotal.sln b/invoice_total2/InvoiceTotal.sln new file mode 100644 index 0000000..85e4795 --- /dev/null +++ b/invoice_total2/InvoiceTotal.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30413.136 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InvoiceTotal", "InvoiceTotal\InvoiceTotal.csproj", "{9913F705-D6F0-491A-B888-8DBB48A805BC}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9913F705-D6F0-491A-B888-8DBB48A805BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9913F705-D6F0-491A-B888-8DBB48A805BC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9913F705-D6F0-491A-B888-8DBB48A805BC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9913F705-D6F0-491A-B888-8DBB48A805BC}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {00BA4863-AA24-4581-81B2-A0BEEC1EB592} + EndGlobalSection +EndGlobal diff --git a/invoice_total2/InvoiceTotal/InvoiceTotal.csproj b/invoice_total2/InvoiceTotal/InvoiceTotal.csproj new file mode 100644 index 0000000..7b05c62 --- /dev/null +++ b/invoice_total2/InvoiceTotal/InvoiceTotal.csproj @@ -0,0 +1,9 @@ +<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> + + <PropertyGroup> + <OutputType>WinExe</OutputType> + <TargetFramework>netcoreapp3.1</TargetFramework> + <UseWindowsForms>true</UseWindowsForms> + </PropertyGroup> + +</Project> \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/InvoiceTotal.csproj.user b/invoice_total2/InvoiceTotal/InvoiceTotal.csproj.user new file mode 100644 index 0000000..b9e89c1 --- /dev/null +++ b/invoice_total2/InvoiceTotal/InvoiceTotal.csproj.user @@ -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="frmInvoiceTotal3.cs"> + <SubType>Form</SubType> + </Compile> + </ItemGroup> +</Project> \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/Program.cs b/invoice_total2/InvoiceTotal/Program.cs new file mode 100644 index 0000000..a2a3ff0 --- /dev/null +++ b/invoice_total2/InvoiceTotal/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace InvoiceTotal +{ + static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmInvoiceTotal3()); + } + } +} diff --git a/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.deps.json b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.deps.json new file mode 100644 index 0000000..4cb5c27 --- /dev/null +++ b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": { + "InvoiceTotal/1.0.0": { + "runtime": { + "InvoiceTotal.dll": {} + } + } + } + }, + "libraries": { + "InvoiceTotal/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.dll b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.dll new file mode 100644 index 0000000..fda62e4 --- /dev/null +++ b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.dll Binary files differdiff --git a/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.exe b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.exe new file mode 100644 index 0000000..fe09c33 --- /dev/null +++ b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.exe Binary files differdiff --git a/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.pdb b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.pdb new file mode 100644 index 0000000..c270763 --- /dev/null +++ b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.pdb Binary files differdiff --git a/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.runtimeconfig.dev.json b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.runtimeconfig.dev.json new file mode 100644 index 0000000..214bf78 --- /dev/null +++ b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.runtimeconfig.dev.json @@ -0,0 +1,8 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\User\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\User\\.nuget\\packages" + ] + } +} \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.runtimeconfig.json b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.runtimeconfig.json new file mode 100644 index 0000000..9b3a644 --- /dev/null +++ b/invoice_total2/InvoiceTotal/bin/Debug/netcoreapp3.1/InvoiceTotal.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "3.1.0" + } + } +} \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/frmInvoiceTotal3.Designer.cs b/invoice_total2/InvoiceTotal/frmInvoiceTotal3.Designer.cs new file mode 100644 index 0000000..10ea010 --- /dev/null +++ b/invoice_total2/InvoiceTotal/frmInvoiceTotal3.Designer.cs @@ -0,0 +1,206 @@ +namespace InvoiceTotal +{ + partial class frmInvoiceTotal3 + { + /// <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() + { + txtCustomerType = new System.Windows.Forms.TextBox(); + label5 = new System.Windows.Forms.Label(); + label4 = new System.Windows.Forms.Label(); + btnExit = new System.Windows.Forms.Button(); + btnCalculate = new System.Windows.Forms.Button(); + txtSubtotal = new System.Windows.Forms.TextBox(); + label3 = new System.Windows.Forms.Label(); + label2 = new System.Windows.Forms.Label(); + label1 = new System.Windows.Forms.Label(); + txtDiscountPercent = new System.Windows.Forms.TextBox(); + txtDiscountAmount = new System.Windows.Forms.TextBox(); + txtTotal = new System.Windows.Forms.TextBox(); + SuspendLayout(); + // + // txtCustomerType + // + txtCustomerType.Location = new System.Drawing.Point(147, 10); + txtCustomerType.Margin = new System.Windows.Forms.Padding(4); + txtCustomerType.Name = "txtCustomerType"; + txtCustomerType.Size = new System.Drawing.Size(98, 23); + txtCustomerType.TabIndex = 1; + // + // label5 + // + label5.Location = new System.Drawing.Point(25, 10); + label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + label5.Name = "label5"; + label5.Size = new System.Drawing.Size(109, 23); + label5.TabIndex = 0; + label5.Text = "Customer &type:"; + label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label4 + // + label4.Location = new System.Drawing.Point(25, 75); + label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + label4.Name = "label4"; + label4.Size = new System.Drawing.Size(109, 23); + label4.TabIndex = 4; + label4.Text = "Discount percent:"; + label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // btnExit + // + btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel; + btnExit.Location = new System.Drawing.Point(158, 186); + btnExit.Margin = new System.Windows.Forms.Padding(4); + btnExit.Name = "btnExit"; + btnExit.Size = new System.Drawing.Size(88, 26); + btnExit.TabIndex = 11; + btnExit.Text = "E&xit"; + btnExit.Click += btnExit_Click; + // + // btnCalculate + // + btnCalculate.Location = new System.Drawing.Point(48, 186); + btnCalculate.Margin = new System.Windows.Forms.Padding(4); + btnCalculate.Name = "btnCalculate"; + btnCalculate.Size = new System.Drawing.Size(88, 26); + btnCalculate.TabIndex = 10; + btnCalculate.Text = "&Calculate"; + btnCalculate.Click += btnCalculate_Click; + // + // txtSubtotal + // + txtSubtotal.Location = new System.Drawing.Point(147, 43); + txtSubtotal.Margin = new System.Windows.Forms.Padding(4); + txtSubtotal.Name = "txtSubtotal"; + txtSubtotal.Size = new System.Drawing.Size(98, 23); + txtSubtotal.TabIndex = 3; + // + // label3 + // + label3.Location = new System.Drawing.Point(25, 140); + label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + label3.Name = "label3"; + label3.Size = new System.Drawing.Size(109, 23); + label3.TabIndex = 8; + label3.Text = "Total:"; + label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label2 + // + label2.Location = new System.Drawing.Point(25, 107); + label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + label2.Name = "label2"; + label2.Size = new System.Drawing.Size(109, 23); + label2.TabIndex = 6; + label2.Text = "Discount amount:"; + label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // label1 + // + label1.Location = new System.Drawing.Point(25, 43); + label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); + label1.Name = "label1"; + label1.Size = new System.Drawing.Size(109, 23); + label1.TabIndex = 2; + label1.Text = "&Subtotal:"; + label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // txtDiscountPercent + // + txtDiscountPercent.Location = new System.Drawing.Point(147, 74); + txtDiscountPercent.Margin = new System.Windows.Forms.Padding(4); + txtDiscountPercent.Name = "txtDiscountPercent"; + txtDiscountPercent.ReadOnly = true; + txtDiscountPercent.Size = new System.Drawing.Size(98, 23); + txtDiscountPercent.TabIndex = 5; + txtDiscountPercent.TabStop = false; + // + // txtDiscountAmount + // + txtDiscountAmount.Location = new System.Drawing.Point(147, 107); + txtDiscountAmount.Margin = new System.Windows.Forms.Padding(4); + txtDiscountAmount.Name = "txtDiscountAmount"; + txtDiscountAmount.ReadOnly = true; + txtDiscountAmount.Size = new System.Drawing.Size(98, 23); + txtDiscountAmount.TabIndex = 7; + txtDiscountAmount.TabStop = false; + // + // txtTotal + // + txtTotal.Location = new System.Drawing.Point(147, 141); + txtTotal.Margin = new System.Windows.Forms.Padding(4); + txtTotal.Name = "txtTotal"; + txtTotal.ReadOnly = true; + txtTotal.Size = new System.Drawing.Size(98, 23); + txtTotal.TabIndex = 9; + txtTotal.TabStop = false; + // + // frmInvoiceTotal3 + // + AcceptButton = btnCalculate; + AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + CancelButton = btnExit; + ClientSize = new System.Drawing.Size(277, 229); + Controls.Add(txtTotal); + Controls.Add(txtDiscountAmount); + Controls.Add(txtDiscountPercent); + Controls.Add(txtCustomerType); + Controls.Add(label5); + Controls.Add(label4); + Controls.Add(btnExit); + Controls.Add(btnCalculate); + Controls.Add(txtSubtotal); + Controls.Add(label3); + Controls.Add(label2); + Controls.Add(label1); + Margin = new System.Windows.Forms.Padding(4); + Name = "frmInvoiceTotal3"; + StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + Text = "Invoice Total"; + Load += frmInvoiceTotal3_Load; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private System.Windows.Forms.TextBox txtCustomerType; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Button btnExit; + private System.Windows.Forms.Button btnCalculate; + private System.Windows.Forms.TextBox txtSubtotal; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox txtDiscountPercent; + private System.Windows.Forms.TextBox txtDiscountAmount; + private System.Windows.Forms.TextBox txtTotal; + } +} + diff --git a/invoice_total2/InvoiceTotal/frmInvoiceTotal3.cs b/invoice_total2/InvoiceTotal/frmInvoiceTotal3.cs new file mode 100644 index 0000000..42f2c1b --- /dev/null +++ b/invoice_total2/InvoiceTotal/frmInvoiceTotal3.cs @@ -0,0 +1,88 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace InvoiceTotal +{ + public partial class frmInvoiceTotal3 : Form + { + public frmInvoiceTotal3() + { + InitializeComponent(); + } + + private void btnCalculate_Click(object sender, EventArgs e) + { + string customerType = txtCustomerType.Text.ToUpper(); + decimal subtotal = Convert.ToDecimal(txtSubtotal.Text); + decimal discountPercent = .0m; + + /* if (customerType == "R") { + if (subtotal >= 250 && subtotal < 500) + discountPercent = .25m; + else if (subtotal >= 500) + discountPercent = .3m; + else + discountPercent = .1m; + } + else if (customerType == "C") + discountPercent = .2m; + else if (customerType == "T") + if (subtotal >= 500) + discountPercent = .5m; + else + discountPercent = .4m; + else + discountPercent = .1m; */ + + switch (customerType) { + case "R": + if (subtotal >= 250 && subtotal < 500) + discountPercent = .25m; + else if (subtotal >= 500) + discountPercent = .3m; + else + discountPercent = .1m; + break; + case "C": + discountPercent = .2m; + break; + case "T": + if (subtotal >= 500) + discountPercent = .5m; + else + discountPercent = .4m; + break; + default: + discountPercent = .1m; + break; + } + + decimal discountAmount = subtotal * discountPercent; + decimal invoiceTotal = subtotal - discountAmount; + + txtDiscountPercent.Text = discountPercent.ToString("p1"); + txtDiscountAmount.Text = discountAmount.ToString("c"); + txtTotal.Text = invoiceTotal.ToString("c"); + + txtCustomerType.Focus(); + } + + private void btnExit_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void frmInvoiceTotal3_Load(object sender, EventArgs e) + { + txtSubtotal.Text = ""; + } + + } +} diff --git a/invoice_total2/InvoiceTotal/frmInvoiceTotal3.resx b/invoice_total2/InvoiceTotal/frmInvoiceTotal3.resx new file mode 100644 index 0000000..b92c163 --- /dev/null +++ b/invoice_total2/InvoiceTotal/frmInvoiceTotal3.resx @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root> \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..3364fdf --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = ".NET Core 3.1")] diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.AssemblyInfo.cs b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.AssemblyInfo.cs new file mode 100644 index 0000000..16ac96c --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// This code was generated by a tool. +// +// 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("InvoiceTotal")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+14d998935de2798a7aaa23ca9bf331aadb2a835f")] +[assembly: System.Reflection.AssemblyProductAttribute("InvoiceTotal")] +[assembly: System.Reflection.AssemblyTitleAttribute("InvoiceTotal")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.AssemblyInfoInputs.cache b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0b8d091 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +81424d6833de0a6f9ccedadd46f817514aea6f16cf2979571632874ec02b6afe diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.GeneratedMSBuildEditorConfig.editorconfig b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..eb60373 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.RootNamespace = InvoiceTotal +build_property.ProjectDir = c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.assets.cache b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.assets.cache new file mode 100644 index 0000000..58a2133 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.assets.cache Binary files differdiff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.BuildWithSkipAnalyzers b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.BuildWithSkipAnalyzers diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.CoreCompileInputs.cache b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..40417d8 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d8095f8ac65da01534ac6bc0aeea511f3773b0c76ffc5ae1929c690018f3ab28 diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.FileListAbsolute.txt b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d3aa325 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.FileListAbsolute.txt @@ -0,0 +1,47 @@ +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.exe +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.deps.json +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.runtimeconfig.json +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.runtimeconfig.dev.json +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.dll +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.pdb +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.csproj.AssemblyReference.cache +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.csproj.GenerateResource.cache +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.AssemblyInfoInputs.cache +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.AssemblyInfo.cs +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.csproj.CoreCompileInputs.cache +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.dll +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.pdb +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.genruntimeconfig.cache +C:\Users\andrew.honey\OneDrive - Southeast Technical College\Desktop\CIS 131\Student Download\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.frmInvoiceTotal3.resources +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.exe +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.deps.json +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.runtimeconfig.json +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.runtimeconfig.dev.json +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.dll +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.pdb +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.frmInvoiceTotal3.resources +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.csproj.GenerateResource.cache +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.AssemblyInfoInputs.cache +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.AssemblyInfo.cs +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.csproj.CoreCompileInputs.cache +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.dll +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.pdb +C:\Users\User\Documents\cs\Exercise Starts\Chapter 05\InvoiceTotal\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.genruntimeconfig.cache +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.exe +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.deps.json +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.runtimeconfig.json +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.runtimeconfig.dev.json +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.dll +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\bin\Debug\netcoreapp3.1\InvoiceTotal.pdb +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.frmInvoiceTotal3.resources +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.csproj.GenerateResource.cache +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.GeneratedMSBuildEditorConfig.editorconfig +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.AssemblyInfoInputs.cache +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.AssemblyInfo.cs +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.csproj.CoreCompileInputs.cache +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.sourcelink.json +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.dll +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.pdb +c:\Users\User\Documents\cs\hw\cs5-1\InvoiceTotal\obj\Debug\netcoreapp3.1\InvoiceTotal.genruntimeconfig.cache diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.GenerateResource.cache b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.GenerateResource.cache new file mode 100644 index 0000000..890be12 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.csproj.GenerateResource.cache Binary files differdiff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.designer.deps.json b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.designer.deps.json new file mode 100644 index 0000000..9bb9f82 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v3.1", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v3.1": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.designer.runtimeconfig.json b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.designer.runtimeconfig.json new file mode 100644 index 0000000..fdc9c5f --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.designer.runtimeconfig.json @@ -0,0 +1,16 @@ +{ + "runtimeOptions": { + "tfm": "netcoreapp3.1", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "3.1.0" + }, + "additionalProbingPaths": [ + "C:\\Users\\User\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\User\\.nuget\\packages" + ], + "configProperties": { + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.dll b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.dll new file mode 100644 index 0000000..fda62e4 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.dll Binary files differdiff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.frmInvoiceTotal3.resources b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.frmInvoiceTotal3.resources new file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.frmInvoiceTotal3.resources Binary files differdiff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.genruntimeconfig.cache b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.genruntimeconfig.cache new file mode 100644 index 0000000..6a0b8b9 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.genruntimeconfig.cache @@ -0,0 +1 @@ +4662e1c2969254f254ce0c0c070947ba8cb87ea9d7657d262c2180ffc8de274b diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.pdb b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.pdb new file mode 100644 index 0000000..c270763 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.pdb Binary files differdiff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.sourcelink.json b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.sourcelink.json new file mode 100644 index 0000000..f35fcd0 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/InvoiceTotal.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"c:\\Users\\User\\Documents\\cs\\hw\\*":"https://raw.githubusercontent.com/porterswanstrom/hw/14d998935de2798a7aaa23ca9bf331aadb2a835f/*"}} \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/apphost.exe b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/apphost.exe new file mode 100644 index 0000000..fe09c33 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/Debug/netcoreapp3.1/apphost.exe Binary files differdiff --git a/invoice_total2/InvoiceTotal/obj/InvoiceTotal.csproj.nuget.dgspec.json b/invoice_total2/InvoiceTotal/obj/InvoiceTotal.csproj.nuget.dgspec.json new file mode 100644 index 0000000..d35a9d6 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/InvoiceTotal.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "c:\\Users\\User\\Documents\\cs\\hw\\cs5-1\\InvoiceTotal\\InvoiceTotal.csproj": {} + }, + "projects": { + "c:\\Users\\User\\Documents\\cs\\hw\\cs5-1\\InvoiceTotal\\InvoiceTotal.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "c:\\Users\\User\\Documents\\cs\\hw\\cs5-1\\InvoiceTotal\\InvoiceTotal.csproj", + "projectName": "InvoiceTotal", + "projectPath": "c:\\Users\\User\\Documents\\cs\\hw\\cs5-1\\InvoiceTotal\\InvoiceTotal.csproj", + "packagesPath": "C:\\Users\\User\\.nuget\\packages\\", + "outputPath": "c:\\Users\\User\\Documents\\cs\\hw\\cs5-1\\InvoiceTotal\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "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\\8.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/obj/InvoiceTotal.csproj.nuget.g.props b/invoice_total2/InvoiceTotal/obj/InvoiceTotal.csproj.nuget.g.props new file mode 100644 index 0000000..af28506 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/InvoiceTotal.csproj.nuget.g.props @@ -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\User\.nuget\packages\</NuGetPackageFolders> + <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> + <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.0</NuGetToolVersion> + </PropertyGroup> + <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> + <SourceRoot Include="C:\Users\User\.nuget\packages\" /> + </ItemGroup> +</Project> \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/obj/InvoiceTotal.csproj.nuget.g.targets b/invoice_total2/InvoiceTotal/obj/InvoiceTotal.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/InvoiceTotal.csproj.nuget.g.targets @@ -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" /> \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/obj/project.assets.json b/invoice_total2/InvoiceTotal/obj/project.assets.json new file mode 100644 index 0000000..c434332 --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/project.assets.json @@ -0,0 +1,71 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [] + }, + "packageFolders": { + "C:\\Users\\User\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\User\\Documents\\cs\\hw\\cs5-1\\InvoiceTotal\\InvoiceTotal.csproj", + "projectName": "InvoiceTotal", + "projectPath": "C:\\Users\\User\\Documents\\cs\\hw\\cs5-1\\InvoiceTotal\\InvoiceTotal.csproj", + "packagesPath": "C:\\Users\\User\\.nuget\\packages\\", + "outputPath": "C:\\Users\\User\\Documents\\cs\\hw\\cs5-1\\InvoiceTotal\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "targetAlias": "netcoreapp3.1", + "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\\8.0.100\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/invoice_total2/InvoiceTotal/obj/project.nuget.cache b/invoice_total2/InvoiceTotal/obj/project.nuget.cache new file mode 100644 index 0000000..be992ed --- /dev/null +++ b/invoice_total2/InvoiceTotal/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "vjd32WM4W5Abx7hG+7mszad7YDRYmuW+JHIn/UtqzVvpm1rSt5gMUbJnHo9rycSv1WIy+uwZRp6sTS/EoozLsA==", + "success": true, + "projectFilePath": "c:\\Users\\User\\Documents\\cs\\hw\\cs5-1\\InvoiceTotal\\InvoiceTotal.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file |