diff --git a/Endpoint/Endpoint.csproj b/Endpoint/Endpoint.csproj
index 4b68f1c..25a94b7 100644
--- a/Endpoint/Endpoint.csproj
+++ b/Endpoint/Endpoint.csproj
@@ -11,10 +11,13 @@
Mirea.Api.Endpoint
$(AssemblyName)
Exe
- true
+ false
65cea060-88bf-4e35-9cfb-18fc996a8f05
Linux
.
+ False
+ True
+ docs.xml
@@ -23,4 +26,9 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Endpoint/Program.cs b/Endpoint/Program.cs
index 334eccc..6499332 100644
--- a/Endpoint/Program.cs
+++ b/Endpoint/Program.cs
@@ -1,6 +1,19 @@
using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.AspNetCore.Mvc.ApiExplorer;
+using Microsoft.AspNetCore.Mvc.Versioning;
+using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
+using Microsoft.Extensions.Options;
+using Mirea.Api.DataAccess.Application;
+using Mirea.Api.DataAccess.Persistence;
+using Mirea.Api.Endpoint.Properties;
+using Swashbuckle.AspNetCore.SwaggerGen;
+using System;
+using System.Collections;
+using System.IO;
+using System.Linq;
namespace Mirea.Api.Endpoint;