diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice.slnx b/rambo-refactors/session-02/CalculatePrice/CalculatePrice.slnx new file mode 100644 index 0000000..5aed263 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice.slnx @@ -0,0 +1,3 @@ + + + diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/CalculatePrice.csproj b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/CalculatePrice.csproj new file mode 100644 index 0000000..ed9781c --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/CalculatePrice.csproj @@ -0,0 +1,10 @@ + + + + Exe + net10.0 + enable + enable + + + diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/Program.cs b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/Program.cs new file mode 100644 index 0000000..de420a7 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/Program.cs @@ -0,0 +1,108 @@ +internal class Program +{ + private static void Main(string[] args) + { + Console.WriteLine("Enter Base Price: must be more than 0"); + decimal basePrice = decimal.Parse(Console.ReadLine()!); + + Console.WriteLine("Enter Discount:"); + decimal discount = decimal.Parse(Console.ReadLine()!); + + Console.WriteLine("Enter Tax Ratio (example: 0.20):"); + decimal taxRatio = decimal.Parse(Console.ReadLine()!); + + Console.WriteLine("Is customer returning? (true/false):"); + bool customerReturn = bool.Parse(Console.ReadLine()!); + + // Precondition + if (basePrice < 0) + throw new ArgumentException("BasePrice must be non-negative"); + + var order = new Order(basePrice, discount); + + var discountService = new DiscountService(order); + + decimal priceAfterDiscount = discountService.CalculateDiscount(customerReturn); + + var taxService = new TaxService(); + + var taxRequest = new CalculateTaxRequest(priceAfterDiscount, taxRatio); + + decimal tax = taxService.CalculateTax(taxRequest); + + decimal total = priceAfterDiscount + tax; + + if (total < 0) + throw new Exception("Total cannot be less than zero"); + + Console.WriteLine("================================="); + Console.WriteLine($"Base Price: {basePrice}"); + Console.WriteLine($"Discount: {discount}"); + Console.WriteLine($"Price After Discount: {priceAfterDiscount}"); + Console.WriteLine($"Tax: {tax}"); + Console.WriteLine($"Final Total: {total}"); + } +} + +/* ======================= DOMAIN ======================= */ + +public record CalculateTaxRequest(decimal BasePrice, decimal TaxRatio); + +public class TaxService +{ + //invariant condition + private const decimal MaxTax = 25M; + private const decimal MinimumPrice = 50M; + + public decimal CalculateTax(CalculateTaxRequest request) + { + if (request.BasePrice < MinimumPrice) + return 0; + + decimal taxableAmount = request.BasePrice ; + decimal tax = taxableAmount * request.TaxRatio; + + if (tax > MaxTax) + tax = MaxTax; + + return tax; + } +} + +public class DiscountService +{ + //invariant condition + private const decimal LoyaltyDiscountRate = 0.05M; + private readonly Order _order; + + public DiscountService(Order order) + { + _order = order; + } + + public decimal CalculateDiscount(bool customerReturn) + { + + if (customerReturn) + return _order.BasePrice - LoyaltyDiscount(); + + return _order.BasePrice - _order.Discount; + } + + private decimal LoyaltyDiscount() + { + return _order.BasePrice * LoyaltyDiscountRate; + } +} + +public class Order +{ + public decimal BasePrice { get; } + public decimal Discount { get; } + + public Order(decimal basePrice, decimal discount) + { + BasePrice = basePrice; + Discount = discount; + } +} \ No newline at end of file diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.deps.json b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.deps.json new file mode 100644 index 0000000..d33427d --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "CalculatePrice/1.0.0": { + "runtime": { + "CalculatePrice.dll": {} + } + } + } + }, + "libraries": { + "CalculatePrice/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.dll b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.dll new file mode 100644 index 0000000..6b96142 Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.dll differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.exe b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.exe new file mode 100644 index 0000000..ae9dbfa Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.exe differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.pdb b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.pdb new file mode 100644 index 0000000..559f11c Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.pdb differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.runtimeconfig.json b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.runtimeconfig.json new file mode 100644 index 0000000..01e4519 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/bin/Debug/net10.0/CalculatePrice.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/CalculatePrice.csproj.nuget.dgspec.json b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/CalculatePrice.csproj.nuget.dgspec.json new file mode 100644 index 0000000..dddaf51 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/CalculatePrice.csproj.nuget.dgspec.json @@ -0,0 +1,349 @@ +{ + "format": 1, + "restore": { + "D:\\repos\\CalculatePrice\\CalculatePrice\\CalculatePrice.csproj": {} + }, + "projects": { + "D:\\repos\\CalculatePrice\\CalculatePrice\\CalculatePrice.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\repos\\CalculatePrice\\CalculatePrice\\CalculatePrice.csproj", + "projectName": "CalculatePrice", + "projectPath": "D:\\repos\\CalculatePrice\\CalculatePrice\\CalculatePrice.csproj", + "packagesPath": "C:\\Users\\liaghatmand_z\\.nuget\\packages\\", + "outputPath": "D:\\repos\\CalculatePrice\\CalculatePrice\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\liaghatmand_z\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\LocalNuget": {}, + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\nugetPackages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/CalculatePrice.csproj.nuget.g.props b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/CalculatePrice.csproj.nuget.g.props new file mode 100644 index 0000000..8238427 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/CalculatePrice.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\liaghatmand_z\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 7.0.0 + + + + + + \ No newline at end of file diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/CalculatePrice.csproj.nuget.g.targets b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/CalculatePrice.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/CalculatePrice.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.AssemblyInfo.cs b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.AssemblyInfo.cs new file mode 100644 index 0000000..46757ed --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CalculatePrice")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+17789fbb031d0e2eb13999fb64b24c79d5a15c5c")] +[assembly: System.Reflection.AssemblyProductAttribute("CalculatePrice")] +[assembly: System.Reflection.AssemblyTitleAttribute("CalculatePrice")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.AssemblyInfoInputs.cache b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.AssemblyInfoInputs.cache new file mode 100644 index 0000000..23f853f --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +eeefe67cc64254769e68a3b24c11f6b5f943e3feba231fdfa20af2cf2790e4f7 diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.GeneratedMSBuildEditorConfig.editorconfig b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b6c764d --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = CalculatePrice +build_property.ProjectDir = D:\repos\CleanCodeMastery2026\rambo-refactors\session-02\CalculatePrice\CalculatePrice\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.GlobalUsings.g.cs b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.assets.cache b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.assets.cache new file mode 100644 index 0000000..0764854 Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.assets.cache differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.csproj.BuildWithSkipAnalyzers b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.csproj.CoreCompileInputs.cache b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..cdbb3b0 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +717ff76788bd312e0c76ca572822cb6ecd82d52f96d70e8daaaf369b8c779608 diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.csproj.FileListAbsolute.txt b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..536460f --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +D:\repos\CalculatePrice\CalculatePrice\bin\Debug\net10.0\CalculatePrice.exe +D:\repos\CalculatePrice\CalculatePrice\bin\Debug\net10.0\CalculatePrice.deps.json +D:\repos\CalculatePrice\CalculatePrice\bin\Debug\net10.0\CalculatePrice.runtimeconfig.json +D:\repos\CalculatePrice\CalculatePrice\bin\Debug\net10.0\CalculatePrice.dll +D:\repos\CalculatePrice\CalculatePrice\bin\Debug\net10.0\CalculatePrice.pdb +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\CalculatePrice.GeneratedMSBuildEditorConfig.editorconfig +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\CalculatePrice.AssemblyInfoInputs.cache +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\CalculatePrice.AssemblyInfo.cs +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\CalculatePrice.csproj.CoreCompileInputs.cache +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\CalculatePrice.sourcelink.json +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\CalculatePrice.dll +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\refint\CalculatePrice.dll +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\CalculatePrice.pdb +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\CalculatePrice.genruntimeconfig.cache +D:\repos\CalculatePrice\CalculatePrice\obj\Debug\net10.0\ref\CalculatePrice.dll diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.dll b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.dll new file mode 100644 index 0000000..6b96142 Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.dll differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.genruntimeconfig.cache b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.genruntimeconfig.cache new file mode 100644 index 0000000..2d880d5 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.genruntimeconfig.cache @@ -0,0 +1 @@ +23933494a7157bf21cdfdfcd6d1b890d950161e5fb539a5a4cd63148e07a7be7 diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.pdb b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.pdb new file mode 100644 index 0000000..559f11c Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.pdb differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.sourcelink.json b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.sourcelink.json new file mode 100644 index 0000000..a769c1d --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/CalculatePrice.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"D:\\repos\\*":"https://raw.githubusercontent.com/ZahraLiaghatmand/SalesAPICall/3e0ad80e808d9552a81d35341aff74a102258021/*"}} \ No newline at end of file diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/apphost.exe b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/apphost.exe new file mode 100644 index 0000000..ae9dbfa Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/apphost.exe differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/ref/CalculatePrice.dll b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/ref/CalculatePrice.dll new file mode 100644 index 0000000..a79e432 Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/ref/CalculatePrice.dll differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/refint/CalculatePrice.dll b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/refint/CalculatePrice.dll new file mode 100644 index 0000000..a79e432 Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Debug/net10.0/refint/CalculatePrice.dll differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.AssemblyInfo.cs b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.AssemblyInfo.cs new file mode 100644 index 0000000..adfa254 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("CalculatePrice")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+17789fbb031d0e2eb13999fb64b24c79d5a15c5c")] +[assembly: System.Reflection.AssemblyProductAttribute("CalculatePrice")] +[assembly: System.Reflection.AssemblyTitleAttribute("CalculatePrice")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.AssemblyInfoInputs.cache b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.AssemblyInfoInputs.cache new file mode 100644 index 0000000..918f934 --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5fcf53559a72b8e53911d67e9a1da4dff61d08f4b7bd9de9ac99a08dbd3a0de8 diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.GeneratedMSBuildEditorConfig.editorconfig b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b6c764d --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = CalculatePrice +build_property.ProjectDir = D:\repos\CleanCodeMastery2026\rambo-refactors\session-02\CalculatePrice\CalculatePrice\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.GlobalUsings.g.cs b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.assets.cache b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.assets.cache new file mode 100644 index 0000000..d8c97e8 Binary files /dev/null and b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/Release/net10.0/CalculatePrice.assets.cache differ diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/project.assets.json b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/project.assets.json new file mode 100644 index 0000000..7ee311d --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/project.assets.json @@ -0,0 +1,355 @@ +{ + "version": 3, + "targets": { + "net10.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net10.0": [] + }, + "packageFolders": { + "C:\\Users\\liaghatmand_z\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\repos\\CalculatePrice\\CalculatePrice\\CalculatePrice.csproj", + "projectName": "CalculatePrice", + "projectPath": "D:\\repos\\CalculatePrice\\CalculatePrice\\CalculatePrice.csproj", + "packagesPath": "C:\\Users\\liaghatmand_z\\.nuget\\packages\\", + "outputPath": "D:\\repos\\CalculatePrice\\CalculatePrice\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\liaghatmand_z\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\LocalNuget": {}, + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\nugetPackages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/project.nuget.cache b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/project.nuget.cache new file mode 100644 index 0000000..5e1aa2d --- /dev/null +++ b/rambo-refactors/session-02/CalculatePrice/CalculatePrice/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "FNfeFXysC8o=", + "success": true, + "projectFilePath": "D:\\repos\\CalculatePrice\\CalculatePrice\\CalculatePrice.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file