Initial commit - ERP

This commit is contained in:
2026-08-05 21:15:15 +03:00
commit 3908155685
1203 changed files with 85576 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace Commerce.Contracts.Constants;
public static class AppCon
{
public static class ConnectionStrings
{
public const string SQLServer = "server=(localdb)\\MSSQLLocalDB;database=Ecommerce;Integrated Security=true";
public const string MariaDB = "UserID=said;Password=aaa111!!!AAA;server=db;Port=3310;Database=ecommercedb;Protocol=TCP";
public const string Postgresql = "Host=localhost;Database=ecommerce;Username=said1996;Password=a44781680;";
}
}
@@ -0,0 +1,63 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Commerce.Contracts.Constants;
public static class AppEnum
{
public enum OrderStatus
{
FillingCart,
// Paid,
InQueue,
DeliveryInProgress,
Delivered,
UserNotFound,
Delayed,
// Reserved
}
public enum QueryOrder
{
[Display(Name = "Popular")]
Name,
Recent,
Oldest,
[Display(Name = "Lowest Price")]
Lowest,
[Display(Name = "Highest Price")]
Highest
}
public enum Roles
{
SuperAdmin,
Admin,
Moderator,
Standard
}
public enum ShippingMethod
{
[Display(Name = "Standard shipping - $10.00")] NormalShipping,
[Display(Name = "Fast shipping - $50.00")] FastShipping,
}
public enum SalesOrPurchases
{
None,
Purchase,
Sales,
}
}
@@ -0,0 +1,10 @@
namespace Commerce.Contracts.DTOs;
public class CategoryFilter
{
public string? Name { get; set; }
public bool? IsBundle { get; set; }
public string? Language { get; set; }
public bool? Random { get; set; } = false;
}
@@ -0,0 +1,25 @@
namespace Commerce.Contracts.DTOs;
public class CategoryVM
{
public Guid? Id { get; set; }
public string[]? Photos { get; set; }
public Guid? ParentCategoryId { get; set; }
public ICollection<CategoryVM>? ChildCategories { get; set; }
public bool IsBundle { get; set; }
public List<CategoryTranslationVM> Translations { get; set; } = new();
}
public class CategoryTranslationVM
{
public string Language { get; set; } = string.Empty;
public CategoryInfoVM Info { get; set; } = new();
}
public class CategoryInfoVM
{
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public List<TechnicalDetailVM> TechnicalDetails { get; set; } = new();
}
@@ -0,0 +1,14 @@
namespace Commerce.Contracts.DTOs;
public class ProductFilter
{
public string? Name { get; set; }
public double? Price { get; set; }
public double? Discount { get; set; }
public bool? IsBundle { get; set; }
public Guid? CategoryId { get; set; }
public string? Language { get; set; }
public bool? Random { get; set; } = false;
}
@@ -0,0 +1,38 @@
namespace Commerce.Contracts.DTOs;
public class ProductVM
{
public Guid? Id { get; set; }
public string[]? Photos { get; set; }
public double? Price { get; set; }
public double? Discount { get; set; }
public DateTime? Created { get; set; }
public string? CodeName { get; set; }
public string? CategoryName { get; set; }
public bool IsBundle { get; set; }
public ICollection<ProductVM>? ChildProducts { get; set; }
public Guid? CategoryId { get; set; }
public Guid? ParentCategoryId { get; set; }
public ICollection<CategoryVM>? ChildCategories { get; set; }
public List<ProductTranslationVM>? Translations { get; set; } = new();
}
public class ProductTranslationVM
{
public string Language { get; set; } = string.Empty;
public ProductInfoVM Info { get; set; } = new();
}
public class ProductInfoVM
{
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public List<TechnicalDetailVM> TechnicalDetails { get; set; } = new();
}
public class TechnicalDetailVM
{
public string Key { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
}
@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace Commerce.Contracts.DTOs;
public class TechnicalDetail
{
public string Key { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty;
}
@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="12.1.1" />
</ItemGroup>
<!-- <ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.11" />
</ItemGroup> -->
</Project>
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Commerce.Contracts.Exceptions;
public class NotFoundException : Exception
{
public NotFoundException(string message, Exception innerException) : base(message, innerException)
{
}
}
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Commerce.Contracts.Options;
public class JWT
{
public string Key { get; set; }
public string Issuer { get; set; }
public string Audience { get; set; }
public double DurationInMinutes { get; set; }
}
@@ -0,0 +1,12 @@
using FluentValidation;
using Commerce.Contracts.DTOs;
namespace Commerce.Contracts.Validators;
public class CategoryVMValidator : AbstractValidator<CategoryVM>
{
public CategoryVMValidator()
{
RuleFor(x => x.Translations).NotEmpty().WithMessage("At least one translation is required");
}
}
@@ -0,0 +1,14 @@
using FluentValidation;
using Commerce.Contracts.DTOs;
namespace Commerce.Contracts.Validators;
public class ProductVMValidator : AbstractValidator<ProductVM>
{
public ProductVMValidator()
{
RuleFor(x => x.Translations).NotEmpty().WithMessage("At least one translation is required");
RuleFor(x => x.Price).GreaterThan(0).When(x => x.Price.HasValue).WithMessage("Price must be greater than 0");
RuleFor(x => x.CategoryId).NotEmpty().When(x => !x.IsBundle).WithMessage("Category is required for products");
}
}
@@ -0,0 +1,41 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v10.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v10.0": {
"Commerce.Contracts/1.0.0": {
"dependencies": {
"FluentValidation": "12.1.1"
},
"runtime": {
"Commerce.Contracts.dll": {}
}
},
"FluentValidation/12.1.1": {
"runtime": {
"lib/net8.0/FluentValidation.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.1.1.0"
}
}
}
}
},
"libraries": {
"Commerce.Contracts/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"FluentValidation/12.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==",
"path": "fluentvalidation/12.1.1",
"hashPath": "fluentvalidation.12.1.1.nupkg.sha512"
}
}
}
@@ -0,0 +1,41 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v10.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v10.0": {
"ECommerce.Contracts/1.0.0": {
"dependencies": {
"FluentValidation": "12.1.1"
},
"runtime": {
"ECommerce.Contracts.dll": {}
}
},
"FluentValidation/12.1.1": {
"runtime": {
"lib/net8.0/FluentValidation.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.1.1.0"
}
}
}
}
},
"libraries": {
"ECommerce.Contracts/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"FluentValidation/12.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==",
"path": "fluentvalidation/12.1.1",
"hashPath": "fluentvalidation.12.1.1.nupkg.sha512"
}
}
}
@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"Contracts/1.0.0": {
"runtime": {
"Contracts.dll": {}
}
}
}
},
"libraries": {
"Contracts/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
@@ -0,0 +1,41 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"Commerce.Contracts/1.0.0": {
"dependencies": {
"FluentValidation": "12.1.1"
},
"runtime": {
"Commerce.Contracts.dll": {}
}
},
"FluentValidation/12.1.1": {
"runtime": {
"lib/net8.0/FluentValidation.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.1.1.0"
}
}
}
}
},
"libraries": {
"Commerce.Contracts/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"FluentValidation/12.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==",
"path": "fluentvalidation/12.1.1",
"hashPath": "fluentvalidation.12.1.1.nupkg.sha512"
}
}
}
@@ -0,0 +1,41 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v9.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v9.0": {
"Contracts/1.0.0": {
"dependencies": {
"FluentValidation": "12.1.1"
},
"runtime": {
"Contracts.dll": {}
}
},
"FluentValidation/12.1.1": {
"runtime": {
"lib/net8.0/FluentValidation.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.1.1.0"
}
}
}
}
},
"libraries": {
"Contracts/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"FluentValidation/12.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==",
"path": "fluentvalidation/12.1.1",
"hashPath": "fluentvalidation.12.1.1.nupkg.sha512"
}
}
}
@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {
"Contracts/1.0.0": {
"runtime": {
"Contracts.dll": {}
}
}
}
},
"libraries": {
"Contracts/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
@@ -0,0 +1,348 @@
{
"format": 1,
"restore": {
"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/Commerce.Contracts.csproj": {}
},
"projects": {
"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/Commerce.Contracts.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/Commerce.Contracts.csproj",
"projectName": "Commerce.Contracts",
"projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/Commerce.Contracts.csproj",
"packagesPath": "/home/yla/.nuget/packages/",
"outputPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/yla/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net10.0"
],
"sources": {
"/usr/share/dotnet/library-packs": {},
"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",
"dependencies": {
"FluentValidation": {
"target": "Package",
"version": "[12.1.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/share/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]"
}
}
}
}
}
}
@@ -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)' == '' ">/home/yla/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/yla/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/yla/.nuget/packages/" />
</ItemGroup>
</Project>
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
@@ -0,0 +1,74 @@
{
"format": 1,
"restore": {
"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/Contracts.csproj": {}
},
"projects": {
"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/Contracts.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/Contracts.csproj",
"projectName": "Contracts",
"projectPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/Contracts.csproj",
"packagesPath": "/home/yla/.nuget/packages/",
"outputPath": "/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/yla/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net9.0"
],
"sources": {
"/usr/share/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
},
"SdkAnalysisLevel": "9.0.300"
},
"frameworks": {
"net9.0": {
"targetAlias": "net9.0",
"dependencies": {
"FluentValidation": {
"target": "Package",
"version": "[12.1.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/yla/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/yla/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/yla/.nuget/packages/" />
</ItemGroup>
</Project>
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
@@ -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("Commerce.Contracts")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")]
[assembly: System.Reflection.AssemblyProductAttribute("Commerce.Contracts")]
[assembly: System.Reflection.AssemblyTitleAttribute("Commerce.Contracts")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
68788d2dcfa0d68f33049adb82c59a1d57fa4d0603cb5b803847354c8d5e6d77
@@ -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 = Commerce.Contracts
build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 10.0
build_property.EnableCodeStyleSeverity =
@@ -0,0 +1,8 @@
// <auto-generated/>
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;
@@ -0,0 +1 @@
6ce98f325ae906e0a383d6ffeb749fe94a99509facff07a8191a2fabe0feadd4
@@ -0,0 +1,12 @@
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/bin/Debug/net10.0/Commerce.Contracts.deps.json
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/bin/Debug/net10.0/Commerce.Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/bin/Debug/net10.0/Commerce.Contracts.pdb
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net10.0/Commerce.Contracts.csproj.AssemblyReference.cache
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net10.0/Commerce.Contracts.GeneratedMSBuildEditorConfig.editorconfig
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net10.0/Commerce.Contracts.AssemblyInfoInputs.cache
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net10.0/Commerce.Contracts.AssemblyInfo.cs
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net10.0/Commerce.Contracts.csproj.CoreCompileInputs.cache
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net10.0/Commerce.Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net10.0/refint/Commerce.Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net10.0/Commerce.Contracts.pdb
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net10.0/ref/Commerce.Contracts.dll
@@ -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("ECommerce.Contracts")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+206dfeabd74212fb6442b2ac195b5904b0472cb7")]
[assembly: System.Reflection.AssemblyProductAttribute("ECommerce.Contracts")]
[assembly: System.Reflection.AssemblyTitleAttribute("ECommerce.Contracts")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
f334c4f114f60ca41fe97aacb1e97254212a558706a216908dcc422f6e85b225
@@ -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 = ECommerce.Contracts
build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 10.0
build_property.EnableCodeStyleSeverity =
@@ -0,0 +1,8 @@
// <auto-generated/>
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;
@@ -0,0 +1 @@
ed6a1201b191f518636ff6c81584bb0b217d0852ad5c5eb32df7e62a2200005c
@@ -0,0 +1,24 @@
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/bin/Debug/net10.0/ECommerce.Contracts.deps.json
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/bin/Debug/net10.0/ECommerce.Contracts.dll
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/bin/Debug/net10.0/ECommerce.Contracts.pdb
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.csproj.AssemblyReference.cache
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.GeneratedMSBuildEditorConfig.editorconfig
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.AssemblyInfoInputs.cache
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.AssemblyInfo.cs
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.csproj.CoreCompileInputs.cache
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.dll
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/obj/Debug/net10.0/refint/ECommerce.Contracts.dll
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.pdb
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/Commerce/ECommerce.Contracts/obj/Debug/net10.0/ref/ECommerce.Contracts.dll
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/bin/Debug/net10.0/ECommerce.Contracts.deps.json
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/bin/Debug/net10.0/ECommerce.Contracts.dll
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/bin/Debug/net10.0/ECommerce.Contracts.pdb
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.csproj.AssemblyReference.cache
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.GeneratedMSBuildEditorConfig.editorconfig
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.AssemblyInfoInputs.cache
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.AssemblyInfo.cs
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.csproj.CoreCompileInputs.cache
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.dll
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/Debug/net10.0/refint/ECommerce.Contracts.dll
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/Debug/net10.0/ECommerce.Contracts.pdb
/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Commerce/ECommerce/ECommerce.Contracts/obj/Debug/net10.0/ref/ECommerce.Contracts.dll
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
@@ -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("Contracts")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b0da15cd3746adfcd6a77120b7ac6fe51ed64d0e")]
[assembly: System.Reflection.AssemblyProductAttribute("Contracts")]
[assembly: System.Reflection.AssemblyTitleAttribute("Contracts")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
629d527d923599c008aa2e6985da8ac9ad29ab7f03d2766345e96ad86c96fe05
@@ -0,0 +1,15 @@
is_global = true
build_property.TargetFramework = net8.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 = Contracts
build_property.ProjectDir = /run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 8.0
build_property.EnableCodeStyleSeverity =
@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
@@ -0,0 +1 @@
759d07bfd59d231c861af1e6338166a4b763a05138bcfb722698a3eec353bed7
@@ -0,0 +1,12 @@
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/bin/Debug/net8.0/Contracts.deps.json
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/bin/Debug/net8.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/bin/Debug/net8.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net8.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net8.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net8.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net8.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net8.0/Contracts.sourcelink.json
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net8.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net8.0/refint/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net8.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net8.0/ref/Contracts.dll
@@ -0,0 +1 @@
{"documents":{"/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/*":"https://api.bitbucket.org/2.0/repositories/said1996/masstech_ecommerce/src/53c5318e43d8eb6464229952da4deb6417c9afcb/*"}}
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
@@ -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("Commerce.Contracts")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")]
[assembly: System.Reflection.AssemblyProductAttribute("Commerce.Contracts")]
[assembly: System.Reflection.AssemblyTitleAttribute("Commerce.Contracts")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
68788d2dcfa0d68f33049adb82c59a1d57fa4d0603cb5b803847354c8d5e6d77
@@ -0,0 +1,15 @@
is_global = true
build_property.TargetFramework = net9.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 = Commerce.Contracts
build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =
@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
@@ -0,0 +1 @@
0361ab2724eb9bc6cfc5ea82bd05db00f8d74302ab2713d46c22326125b0a227
@@ -0,0 +1,12 @@
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/bin/Debug/net9.0/Commerce.Contracts.deps.json
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/bin/Debug/net9.0/Commerce.Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/bin/Debug/net9.0/Commerce.Contracts.pdb
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net9.0/Commerce.Contracts.csproj.AssemblyReference.cache
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net9.0/Commerce.Contracts.GeneratedMSBuildEditorConfig.editorconfig
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net9.0/Commerce.Contracts.AssemblyInfoInputs.cache
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net9.0/Commerce.Contracts.AssemblyInfo.cs
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net9.0/Commerce.Contracts.csproj.CoreCompileInputs.cache
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net9.0/Commerce.Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net9.0/refint/Commerce.Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net9.0/Commerce.Contracts.pdb
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Commerce.Contracts/obj/Debug/net9.0/ref/Commerce.Contracts.dll
@@ -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("Contracts")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")]
[assembly: System.Reflection.AssemblyProductAttribute("Contracts")]
[assembly: System.Reflection.AssemblyTitleAttribute("Contracts")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
cd734acc8465ebb5d282f618102f6659d26ba0b56e6a6f83a66e4b8527b26d39
@@ -0,0 +1,15 @@
is_global = true
build_property.TargetFramework = net9.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 = Contracts
build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 9.0
build_property.EnableCodeStyleSeverity =
@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
@@ -0,0 +1 @@
189f3e3e84c0caa53dfe5f99c60dd4d1dd9198078a74ddef32d6c5b0c37acad3
@@ -0,0 +1,125 @@
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/bin/Debug/net9.0/Contracts.deps.json
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/bin/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/bin/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net9.0/Contracts.sourcelink.json
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/bin/Debug/net9.0/Contracts.deps.json
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/bin/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/bin/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.sourcelink.json
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/bin/Debug/net9.0/Contracts.deps.json
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/bin/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/bin/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.sourcelink.json
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/AllProjects/Work/ECommerceApps/MassTech/masstech_ecommerce/Backend/API/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.deps.json
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.deps.json
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.deps.json
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.deps.json
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.deps.json
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.deps.json
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.dll
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.pdb
/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.deps.json
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.dll
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.pdb
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.dll
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.pdb
/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.deps.json
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/bin/Debug/net9.0/Contracts.pdb
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/refint/Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.pdb
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/ref/Contracts.dll
/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Commerce/Contracts/obj/Debug/net9.0/Contracts.csproj.AssemblyReference.cache

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