diff --git a/Program.cs b/Program.cs index 165d6d9..9d9e739 100644 --- a/Program.cs +++ b/Program.cs @@ -84,16 +84,16 @@ class Program { Console.WriteLine("Spedizione prodotti con IVA 10%: " + (spedizione * nElementiDieci)); Console.WriteLine("Spedizione prodotti con IVA 22%: " + (spedizione * nElementiVentiDue)); - Console.WriteLine("Assicurazione prodotti con IVA 10%: " + ((totArticoliIvaDieci + totArticoliIvaDieci * ivaDieci / 100) * assicurazione)); - Console.WriteLine("Assicurazione prodotti con IVA 22%: " + ((totArticoliIvaVentiDue + totArticoliIvaVentiDue * ivaVentiDue / 100) * assicurazione)); + Console.WriteLine("Assicurazione prodotti con IVA 10%: " + (totArticoliIvaDieci * assicurazione)); + Console.WriteLine("Assicurazione prodotti con IVA 22%: " + (totArticoliIvaVentiDue * assicurazione)); Console.WriteLine("Totale spedizione prodotti con IVA 10%: " + ((spedizione * nElementiDieci) + (totArticoliIvaDieci + totArticoliIvaDieci * ivaDieci / 100) * assicurazione)); // |Totale spedizione IVA 10% | |Totale assicurazione prodotti IVA 10% | Console.WriteLine("Totale spedizione prodotti con IVA 22%: " + ((spedizione * nElementiVentiDue) + (totArticoliIvaVentiDue + totArticoliIvaVentiDue * ivaVentiDue / 100) * assicurazione)); // |Totale spedizione IVA 22% | |Totale assicurazione prodotti IVA 22% | - Console.WriteLine("Totale complessivo: " + ((totArticoliIvaDieci + totArticoliIvaDieci * ivaDieci / 100) + (totArticoliIvaVentiDue + totArticoliIvaVentiDue * ivaVentiDue / 100) + ((spedizione * nElementiDieci) + (totArticoliIvaDieci + totArticoliIvaDieci * ivaDieci / 100) * assicurazione) + ((spedizione * nElementiVentiDue) + (totArticoliIvaVentiDue + totArticoliIvaVentiDue * ivaVentiDue / 100) * assicurazione))); - // |Totale dei prodotti con IVA 10% | |Totale dei prodotti con IVA 22% | |Totale spedizione IVA 10% | |Totale assicurazione prodotti IVA 10% | |Totale spedizione IVA 22% | |Totale assicurazione prodotti IVA 22% | + Console.WriteLine("Totale complessivo: " + ((totArticoliIvaDieci + totArticoliIvaDieci * ivaDieci / 100) + (totArticoliIvaVentiDue + totArticoliIvaVentiDue * ivaVentiDue / 100) + (spedizione * nElementiDieci) + (totArticoliIvaDieci * assicurazione) + (spedizione * nElementiVentiDue) + (totArticoliIvaVentiDue * assicurazione))); + // |Totale dei prodotti con IVA 10% | |Totale dei prodotti con IVA 22% | |Totale spedizione IVA 10% | |Totale assicurazione - IVA 10% | |Totale spedizione IVA 22% | |Totale assicurazione prodotti IVA 22% | } else { Console.WriteLine("Totale complessivo: " + ((totArticoliIvaDieci + totArticoliIvaDieci * ivaDieci / 100) + (totArticoliIvaVentiDue + totArticoliIvaVentiDue * ivaVentiDue / 100))); diff --git a/bin/Debug/net9.0/ripasso2 b/bin/Debug/net9.0/ripasso2 index 4363d1e..f5782e0 100755 Binary files a/bin/Debug/net9.0/ripasso2 and b/bin/Debug/net9.0/ripasso2 differ diff --git a/bin/Debug/net9.0/ripasso2.dll b/bin/Debug/net9.0/ripasso2.dll index 48cc363..88961ae 100644 Binary files a/bin/Debug/net9.0/ripasso2.dll and b/bin/Debug/net9.0/ripasso2.dll differ diff --git a/bin/Debug/net9.0/ripasso2.pdb b/bin/Debug/net9.0/ripasso2.pdb index 12e6b57..4766b11 100644 Binary files a/bin/Debug/net9.0/ripasso2.pdb and b/bin/Debug/net9.0/ripasso2.pdb differ diff --git a/obj/Debug/net9.0/apphost b/obj/Debug/net9.0/apphost index 4363d1e..f5782e0 100755 Binary files a/obj/Debug/net9.0/apphost and b/obj/Debug/net9.0/apphost differ diff --git a/obj/Debug/net9.0/ref/ripasso2.dll b/obj/Debug/net9.0/ref/ripasso2.dll index 63617e3..1abc2af 100644 Binary files a/obj/Debug/net9.0/ref/ripasso2.dll and b/obj/Debug/net9.0/ref/ripasso2.dll differ diff --git a/obj/Debug/net9.0/refint/ripasso2.dll b/obj/Debug/net9.0/refint/ripasso2.dll index 63617e3..1abc2af 100644 Binary files a/obj/Debug/net9.0/refint/ripasso2.dll and b/obj/Debug/net9.0/refint/ripasso2.dll differ diff --git a/obj/Debug/net9.0/ripasso2.AssemblyInfo.cs b/obj/Debug/net9.0/ripasso2.AssemblyInfo.cs index 4b3bd62..e168197 100644 --- a/obj/Debug/net9.0/ripasso2.AssemblyInfo.cs +++ b/obj/Debug/net9.0/ripasso2.AssemblyInfo.cs @@ -13,10 +13,10 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("ripasso2")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+53863e1ac4be1377a83eae80287c563f2e527316")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9e063c4d44f15ed6af6bad0df32bd9317953ee0c")] [assembly: System.Reflection.AssemblyProductAttribute("ripasso2")] [assembly: System.Reflection.AssemblyTitleAttribute("ripasso2")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -// Generato dalla classe WriteCodeFragment di MSBuild. +// Generated by the MSBuild WriteCodeFragment class. diff --git a/obj/Debug/net9.0/ripasso2.AssemblyInfoInputs.cache b/obj/Debug/net9.0/ripasso2.AssemblyInfoInputs.cache index 2a13e3c..353f42d 100644 --- a/obj/Debug/net9.0/ripasso2.AssemblyInfoInputs.cache +++ b/obj/Debug/net9.0/ripasso2.AssemblyInfoInputs.cache @@ -1 +1 @@ -71a22bb5b332df50b22e7190262b727c37f86d2a2cf6a646eeb479b9bd432dc1 +e0fb8768b7bd444964b6894e7ec3e12d3a8d9fd2585e5c327da99f2b40a01a4d diff --git a/obj/Debug/net9.0/ripasso2.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/ripasso2.csproj.CoreCompileInputs.cache index e06f20e..097f9f9 100644 --- a/obj/Debug/net9.0/ripasso2.csproj.CoreCompileInputs.cache +++ b/obj/Debug/net9.0/ripasso2.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -c20dfe46c30dfe0da7e44a264a308f3ebf7f10d8c7f844553de63d4a2c653530 +b8a90b5babd4553615c35f4d5aef5ad179d953bcee32425871fc4c227d07f9b6 diff --git a/obj/Debug/net9.0/ripasso2.dll b/obj/Debug/net9.0/ripasso2.dll index 48cc363..88961ae 100644 Binary files a/obj/Debug/net9.0/ripasso2.dll and b/obj/Debug/net9.0/ripasso2.dll differ diff --git a/obj/Debug/net9.0/ripasso2.pdb b/obj/Debug/net9.0/ripasso2.pdb index 12e6b57..4766b11 100644 Binary files a/obj/Debug/net9.0/ripasso2.pdb and b/obj/Debug/net9.0/ripasso2.pdb differ diff --git a/obj/project.assets.json b/obj/project.assets.json index 1f30f6f..d230e44 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -60,18 +60,12 @@ ], "assetTargetFallback": true, "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[9.0.0, 9.0.0]" - } - ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.101/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.102/PortableRuntimeIdentifierGraph.json" } } } diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index 0321bb3..f264f4c 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,10 +1,8 @@ { "version": 2, - "dgSpecHash": "lC3NXtrXW/Y=", + "dgSpecHash": "uSicE6AfFJI=", "success": true, "projectFilePath": "/home/BrainTheBest5/git/ripasso2/ripasso2.csproj", - "expectedPackageFiles": [ - "/home/BrainTheBest5/.nuget/packages/microsoft.aspnetcore.app.ref/9.0.0/microsoft.aspnetcore.app.ref.9.0.0.nupkg.sha512" - ], + "expectedPackageFiles": [], "logs": [] } \ No newline at end of file diff --git a/obj/ripasso2.csproj.nuget.dgspec.json b/obj/ripasso2.csproj.nuget.dgspec.json index 8d1ad62..1cdf3b3 100644 --- a/obj/ripasso2.csproj.nuget.dgspec.json +++ b/obj/ripasso2.csproj.nuget.dgspec.json @@ -54,18 +54,12 @@ ], "assetTargetFallback": true, "warn": true, - "downloadDependencies": [ - { - "name": "Microsoft.AspNetCore.App.Ref", - "version": "[9.0.0, 9.0.0]" - } - ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.101/PortableRuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.102/PortableRuntimeIdentifierGraph.json" } } }