From eaf3cca0dad596b966962138f5ec90ba7ac24a84 Mon Sep 17 00:00:00 2001 From: bekodeg Date: Mon, 29 Apr 2024 18:18:05 +0400 Subject: [PATCH 1/5] =?UTF-8?q?=D0=BD=D0=B5=D0=B1=D0=BE=D0=BB=D1=8C=D1=88?= =?UTF-8?q?=D0=B8=D0=B5=20=D1=84=D0=B8=D0=BA=D1=81=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SushiBar/SushiBar/Forms/FormReportOrdersLogic.cs | 1 - SushiBar/SushiBarDatabaseImplement/Models/Sushi.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/SushiBar/SushiBar/Forms/FormReportOrdersLogic.cs b/SushiBar/SushiBar/Forms/FormReportOrdersLogic.cs index 65f1693..b8da484 100644 --- a/SushiBar/SushiBar/Forms/FormReportOrdersLogic.cs +++ b/SushiBar/SushiBar/Forms/FormReportOrdersLogic.cs @@ -2,7 +2,6 @@ using Microsoft.Reporting.WinForms; using SushiBarContracts.BindingModels; using SushiBarContracts.BusinessLogicsContracts; -using System.Windows.Forms; namespace SushiBar.Forms { diff --git a/SushiBar/SushiBarDatabaseImplement/Models/Sushi.cs b/SushiBar/SushiBarDatabaseImplement/Models/Sushi.cs index 04d23cf..ea0c130 100644 --- a/SushiBar/SushiBarDatabaseImplement/Models/Sushi.cs +++ b/SushiBar/SushiBarDatabaseImplement/Models/Sushi.cs @@ -88,7 +88,6 @@ namespace SushiBarDatabaseImplement.Models context.SaveChanges(); } _sushiComponents = null; - } } } From 95c13d3b6ee0cfc36df077299e29626b4efad435 Mon Sep 17 00:00:00 2001 From: bekodeg Date: Sun, 5 May 2024 18:58:33 +0400 Subject: [PATCH 2/5] aaaaa --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3d05129..26212b2 100644 --- a/.gitignore +++ b/.gitignore @@ -397,5 +397,3 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml - -*.csproj From da472583a81ac4576bfa7932973c4440f70265b9 Mon Sep 17 00:00:00 2001 From: bekodeg Date: Sun, 5 May 2024 19:15:36 +0400 Subject: [PATCH 3/5] =?UTF-8?q?=D0=B1=D0=B5=D0=B7=D1=83=D0=BC=D0=B8=D0=B5.?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SushiBar/SushiBar/SushiBar.csproj | 40 +++++++++++++++++++ .../SushiBarBusinessLogic.csproj | 20 ++++++++++ .../SushiBarContracts.csproj | 13 ++++++ .../SushiBarDataModels.csproj | 9 +++++ .../SushiBarListImplement.csproj | 14 +++++++ 5 files changed, 96 insertions(+) create mode 100644 SushiBar/SushiBar/SushiBar.csproj create mode 100644 SushiBar/SushiBarBusinessLogic/SushiBarBusinessLogic.csproj create mode 100644 SushiBar/SushiBarContracts/SushiBarContracts.csproj create mode 100644 SushiBar/SushiBarDataModels/SushiBarDataModels.csproj create mode 100644 SushiBar/SushiBarListImplement/SushiBarListImplement.csproj diff --git a/SushiBar/SushiBar/SushiBar.csproj b/SushiBar/SushiBar/SushiBar.csproj new file mode 100644 index 0000000..dfe9d68 --- /dev/null +++ b/SushiBar/SushiBar/SushiBar.csproj @@ -0,0 +1,40 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + + + + + + + + + PreserveNewest + + + Always + + + + \ No newline at end of file diff --git a/SushiBar/SushiBarBusinessLogic/SushiBarBusinessLogic.csproj b/SushiBar/SushiBarBusinessLogic/SushiBarBusinessLogic.csproj new file mode 100644 index 0000000..e944f4d --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/SushiBarBusinessLogic.csproj @@ -0,0 +1,20 @@ + + + + net6.0 + enable + enable + + + + + + + + + + + + + + diff --git a/SushiBar/SushiBarContracts/SushiBarContracts.csproj b/SushiBar/SushiBarContracts/SushiBarContracts.csproj new file mode 100644 index 0000000..ef52534 --- /dev/null +++ b/SushiBar/SushiBarContracts/SushiBarContracts.csproj @@ -0,0 +1,13 @@ + + + + net6.0 + enable + enable + + + + + + + diff --git a/SushiBar/SushiBarDataModels/SushiBarDataModels.csproj b/SushiBar/SushiBarDataModels/SushiBarDataModels.csproj new file mode 100644 index 0000000..132c02c --- /dev/null +++ b/SushiBar/SushiBarDataModels/SushiBarDataModels.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/SushiBar/SushiBarListImplement/SushiBarListImplement.csproj b/SushiBar/SushiBarListImplement/SushiBarListImplement.csproj new file mode 100644 index 0000000..00e2c96 --- /dev/null +++ b/SushiBar/SushiBarListImplement/SushiBarListImplement.csproj @@ -0,0 +1,14 @@ + + + + net6.0 + enable + enable + + + + + + + + From 6d000dde33f4ab9f413f7dcf66965e3da7d8b17c Mon Sep 17 00:00:00 2001 From: bekodeg Date: Sun, 5 May 2024 19:18:49 +0400 Subject: [PATCH 4/5] =?UTF-8?q?=D0=BF=D0=BE=D1=82=D0=BE=D1=80=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D0=BE=D0=B4=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=B8=20?= =?UTF-8?q?=D1=82=D0=BE=D0=B3=D0=BE=20=D0=B6=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SushiBarDatabaseImplement.csproj | 29 +++++++++++++++++++ .../SushiBarFileImplement.csproj | 14 +++++++++ 2 files changed, 43 insertions(+) create mode 100644 SushiBar/SushiBarDatabaseImplement/SushiBarDatabaseImplement.csproj create mode 100644 SushiBar/SushiBarFileImplement/SushiBarFileImplement.csproj diff --git a/SushiBar/SushiBarDatabaseImplement/SushiBarDatabaseImplement.csproj b/SushiBar/SushiBarDatabaseImplement/SushiBarDatabaseImplement.csproj new file mode 100644 index 0000000..2af36de --- /dev/null +++ b/SushiBar/SushiBarDatabaseImplement/SushiBarDatabaseImplement.csproj @@ -0,0 +1,29 @@ + + + + net6.0 + enable + enable + + + + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + diff --git a/SushiBar/SushiBarFileImplement/SushiBarFileImplement.csproj b/SushiBar/SushiBarFileImplement/SushiBarFileImplement.csproj new file mode 100644 index 0000000..00e2c96 --- /dev/null +++ b/SushiBar/SushiBarFileImplement/SushiBarFileImplement.csproj @@ -0,0 +1,14 @@ + + + + net6.0 + enable + enable + + + + + + + + From 03a33fbafd8e113753c35bfb01cf10766d5c7278 Mon Sep 17 00:00:00 2001 From: bekodeg Date: Sun, 5 May 2024 19:21:01 +0400 Subject: [PATCH 5/5] =?UTF-8?q?=D1=83=D0=B4=D0=B0=D0=BB=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=BD=D0=B5=D0=BF=D0=BE=D0=BD=D1=8F=D1=82=D0=BD=D1=8B=D0=B9=20?= =?UTF-8?q?=D0=BC=D1=83=D1=81=D0=BE=D1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SushiBar/SushiBarView/SushiBarView.csproj | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 SushiBar/SushiBarView/SushiBarView.csproj diff --git a/SushiBar/SushiBarView/SushiBarView.csproj b/SushiBar/SushiBarView/SushiBarView.csproj deleted file mode 100644 index f855409..0000000 --- a/SushiBar/SushiBarView/SushiBarView.csproj +++ /dev/null @@ -1,22 +0,0 @@ - - - - WinExe - net6.0-windows - enable - true - enable - - - - - - - - - - - - - - \ No newline at end of file