[Version Number] Summary of the changes made
1.009 Merge and small code improvements
StartDate:14.01.2024
- 🛢️ DBMS: Microsoft SQL Server
- 🖥️ Framework: WPF app targeting .NET 8.0, including net8.0-windows, and utilizing WPF components.
- 🚀 Project Entry Points:
- For the client:
Client\App.Xaml.cs.Main
- For the client:
- 📜 Logs Directory:
Client\bin\Debug\logs\
- ⚙️ Configuration File:
Client\bin\Debug\config.xml
DataBase name: MLstartDataBase
CREATE TABLE IF NOT EXISTS Userss (
Personid INT PRIMARY KEY IDENTITY,
Login VARCHAR(255) NOT NULL,
PassWord VARCHAR(255) NOT NULL
);
CREATE TABLE IF NOT EXISTS EventLog (
UserName VARCHAR(255) NULL,
FileName VARCHAR(255) NULL,
FramePath NVARCHAR(MAX) NULL,
MetaData NVARCHAR(MAX) NULL
);