diff --git a/tasks/mikhailov-ys/Lab_3/README.md b/tasks/mikhailov-ys/Lab_3/README.md
new file mode 100644
index 0000000..841ec60
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/README.md
@@ -0,0 +1,72 @@
+# Отчет по лабораторной работе №3
+
+Выполнил студент Михайлов Юрий гр. ИСЭбд-41 .
+
+## REST API, Gateway и синхронный обмен между микросервисами
+
+## Создание микросервисов
+
+1. С помощью команды `dotnet new web -n worker-1` в терминале создали первый микросервис.
+2. Добавил решение `dotnet new sln`. Связал решение и проект командой `dotnet sln worker-1.sln add worker-1.csproj` повторил для 2-ого микросервиса.
+3. Добавил библиотеку Swagger и OpenAi в проекты и запустил с помощью команды `dotnet run`.
+
+Протестированный микросервис:
+![](picture/1.png)
+
+
+## Реализация синхронного обмена.
+Реализован код, который вызывет сихронно данные из соседнего микросервиса.
+
+```cs
+app.MapGet("/Сities/", async () =>
+{
+ var httpClient = new HttpClient();
+ var secondWorkerResponse = await httpClient.GetStringAsync("http://worker-1:8080/");
+ return secondWorkerResponse.ToArray();
+})
+.WithName("GetCountries")
+.WithOpenApi();
+```
+
+## Реализация gateway при помощи nginx
+
+Добавил nginx.conf:
+
+```conf
+server {
+ listen 8080;
+ listen [::]:8080;
+ server_name localhost;
+ location / {
+ root /usr/share/nginx/html;
+ index index.html index.htm;
+ }
+ location /worker-1/ {
+ proxy_pass http://worker-1:8080/;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_set_header X-Forwarded-Prefix /worker-1;
+ }
+ location /worker-2/ {
+ proxy_pass http://worker-2:8080/;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_set_header X-Forwarded-Prefix /worker-2;
+ }
+}
+```
+Результат после команды `docker-compose up`:
+
+Docker desktop:
+![](picture/3.png)
+
+index.html на gateway-1:
+![](picture/4.png)
+
+worker-1:
+![](picture/5.png)
+
+worker-2:
+![](picture/6.png)
diff --git a/tasks/mikhailov-ys/Lab_3/docker-compose.yml b/tasks/mikhailov-ys/Lab_3/docker-compose.yml
new file mode 100644
index 0000000..e9ca4b9
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/docker-compose.yml
@@ -0,0 +1,15 @@
+version: "3.1"
+services:
+ worker-1:
+ build: ./worker-1
+ worker-2:
+ build: ./worker-2
+ depends_on:
+ - worker-1
+ gateway:
+ image: nginx:latest
+ ports:
+ - 8080:8080
+ volumes:
+ - ./static:/usr/share/nginx/html:ro
+ - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/nginx.conf b/tasks/mikhailov-ys/Lab_3/nginx.conf
new file mode 100644
index 0000000..f649a4a
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/nginx.conf
@@ -0,0 +1,26 @@
+server {
+ listen 8080;
+ listen [::]:8080;
+ server_name localhost;
+
+ location / {
+ root /usr/share/nginx/html;
+ index index.html index.htm;
+ }
+
+ location /worker-1/ {
+ proxy_pass http://worker-1:8080/;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_set_header X-Forwarded-Prefix /worker-1;
+ }
+
+ location /worker-2/ {
+ proxy_pass http://worker-2:8080/;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-Proto $scheme;
+ proxy_set_header X-Forwarded-Prefix /worker-2;
+ }
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/picture/1.png b/tasks/mikhailov-ys/Lab_3/picture/1.png
new file mode 100644
index 0000000..981c7db
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/picture/1.png differ
diff --git a/tasks/mikhailov-ys/Lab_3/picture/3.png b/tasks/mikhailov-ys/Lab_3/picture/3.png
new file mode 100644
index 0000000..b54b4bc
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/picture/3.png differ
diff --git a/tasks/mikhailov-ys/Lab_3/picture/4.png b/tasks/mikhailov-ys/Lab_3/picture/4.png
new file mode 100644
index 0000000..f8b4e79
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/picture/4.png differ
diff --git a/tasks/mikhailov-ys/Lab_3/picture/5.png b/tasks/mikhailov-ys/Lab_3/picture/5.png
new file mode 100644
index 0000000..a4fb409
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/picture/5.png differ
diff --git a/tasks/mikhailov-ys/Lab_3/picture/6.png b/tasks/mikhailov-ys/Lab_3/picture/6.png
new file mode 100644
index 0000000..d5715ad
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/picture/6.png differ
diff --git a/tasks/mikhailov-ys/Lab_3/static/index.html b/tasks/mikhailov-ys/Lab_3/static/index.html
new file mode 100644
index 0000000..2e2b8a9
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/static/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+ Тестовое приложение для л/р 3
+
+
+ Выполнил студент гр. ИСЭбд-41. Михайлов Юрий
+ Отправить запрос к worker-1
+ Отправить запрос к worker-2
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/.vs/ProjectEvaluation/worker-1.metadata.v7.bin b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/ProjectEvaluation/worker-1.metadata.v7.bin
new file mode 100644
index 0000000..7722e8b
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/ProjectEvaluation/worker-1.metadata.v7.bin differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/.vs/ProjectEvaluation/worker-1.projects.v7.bin b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/ProjectEvaluation/worker-1.projects.v7.bin
new file mode 100644
index 0000000..8faced3
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/ProjectEvaluation/worker-1.projects.v7.bin differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/DesignTimeBuild/.dtbcache.v2 b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/DesignTimeBuild/.dtbcache.v2
new file mode 100644
index 0000000..f1aef11
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/FileContentIndex/4cd0593a-797f-497c-b632-c54e8fc012a4.vsidx b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/FileContentIndex/4cd0593a-797f-497c-b632-c54e8fc012a4.vsidx
new file mode 100644
index 0000000..a61d668
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/FileContentIndex/4cd0593a-797f-497c-b632-c54e8fc012a4.vsidx differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/FileContentIndex/6f4e3be7-dbf8-48ef-bbc8-9b3c538644a4.vsidx b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/FileContentIndex/6f4e3be7-dbf8-48ef-bbc8-9b3c538644a4.vsidx
new file mode 100644
index 0000000..61548eb
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/FileContentIndex/6f4e3be7-dbf8-48ef-bbc8-9b3c538644a4.vsidx differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/config/applicationhost.config b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/config/applicationhost.config
new file mode 100644
index 0000000..cdd2df8
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/config/applicationhost.config
@@ -0,0 +1,1026 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.futdcache.v2 b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.futdcache.v2
new file mode 100644
index 0000000..05028d4
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.futdcache.v2 differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.suo b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.suo
new file mode 100644
index 0000000..d13dc9e
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.suo differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/Dockerfile b/tasks/mikhailov-ys/Lab_3/worker-1/Dockerfile
new file mode 100644
index 0000000..7a8ce23
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/Dockerfile
@@ -0,0 +1,11 @@
+FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
+WORKDIR /app
+
+COPY . ./
+RUN dotnet restore
+RUN dotnet publish -c Release -o out
+
+FROM mcr.microsoft.com/dotnet/aspnet:8.0
+WORKDIR /app
+COPY --from=build-env /app/out .
+ENTRYPOINT ["dotnet", "worker-1.dll"]
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/Program.cs b/tasks/mikhailov-ys/Lab_3/worker-1/Program.cs
new file mode 100644
index 0000000..99193c5
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/Program.cs
@@ -0,0 +1,118 @@
+List countries = new()
+{
+ new Countries () { Uuid= Guid.Parse("6a1b4a72-5669-41fe-8d5b-106dc86f58bd"), Name = "Russia", Area = "1222" },
+ new Countries () { Uuid= Guid.Parse("464bbdb8-39c0-4644-b9c0-3df1c484ea7e"), Name = "USA", Area = "0" },
+ new Countries () { Uuid= Guid.Parse("f8692bea-b7e6-4164-b564-a921f16c35c9"), Name = "Germany", Area = "1" },
+
+};
+
+var builder = WebApplication.CreateBuilder(args);
+
+builder.Services.AddEndpointsApiExplorer();
+builder.Services.AddSwaggerGen();
+
+var app = builder.Build();
+
+if (app.Environment.IsDevelopment())
+{
+ app.UseSwagger();
+ app.UseSwaggerUI();
+}
+
+app.UseHttpsRedirection();
+
+app.MapGet("/", () =>
+{
+ return countries.Select(r => new CountrieEntityDto()
+ {
+ Uuid = r.Uuid,
+ Name = r.Name,
+ Area = r.Area,
+
+ });
+})
+.WithName("GetCountries")
+.WithOpenApi();
+
+app.MapGet("/{uuid}", (Guid uuid) =>
+{
+ var countrie = countries.FirstOrDefault(r => r.Uuid == uuid);
+ if (countrie == null)
+ return Results.NotFound();
+ return Results.Json(new CountrieEntityDto()
+ {
+ Uuid = countrie.Uuid,
+ Name = countrie.Name,
+ Area = countrie.Area,
+
+ });
+})
+.WithName("GetCountrieByGUID")
+.WithOpenApi();
+
+app.MapPost("/{name}/{area}", (string name, string area) =>
+{
+ Guid NewGuid = Guid.NewGuid();
+ countries.Add(new Countries() { Uuid = NewGuid, Name = (string)name, Area = (string)area});
+
+ var countrie = countries.FirstOrDefault(r => r.Uuid == NewGuid);
+ if (countrie == null)
+ return Results.NotFound();
+ return Results.Json(new CountrieEntityDto()
+ {
+ Uuid = countrie.Uuid,
+ Name = countrie.Name,
+ Area = countrie.Area,
+
+ });
+})
+.WithName("PostCountrie")
+.WithOpenApi();
+
+app.MapPatch("/{uuid}/{name}/{area}", (Guid uuid, string ?name, string ?area) =>
+{
+ var countrie = countries.FirstOrDefault(r => r.Uuid == uuid);
+ if (countrie == null)
+ return Results.NotFound();
+ if (name != null) countrie.Name = name;
+ if (area != ",") countrie.Area = area;
+
+
+ return Results.Json(new CountrieEntityDto()
+ {
+ Uuid = countrie.Uuid,
+ Name = countrie.Name,
+ Area = countrie.Area,
+
+ });
+})
+.WithName("UpdateCountrie")
+.WithOpenApi();
+
+app.MapDelete("/{uuid}", (Guid uuid) =>
+{
+ var countrie = countries.FirstOrDefault(r => r.Uuid == uuid);
+ if (countrie == null)
+ return Results.NotFound();
+ countries.Remove(countrie);
+ return Results.Json(new CountrieEntityDto()
+ {
+ Uuid = countrie.Uuid,
+ Name = countrie.Name,
+ Area = countrie.Area,
+
+ });
+})
+.WithName("DeleteCountrieByGUID")
+.WithOpenApi();
+
+app.Run();
+
+public class Countries
+{
+ public Guid Uuid { get; set; }
+ public string Name { get; set; } = string.Empty;
+ public string Area { get; set; } = string.Empty;
+}
+
+public class CountrieEntityDto : Countries { }
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/Properties/launchSettings.json b/tasks/mikhailov-ys/Lab_3/worker-1/Properties/launchSettings.json
new file mode 100644
index 0000000..bab6706
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/Properties/launchSettings.json
@@ -0,0 +1,38 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:51956",
+ "sslPort": 44303
+ }
+ },
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "applicationUrl": "http://localhost:5197",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "https": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "applicationUrl": "https://localhost:7027;http://localhost:5197",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/appsettings.Development.json b/tasks/mikhailov-ys/Lab_3/worker-1/appsettings.Development.json
new file mode 100644
index 0000000..3b823ef
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/appsettings.json b/tasks/mikhailov-ys/Lab_3/worker-1/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll
new file mode 100644
index 0000000..de04c45
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Microsoft.OpenApi.dll b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Microsoft.OpenApi.dll
new file mode 100644
index 0000000..1e0998d
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Microsoft.OpenApi.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
new file mode 100644
index 0000000..fd052a3
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
new file mode 100644
index 0000000..2ea00ee
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
new file mode 100644
index 0000000..0571d0f
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/appsettings.Development.json b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/appsettings.json b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.deps.json b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.deps.json
new file mode 100644
index 0000000..94ad363
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.deps.json
@@ -0,0 +1,134 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "worker-1/1.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": "8.0.0",
+ "Swashbuckle.AspNetCore": "6.5.0"
+ },
+ "runtime": {
+ "worker-1.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.OpenApi/8.0.0": {
+ "dependencies": {
+ "Microsoft.OpenApi": "1.4.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53112"
+ }
+ }
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
+ "Microsoft.OpenApi/1.4.3": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "assemblyVersion": "1.4.3.0",
+ "fileVersion": "1.4.3.0"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "dependencies": {
+ "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
+ }
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "dependencies": {
+ "Microsoft.OpenApi": "1.4.3"
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "assemblyVersion": "6.5.0.0",
+ "fileVersion": "6.5.0.0"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0"
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "assemblyVersion": "6.5.0.0",
+ "fileVersion": "6.5.0.0"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "assemblyVersion": "6.5.0.0",
+ "fileVersion": "6.5.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "worker-1/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.OpenApi/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-T4mwMvPSOYAp+KeQ4xO8H2rxpiOMJ9W/7yBBkUTMp96AHtGlPN4s7hbax2tM61LxTY775JKL4fiv5grn41EHXw==",
+ "path": "microsoft.aspnetcore.openapi/8.0.0",
+ "hashPath": "microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
+ "path": "microsoft.extensions.apidescription.server/6.0.5",
+ "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
+ },
+ "Microsoft.OpenApi/1.4.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
+ "path": "microsoft.openapi/1.4.3",
+ "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
+ "path": "swashbuckle.aspnetcore/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
+ "path": "swashbuckle.aspnetcore.swagger/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
+ "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
+ "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.dll b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.dll
new file mode 100644
index 0000000..85bb045
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.exe b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.exe
new file mode 100644
index 0000000..e31c357
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.exe differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.pdb b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.pdb
new file mode 100644
index 0000000..d67320a
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.pdb differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.runtimeconfig.json b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.runtimeconfig.json
new file mode 100644
index 0000000..5e604c7
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.runtimeconfig.json
@@ -0,0 +1,19 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "8.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/apphost.exe b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/apphost.exe
new file mode 100644
index 0000000..e31c357
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/apphost.exe differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/ref/worker-1.dll b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/ref/worker-1.dll
new file mode 100644
index 0000000..7cf2857
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/ref/worker-1.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/refint/worker-1.dll b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/refint/worker-1.dll
new file mode 100644
index 0000000..7cf2857
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/refint/worker-1.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets.build.json b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets.build.json
new file mode 100644
index 0000000..6bc1519
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets.build.json
@@ -0,0 +1,11 @@
+{
+ "Version": 1,
+ "Hash": "BF75hG0h0pFHvvsifWmW09xNUktph/Cwh45TuA9Fwgw=",
+ "Source": "worker-1",
+ "BasePath": "_content/worker-1",
+ "Mode": "Default",
+ "ManifestType": "Build",
+ "ReferencedProjectsConfiguration": [],
+ "DiscoveryPatterns": [],
+ "Assets": []
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.build.worker-1.props b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.build.worker-1.props
new file mode 100644
index 0000000..5a6032a
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.build.worker-1.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.worker-1.props b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.worker-1.props
new file mode 100644
index 0000000..74f2a7f
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.worker-1.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.worker-1.props b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.worker-1.props
new file mode 100644
index 0000000..c68cf44
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.worker-1.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfo.cs b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfo.cs
new file mode 100644
index 0000000..25baa3c
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// 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("worker-1")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("worker-1")]
+[assembly: System.Reflection.AssemblyTitleAttribute("worker-1")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Создано классом WriteCodeFragment MSBuild.
+
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfoInputs.cache b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..8eab172
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+3598cf5a66e0d331028da526c00b9c8ffd811ed52bc0659c1e11d7f85f11b483
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.GeneratedMSBuildEditorConfig.editorconfig b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..259bdb2
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,19 @@
+is_global = true
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb = true
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = worker_1
+build_property.RootNamespace = worker_1
+build_property.ProjectDir = C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 8.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1
+build_property._RazorSourceGeneratorDebug =
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.GlobalUsings.g.cs b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.GlobalUsings.g.cs
new file mode 100644
index 0000000..025530a
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.GlobalUsings.g.cs
@@ -0,0 +1,17 @@
+//
+global using global::Microsoft.AspNetCore.Builder;
+global using global::Microsoft.AspNetCore.Hosting;
+global using global::Microsoft.AspNetCore.Http;
+global using global::Microsoft.AspNetCore.Routing;
+global using global::Microsoft.Extensions.Configuration;
+global using global::Microsoft.Extensions.DependencyInjection;
+global using global::Microsoft.Extensions.Hosting;
+global using global::Microsoft.Extensions.Logging;
+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.Net.Http.Json;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.MvcApplicationPartsAssemblyInfo.cache b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.MvcApplicationPartsAssemblyInfo.cs b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.MvcApplicationPartsAssemblyInfo.cs
new file mode 100644
index 0000000..f244291
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.MvcApplicationPartsAssemblyInfo.cs
@@ -0,0 +1,17 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
+
+// Создано классом WriteCodeFragment MSBuild.
+
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.assets.cache b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.assets.cache
new file mode 100644
index 0000000..579b45e
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.assets.cache differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.AssemblyReference.cache b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..f1c36d7
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.AssemblyReference.cache differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.BuildWithSkipAnalyzers b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CopyComplete b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CoreCompileInputs.cache b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..b4074df
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+c42736ce8e07cbe1217c5095c85e30240121d2c28f254f19212889a69950faae
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.FileListAbsolute.txt b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..4a140e4
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.FileListAbsolute.txt
@@ -0,0 +1,66 @@
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\appsettings.Development.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\appsettings.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.exe
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.deps.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.runtimeconfig.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.pdb
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.GeneratedMSBuildEditorConfig.editorconfig
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfoInputs.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfo.cs
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CoreCompileInputs.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.build.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.development.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.worker-1.Microsoft.AspNetCore.StaticWebAssets.props
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.build.worker-1.props
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.worker-1.props
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.worker-1.props
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.pack.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\scopedcss\bundle\worker-1.styles.css
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\refint\worker-1.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.pdb
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.genruntimeconfig.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\ref\worker-1.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.AssemblyReference.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cs
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Microsoft.OpenApi.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CopyComplete
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\appsettings.Development.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\appsettings.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.exe
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.deps.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.runtimeconfig.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.pdb
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Microsoft.OpenApi.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.AssemblyReference.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfoInputs.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfo.cs
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CoreCompileInputs.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cs
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.build.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.development.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.worker-1.Microsoft.AspNetCore.StaticWebAssets.props
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.build.worker-1.props
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.worker-1.props
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.worker-1.props
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.pack.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\scopedcss\bundle\worker-1.styles.css
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CopyComplete
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\refint\worker-1.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.pdb
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.genruntimeconfig.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\ref\worker-1.dll
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.dll b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.dll
new file mode 100644
index 0000000..85bb045
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.genruntimeconfig.cache b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.genruntimeconfig.cache
new file mode 100644
index 0000000..ea891a7
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.genruntimeconfig.cache
@@ -0,0 +1 @@
+ab294f0f7b153f723faaa9bbd47ed63add3a83d85acb3f588c9a212ae9151c36
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.pdb b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.pdb
new file mode 100644
index 0000000..d67320a
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.pdb differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/project.assets.json b/tasks/mikhailov-ys/Lab_3/worker-1/obj/project.assets.json
new file mode 100644
index 0000000..5d15d07
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/project.assets.json
@@ -0,0 +1,542 @@
+{
+ "version": 3,
+ "targets": {
+ "net8.0": {
+ "Microsoft.AspNetCore.OpenApi/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.OpenApi": "1.4.3"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
+ "type": "package",
+ "build": {
+ "build/Microsoft.Extensions.ApiDescription.Server.props": {},
+ "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
+ },
+ "buildMultiTargeting": {
+ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
+ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
+ }
+ },
+ "Microsoft.OpenApi/1.4.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
+ },
+ "build": {
+ "build/Swashbuckle.AspNetCore.props": {}
+ }
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.OpenApi": "1.2.3"
+ },
+ "compile": {
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0"
+ },
+ "compile": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.AspNetCore.OpenApi/8.0.0": {
+ "sha512": "T4mwMvPSOYAp+KeQ4xO8H2rxpiOMJ9W/7yBBkUTMp96AHtGlPN4s7hbax2tM61LxTY775JKL4fiv5grn41EHXw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.openapi/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll",
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.xml",
+ "microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.openapi.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
+ "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
+ "type": "package",
+ "path": "microsoft.extensions.apidescription.server/6.0.5",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "build/Microsoft.Extensions.ApiDescription.Server.props",
+ "build/Microsoft.Extensions.ApiDescription.Server.targets",
+ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
+ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
+ "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
+ "microsoft.extensions.apidescription.server.nuspec",
+ "tools/Newtonsoft.Json.dll",
+ "tools/dotnet-getdocument.deps.json",
+ "tools/dotnet-getdocument.dll",
+ "tools/dotnet-getdocument.runtimeconfig.json",
+ "tools/net461-x86/GetDocument.Insider.exe",
+ "tools/net461-x86/GetDocument.Insider.exe.config",
+ "tools/net461-x86/Microsoft.Win32.Primitives.dll",
+ "tools/net461-x86/System.AppContext.dll",
+ "tools/net461-x86/System.Buffers.dll",
+ "tools/net461-x86/System.Collections.Concurrent.dll",
+ "tools/net461-x86/System.Collections.NonGeneric.dll",
+ "tools/net461-x86/System.Collections.Specialized.dll",
+ "tools/net461-x86/System.Collections.dll",
+ "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
+ "tools/net461-x86/System.ComponentModel.Primitives.dll",
+ "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
+ "tools/net461-x86/System.ComponentModel.dll",
+ "tools/net461-x86/System.Console.dll",
+ "tools/net461-x86/System.Data.Common.dll",
+ "tools/net461-x86/System.Diagnostics.Contracts.dll",
+ "tools/net461-x86/System.Diagnostics.Debug.dll",
+ "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
+ "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
+ "tools/net461-x86/System.Diagnostics.Process.dll",
+ "tools/net461-x86/System.Diagnostics.StackTrace.dll",
+ "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
+ "tools/net461-x86/System.Diagnostics.Tools.dll",
+ "tools/net461-x86/System.Diagnostics.TraceSource.dll",
+ "tools/net461-x86/System.Diagnostics.Tracing.dll",
+ "tools/net461-x86/System.Drawing.Primitives.dll",
+ "tools/net461-x86/System.Dynamic.Runtime.dll",
+ "tools/net461-x86/System.Globalization.Calendars.dll",
+ "tools/net461-x86/System.Globalization.Extensions.dll",
+ "tools/net461-x86/System.Globalization.dll",
+ "tools/net461-x86/System.IO.Compression.ZipFile.dll",
+ "tools/net461-x86/System.IO.Compression.dll",
+ "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
+ "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
+ "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
+ "tools/net461-x86/System.IO.FileSystem.dll",
+ "tools/net461-x86/System.IO.IsolatedStorage.dll",
+ "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
+ "tools/net461-x86/System.IO.Pipes.dll",
+ "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
+ "tools/net461-x86/System.IO.dll",
+ "tools/net461-x86/System.Linq.Expressions.dll",
+ "tools/net461-x86/System.Linq.Parallel.dll",
+ "tools/net461-x86/System.Linq.Queryable.dll",
+ "tools/net461-x86/System.Linq.dll",
+ "tools/net461-x86/System.Memory.dll",
+ "tools/net461-x86/System.Net.Http.dll",
+ "tools/net461-x86/System.Net.NameResolution.dll",
+ "tools/net461-x86/System.Net.NetworkInformation.dll",
+ "tools/net461-x86/System.Net.Ping.dll",
+ "tools/net461-x86/System.Net.Primitives.dll",
+ "tools/net461-x86/System.Net.Requests.dll",
+ "tools/net461-x86/System.Net.Security.dll",
+ "tools/net461-x86/System.Net.Sockets.dll",
+ "tools/net461-x86/System.Net.WebHeaderCollection.dll",
+ "tools/net461-x86/System.Net.WebSockets.Client.dll",
+ "tools/net461-x86/System.Net.WebSockets.dll",
+ "tools/net461-x86/System.Numerics.Vectors.dll",
+ "tools/net461-x86/System.ObjectModel.dll",
+ "tools/net461-x86/System.Reflection.Extensions.dll",
+ "tools/net461-x86/System.Reflection.Primitives.dll",
+ "tools/net461-x86/System.Reflection.dll",
+ "tools/net461-x86/System.Resources.Reader.dll",
+ "tools/net461-x86/System.Resources.ResourceManager.dll",
+ "tools/net461-x86/System.Resources.Writer.dll",
+ "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
+ "tools/net461-x86/System.Runtime.Extensions.dll",
+ "tools/net461-x86/System.Runtime.Handles.dll",
+ "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "tools/net461-x86/System.Runtime.InteropServices.dll",
+ "tools/net461-x86/System.Runtime.Numerics.dll",
+ "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
+ "tools/net461-x86/System.Runtime.Serialization.Json.dll",
+ "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
+ "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
+ "tools/net461-x86/System.Runtime.dll",
+ "tools/net461-x86/System.Security.Claims.dll",
+ "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
+ "tools/net461-x86/System.Security.Cryptography.Csp.dll",
+ "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
+ "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
+ "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
+ "tools/net461-x86/System.Security.Principal.dll",
+ "tools/net461-x86/System.Security.SecureString.dll",
+ "tools/net461-x86/System.Text.Encoding.Extensions.dll",
+ "tools/net461-x86/System.Text.Encoding.dll",
+ "tools/net461-x86/System.Text.RegularExpressions.dll",
+ "tools/net461-x86/System.Threading.Overlapped.dll",
+ "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
+ "tools/net461-x86/System.Threading.Tasks.dll",
+ "tools/net461-x86/System.Threading.Thread.dll",
+ "tools/net461-x86/System.Threading.ThreadPool.dll",
+ "tools/net461-x86/System.Threading.Timer.dll",
+ "tools/net461-x86/System.Threading.dll",
+ "tools/net461-x86/System.ValueTuple.dll",
+ "tools/net461-x86/System.Xml.ReaderWriter.dll",
+ "tools/net461-x86/System.Xml.XDocument.dll",
+ "tools/net461-x86/System.Xml.XPath.XDocument.dll",
+ "tools/net461-x86/System.Xml.XPath.dll",
+ "tools/net461-x86/System.Xml.XmlDocument.dll",
+ "tools/net461-x86/System.Xml.XmlSerializer.dll",
+ "tools/net461-x86/netstandard.dll",
+ "tools/net461/GetDocument.Insider.exe",
+ "tools/net461/GetDocument.Insider.exe.config",
+ "tools/net461/Microsoft.Win32.Primitives.dll",
+ "tools/net461/System.AppContext.dll",
+ "tools/net461/System.Buffers.dll",
+ "tools/net461/System.Collections.Concurrent.dll",
+ "tools/net461/System.Collections.NonGeneric.dll",
+ "tools/net461/System.Collections.Specialized.dll",
+ "tools/net461/System.Collections.dll",
+ "tools/net461/System.ComponentModel.EventBasedAsync.dll",
+ "tools/net461/System.ComponentModel.Primitives.dll",
+ "tools/net461/System.ComponentModel.TypeConverter.dll",
+ "tools/net461/System.ComponentModel.dll",
+ "tools/net461/System.Console.dll",
+ "tools/net461/System.Data.Common.dll",
+ "tools/net461/System.Diagnostics.Contracts.dll",
+ "tools/net461/System.Diagnostics.Debug.dll",
+ "tools/net461/System.Diagnostics.DiagnosticSource.dll",
+ "tools/net461/System.Diagnostics.FileVersionInfo.dll",
+ "tools/net461/System.Diagnostics.Process.dll",
+ "tools/net461/System.Diagnostics.StackTrace.dll",
+ "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
+ "tools/net461/System.Diagnostics.Tools.dll",
+ "tools/net461/System.Diagnostics.TraceSource.dll",
+ "tools/net461/System.Diagnostics.Tracing.dll",
+ "tools/net461/System.Drawing.Primitives.dll",
+ "tools/net461/System.Dynamic.Runtime.dll",
+ "tools/net461/System.Globalization.Calendars.dll",
+ "tools/net461/System.Globalization.Extensions.dll",
+ "tools/net461/System.Globalization.dll",
+ "tools/net461/System.IO.Compression.ZipFile.dll",
+ "tools/net461/System.IO.Compression.dll",
+ "tools/net461/System.IO.FileSystem.DriveInfo.dll",
+ "tools/net461/System.IO.FileSystem.Primitives.dll",
+ "tools/net461/System.IO.FileSystem.Watcher.dll",
+ "tools/net461/System.IO.FileSystem.dll",
+ "tools/net461/System.IO.IsolatedStorage.dll",
+ "tools/net461/System.IO.MemoryMappedFiles.dll",
+ "tools/net461/System.IO.Pipes.dll",
+ "tools/net461/System.IO.UnmanagedMemoryStream.dll",
+ "tools/net461/System.IO.dll",
+ "tools/net461/System.Linq.Expressions.dll",
+ "tools/net461/System.Linq.Parallel.dll",
+ "tools/net461/System.Linq.Queryable.dll",
+ "tools/net461/System.Linq.dll",
+ "tools/net461/System.Memory.dll",
+ "tools/net461/System.Net.Http.dll",
+ "tools/net461/System.Net.NameResolution.dll",
+ "tools/net461/System.Net.NetworkInformation.dll",
+ "tools/net461/System.Net.Ping.dll",
+ "tools/net461/System.Net.Primitives.dll",
+ "tools/net461/System.Net.Requests.dll",
+ "tools/net461/System.Net.Security.dll",
+ "tools/net461/System.Net.Sockets.dll",
+ "tools/net461/System.Net.WebHeaderCollection.dll",
+ "tools/net461/System.Net.WebSockets.Client.dll",
+ "tools/net461/System.Net.WebSockets.dll",
+ "tools/net461/System.Numerics.Vectors.dll",
+ "tools/net461/System.ObjectModel.dll",
+ "tools/net461/System.Reflection.Extensions.dll",
+ "tools/net461/System.Reflection.Primitives.dll",
+ "tools/net461/System.Reflection.dll",
+ "tools/net461/System.Resources.Reader.dll",
+ "tools/net461/System.Resources.ResourceManager.dll",
+ "tools/net461/System.Resources.Writer.dll",
+ "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
+ "tools/net461/System.Runtime.Extensions.dll",
+ "tools/net461/System.Runtime.Handles.dll",
+ "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "tools/net461/System.Runtime.InteropServices.dll",
+ "tools/net461/System.Runtime.Numerics.dll",
+ "tools/net461/System.Runtime.Serialization.Formatters.dll",
+ "tools/net461/System.Runtime.Serialization.Json.dll",
+ "tools/net461/System.Runtime.Serialization.Primitives.dll",
+ "tools/net461/System.Runtime.Serialization.Xml.dll",
+ "tools/net461/System.Runtime.dll",
+ "tools/net461/System.Security.Claims.dll",
+ "tools/net461/System.Security.Cryptography.Algorithms.dll",
+ "tools/net461/System.Security.Cryptography.Csp.dll",
+ "tools/net461/System.Security.Cryptography.Encoding.dll",
+ "tools/net461/System.Security.Cryptography.Primitives.dll",
+ "tools/net461/System.Security.Cryptography.X509Certificates.dll",
+ "tools/net461/System.Security.Principal.dll",
+ "tools/net461/System.Security.SecureString.dll",
+ "tools/net461/System.Text.Encoding.Extensions.dll",
+ "tools/net461/System.Text.Encoding.dll",
+ "tools/net461/System.Text.RegularExpressions.dll",
+ "tools/net461/System.Threading.Overlapped.dll",
+ "tools/net461/System.Threading.Tasks.Parallel.dll",
+ "tools/net461/System.Threading.Tasks.dll",
+ "tools/net461/System.Threading.Thread.dll",
+ "tools/net461/System.Threading.ThreadPool.dll",
+ "tools/net461/System.Threading.Timer.dll",
+ "tools/net461/System.Threading.dll",
+ "tools/net461/System.ValueTuple.dll",
+ "tools/net461/System.Xml.ReaderWriter.dll",
+ "tools/net461/System.Xml.XDocument.dll",
+ "tools/net461/System.Xml.XPath.XDocument.dll",
+ "tools/net461/System.Xml.XPath.dll",
+ "tools/net461/System.Xml.XmlDocument.dll",
+ "tools/net461/System.Xml.XmlSerializer.dll",
+ "tools/net461/netstandard.dll",
+ "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
+ "tools/netcoreapp2.1/GetDocument.Insider.dll",
+ "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
+ "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
+ ]
+ },
+ "Microsoft.OpenApi/1.4.3": {
+ "sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
+ "type": "package",
+ "path": "microsoft.openapi/1.4.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.OpenApi.dll",
+ "lib/netstandard2.0/Microsoft.OpenApi.pdb",
+ "lib/netstandard2.0/Microsoft.OpenApi.xml",
+ "microsoft.openapi.1.4.3.nupkg.sha512",
+ "microsoft.openapi.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore/6.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/Swashbuckle.AspNetCore.props",
+ "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore.swagger/6.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.swagger.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.swaggergen.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.swaggerui.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net8.0": [
+ "Microsoft.AspNetCore.OpenApi >= 8.0.0",
+ "Swashbuckle.AspNetCore >= 6.5.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\Tatyana\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
+ "projectName": "worker-1",
+ "projectPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
+ "packagesPath": "C:\\Users\\Tatyana\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\Tatyana\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[8.0.0, )"
+ },
+ "Swashbuckle.AspNetCore": {
+ "target": "Package",
+ "version": "[6.5.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/project.nuget.cache b/tasks/mikhailov-ys/Lab_3/worker-1/obj/project.nuget.cache
new file mode 100644
index 0000000..67c02fa
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/project.nuget.cache
@@ -0,0 +1,16 @@
+{
+ "version": 2,
+ "dgSpecHash": "ALwYvsocpuh/iMCNJsvJ4s//R/rYtPLPayhzmaRF5PlffJSt81eonZnp6mEHPiyLLdHXC3Iae1BkgEK0Ra3etA==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\Tatyana\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.0\\microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/worker-1.csproj.nuget.dgspec.json b/tasks/mikhailov-ys/Lab_3/worker-1/obj/worker-1.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..dad650e
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/worker-1.csproj.nuget.dgspec.json
@@ -0,0 +1,76 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
+ "projectName": "worker-1",
+ "projectPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
+ "packagesPath": "C:\\Users\\Tatyana\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\Tatyana\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[8.0.0, )"
+ },
+ "Swashbuckle.AspNetCore": {
+ "target": "Package",
+ "version": "[6.5.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/worker-1.csproj.nuget.g.props b/tasks/mikhailov-ys/Lab_3/worker-1/obj/worker-1.csproj.nuget.g.props
new file mode 100644
index 0000000..9b5c267
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/worker-1.csproj.nuget.g.props
@@ -0,0 +1,22 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\Tatyana\.nuget\packages\
+ PackageReference
+ 6.8.0
+
+
+
+
+
+
+
+
+
+ C:\Users\Tatyana\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/obj/worker-1.csproj.nuget.g.targets b/tasks/mikhailov-ys/Lab_3/worker-1/obj/worker-1.csproj.nuget.g.targets
new file mode 100644
index 0000000..eea8d76
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/obj/worker-1.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj b/tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj
new file mode 100644
index 0000000..795c30e
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj
@@ -0,0 +1,15 @@
+
+
+
+ net8.0
+ enable
+ enable
+ worker_1
+
+
+
+
+
+
+
+
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj.user b/tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj.user
new file mode 100644
index 0000000..9ff5820
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj.user
@@ -0,0 +1,6 @@
+
+
+
+ https
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-1/worker-1.sln b/tasks/mikhailov-ys/Lab_3/worker-1/worker-1.sln
new file mode 100644
index 0000000..fc4131f
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-1/worker-1.sln
@@ -0,0 +1,22 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31903.59
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "worker-1", "worker-1.csproj", "{90F6C7BD-78E2-47C8-A702-DD47E74D3865}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {90F6C7BD-78E2-47C8-A702-DD47E74D3865}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {90F6C7BD-78E2-47C8-A702-DD47E74D3865}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {90F6C7BD-78E2-47C8-A702-DD47E74D3865}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {90F6C7BD-78E2-47C8-A702-DD47E74D3865}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+EndGlobal
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/DesignTimeBuild/.dtbcache.v2 b/tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/DesignTimeBuild/.dtbcache.v2
new file mode 100644
index 0000000..7c9506c
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/config/applicationhost.config b/tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/config/applicationhost.config
new file mode 100644
index 0000000..cdd2df8
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/config/applicationhost.config
@@ -0,0 +1,1026 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/v17/.suo b/tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/v17/.suo
new file mode 100644
index 0000000..80fd8f2
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/v17/.suo differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/Dockerfile b/tasks/mikhailov-ys/Lab_3/worker-2/Dockerfile
new file mode 100644
index 0000000..7f6b963
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/Dockerfile
@@ -0,0 +1,11 @@
+FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
+WORKDIR /app
+
+COPY . ./
+RUN dotnet restore
+RUN dotnet publish -c Release -o out
+
+FROM mcr.microsoft.com/dotnet/aspnet:8.0
+WORKDIR /app
+COPY --from=build-env /app/out .
+ENTRYPOINT ["dotnet", "worker-2.dll"]
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/Program.cs b/tasks/mikhailov-ys/Lab_3/worker-2/Program.cs
new file mode 100644
index 0000000..65083a5
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/Program.cs
@@ -0,0 +1,142 @@
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.AspNetCore.Builder;
+using Microsoft.OpenApi.Models;
+
+List<Сities> сities = new()
+{
+ new Сities() { Uuid= Guid.NewGuid(), Population = "134r23", Name = "Moscow", IdCountrie = Guid.Parse("6a1b4a72-5669-41fe-8d5b-106dc86f58bd") },
+ new Сities() { Uuid= Guid.NewGuid(), Population = "223322213", Name = "Paris", IdCountrie = Guid.Parse("f8692bea-b7e6-4164-b564-a921f16c35c9") },
+ new Сities() { Uuid= Guid.NewGuid(), Population = "32123", Name = "New York", IdCountrie = Guid.Parse("464bbdb8-39c0-4644-b9c0-3df1c484ea7e") },
+ new Сities() { Uuid= Guid.NewGuid(), Population = "312122", Name = "Sant Peterburg", IdCountrie = Guid.Parse("464bbdb8-39c0-4644-b9c0-3df1c484ea7e") },
+};
+
+var builder = WebApplication.CreateBuilder(args);
+
+builder.Services.AddEndpointsApiExplorer();
+builder.Services.AddSwaggerGen();
+
+var app = builder.Build();
+
+if (app.Environment.IsDevelopment())
+{
+ app.UseSwagger();
+ app.UseSwaggerUI();
+}
+
+app.UseHttpsRedirection();
+
+app.MapGet("/", () =>
+{
+ return сities.Select(r => new CityEntityDto()
+ {
+ Uuid = r.Uuid,
+ Population = r.Population,
+ Name = r.Name,
+ IdCountrie = r.IdCountrie,
+ });
+})
+.WithName("GetСities")
+.WithOpenApi();
+
+app.MapGet("/{uuid}", (Guid uuid) =>
+{
+ var city = сities.FirstOrDefault(r => r.Uuid == uuid);
+ if (city == null)
+ return Results.NotFound();
+ return Results.Json(new CityEntityDto()
+ {
+ Uuid = city.Uuid,
+ Population = city.Population,
+ Name = city.Name,
+ IdCountrie = city.IdCountrie,
+ });
+})
+.WithName("GetCityByGUID")
+.WithOpenApi();
+
+app.MapPost("/{population}/{name}/{IdCountrie}", (string? Population, string Name, Guid IdCountrie) =>
+{
+ Guid NewGuid = Guid.NewGuid();
+ сities.Add(new Сities() { Uuid = NewGuid, Population = (string)Population, Name = (string)Name, IdCountrie = (Guid)IdCountrie });
+
+ var city = сities.FirstOrDefault(r => r.Uuid == NewGuid);
+ if (city == null)
+ return Results.NotFound();
+ return Results.Json(new CityEntityDto()
+ {
+ Uuid = city.Uuid,
+ Population = city.Population,
+ Name = city.Name,
+ IdCountrie = city.IdCountrie,
+ });
+})
+.WithName("PostCity")
+.WithOpenApi();
+
+app.MapPatch("/{uuid}/{population}/{name}/{IdCountrie}", (Guid uuid, string ?population, string name, Guid IdCountrie) =>
+{
+ var city = сities.FirstOrDefault(r => r.Uuid == uuid);
+ if (city == null)
+ return Results.NotFound();
+ if (population != ",") city.Population = population;
+ if (name != city.Name) city.Name = name;
+ if (IdCountrie != city.IdCountrie) city.IdCountrie = IdCountrie;
+
+ return Results.Json(new CityEntityDto()
+ {
+ Uuid = city.Uuid,
+ Population = city.Population,
+ Name = city.Name,
+ IdCountrie = city.IdCountrie,
+ });
+})
+.WithName("UpdateCity")
+.WithOpenApi();
+
+app.MapDelete("/{uuid}", (Guid uuid) =>
+{
+ var city = сities.FirstOrDefault(r => r.Uuid == uuid);
+ if (city == null)
+ return Results.NotFound();
+ сities.Remove(city);
+ return Results.Json(new CityEntityDto()
+ {
+ Uuid = city.Uuid,
+ Population = city.Population,
+ Name = city.Name,
+ IdCountrie = city.IdCountrie,
+ });
+})
+.WithName("DeleteCity")
+.WithOpenApi();
+
+app.MapGet("/Сities/", async () =>
+{
+ var httpClient = new HttpClient();
+ var secondWorkerResponse = await httpClient.GetStringAsync("http://worker-1:8080/");
+
+ return secondWorkerResponse.ToArray();
+})
+.WithName("GetCountries")
+.WithOpenApi();
+
+app.Run();
+
+public class Сities
+{
+ public Guid Uuid { get; set; }
+ public string Population { get; set; } = string.Empty;
+ public string Name { get; set; } = string.Empty;
+ public Guid IdCountrie { get; set; }
+}
+
+public class CityEntityDto : Сities { }
+
+public class Countries
+{
+ public Guid Uuid { get; set; }
+ public string Name { get; set; } = string.Empty;
+ public string Area { get; set; } = string.Empty;
+}
+
+public class CountrieEntityDto : Countries { }
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/Properties/launchSettings.json b/tasks/mikhailov-ys/Lab_3/worker-2/Properties/launchSettings.json
new file mode 100644
index 0000000..c0a3346
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/Properties/launchSettings.json
@@ -0,0 +1,38 @@
+{
+ "$schema": "http://json.schemastore.org/launchsettings.json",
+ "iisSettings": {
+ "windowsAuthentication": false,
+ "anonymousAuthentication": true,
+ "iisExpress": {
+ "applicationUrl": "http://localhost:36404",
+ "sslPort": 44384
+ }
+ },
+ "profiles": {
+ "http": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "applicationUrl": "http://localhost:5101",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "https": {
+ "commandName": "Project",
+ "dotnetRunMessages": true,
+ "launchBrowser": true,
+ "applicationUrl": "https://localhost:7125;http://localhost:5101",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ },
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
+ }
+ }
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/appsettings.Development.json b/tasks/mikhailov-ys/Lab_3/worker-2/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/appsettings.json b/tasks/mikhailov-ys/Lab_3/worker-2/appsettings.json
new file mode 100644
index 0000000..b41ccef
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll
new file mode 100644
index 0000000..de04c45
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Microsoft.OpenApi.dll b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Microsoft.OpenApi.dll
new file mode 100644
index 0000000..1e0998d
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Microsoft.OpenApi.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
new file mode 100644
index 0000000..fd052a3
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
new file mode 100644
index 0000000..2ea00ee
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
new file mode 100644
index 0000000..0571d0f
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/appsettings.Development.json b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/appsettings.json b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/appsettings.json
new file mode 100644
index 0000000..10f68b8
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/appsettings.json
@@ -0,0 +1,9 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "AllowedHosts": "*"
+}
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.deps.json b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.deps.json
new file mode 100644
index 0000000..2f48163
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.deps.json
@@ -0,0 +1,134 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "worker-2/1.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": "8.0.0",
+ "Swashbuckle.AspNetCore": "6.5.0"
+ },
+ "runtime": {
+ "worker-2.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.OpenApi/8.0.0": {
+ "dependencies": {
+ "Microsoft.OpenApi": "1.4.3"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53112"
+ }
+ }
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
+ "Microsoft.OpenApi/1.4.3": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "assemblyVersion": "1.4.3.0",
+ "fileVersion": "1.4.3.0"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "dependencies": {
+ "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
+ }
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "dependencies": {
+ "Microsoft.OpenApi": "1.4.3"
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "assemblyVersion": "6.5.0.0",
+ "fileVersion": "6.5.0.0"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0"
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "assemblyVersion": "6.5.0.0",
+ "fileVersion": "6.5.0.0"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "assemblyVersion": "6.5.0.0",
+ "fileVersion": "6.5.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "worker-2/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Microsoft.AspNetCore.OpenApi/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-T4mwMvPSOYAp+KeQ4xO8H2rxpiOMJ9W/7yBBkUTMp96AHtGlPN4s7hbax2tM61LxTY775JKL4fiv5grn41EHXw==",
+ "path": "microsoft.aspnetcore.openapi/8.0.0",
+ "hashPath": "microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
+ "path": "microsoft.extensions.apidescription.server/6.0.5",
+ "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
+ },
+ "Microsoft.OpenApi/1.4.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
+ "path": "microsoft.openapi/1.4.3",
+ "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
+ "path": "swashbuckle.aspnetcore/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
+ "path": "swashbuckle.aspnetcore.swagger/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
+ "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
+ "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.dll b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.dll
new file mode 100644
index 0000000..78238d4
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.exe b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.exe
new file mode 100644
index 0000000..2b3048a
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.exe differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.pdb b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.pdb
new file mode 100644
index 0000000..76f1b62
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.pdb differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.runtimeconfig.json b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.runtimeconfig.json
new file mode 100644
index 0000000..5e604c7
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.runtimeconfig.json
@@ -0,0 +1,19 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "8.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/apphost.exe b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/apphost.exe
new file mode 100644
index 0000000..2b3048a
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/apphost.exe differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/ref/worker-2.dll b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/ref/worker-2.dll
new file mode 100644
index 0000000..3949ae1
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/ref/worker-2.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/refint/worker-2.dll b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/refint/worker-2.dll
new file mode 100644
index 0000000..3949ae1
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/refint/worker-2.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets.build.json b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets.build.json
new file mode 100644
index 0000000..3a45a53
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets.build.json
@@ -0,0 +1,11 @@
+{
+ "Version": 1,
+ "Hash": "z2MY7t3lyZIl9bBara1Lj5//SrieSffKb2Jw8dnlRYM=",
+ "Source": "worker-2",
+ "BasePath": "_content/worker-2",
+ "Mode": "Default",
+ "ManifestType": "Build",
+ "ReferencedProjectsConfiguration": [],
+ "DiscoveryPatterns": [],
+ "Assets": []
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.build.worker-2.props b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.build.worker-2.props
new file mode 100644
index 0000000..5a6032a
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.build.worker-2.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.worker-2.props b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.worker-2.props
new file mode 100644
index 0000000..86cecd7
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.worker-2.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.worker-2.props b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.worker-2.props
new file mode 100644
index 0000000..ab4844a
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.worker-2.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfo.cs b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfo.cs
new file mode 100644
index 0000000..0637a38
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// 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("worker-2")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("worker-2")]
+[assembly: System.Reflection.AssemblyTitleAttribute("worker-2")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Создано классом WriteCodeFragment MSBuild.
+
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfoInputs.cache b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..3c795b7
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+289a96ce4f3edd48759f337eb6257abcd4aef46bc4e09ccc9c57510039f1515f
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.GeneratedMSBuildEditorConfig.editorconfig b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..a7edd73
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,19 @@
+is_global = true
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb = true
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = worker_2
+build_property.RootNamespace = worker_2
+build_property.ProjectDir = C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 8.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2
+build_property._RazorSourceGeneratorDebug =
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.GlobalUsings.g.cs b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.GlobalUsings.g.cs
new file mode 100644
index 0000000..025530a
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.GlobalUsings.g.cs
@@ -0,0 +1,17 @@
+//
+global using global::Microsoft.AspNetCore.Builder;
+global using global::Microsoft.AspNetCore.Hosting;
+global using global::Microsoft.AspNetCore.Http;
+global using global::Microsoft.AspNetCore.Routing;
+global using global::Microsoft.Extensions.Configuration;
+global using global::Microsoft.Extensions.DependencyInjection;
+global using global::Microsoft.Extensions.Hosting;
+global using global::Microsoft.Extensions.Logging;
+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.Net.Http.Json;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cache b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cs b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cs
new file mode 100644
index 0000000..f244291
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cs
@@ -0,0 +1,17 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
+
+// Создано классом WriteCodeFragment MSBuild.
+
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.assets.cache b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.assets.cache
new file mode 100644
index 0000000..f81d743
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.assets.cache differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.AssemblyReference.cache b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..f1c36d7
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.AssemblyReference.cache differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.BuildWithSkipAnalyzers b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CopyComplete b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CopyComplete
new file mode 100644
index 0000000..e69de29
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CoreCompileInputs.cache b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..c4d6902
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+857cab4df71d2f7001936d727f3b09f09120265158969e70d7733dc9217e6252
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.FileListAbsolute.txt b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..e8b021a
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.FileListAbsolute.txt
@@ -0,0 +1,66 @@
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\appsettings.Development.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\appsettings.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\worker-2.exe
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\worker-2.deps.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\worker-2.runtimeconfig.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\worker-2.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\worker-2.pdb
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.GeneratedMSBuildEditorConfig.editorconfig
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.AssemblyInfoInputs.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.AssemblyInfo.cs
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.csproj.CoreCompileInputs.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.MvcApplicationPartsAssemblyInfo.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\staticwebassets.build.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\staticwebassets.development.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\staticwebassets\msbuild.worker-2.Microsoft.AspNetCore.StaticWebAssets.props
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\staticwebassets\msbuild.build.worker-2.props
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.worker-2.props
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.worker-2.props
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\staticwebassets.pack.json
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\scopedcss\bundle\worker-2.styles.css
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\refint\worker-2.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.pdb
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.genruntimeconfig.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\ref\worker-2.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.csproj.AssemblyReference.cache
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.MvcApplicationPartsAssemblyInfo.cs
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\Microsoft.OpenApi.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
+C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2\obj\Debug\net8.0\worker-2.csproj.CopyComplete
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\appsettings.Development.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\appsettings.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\worker-2.exe
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\worker-2.deps.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\worker-2.runtimeconfig.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\worker-2.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\worker-2.pdb
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\Microsoft.OpenApi.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.csproj.AssemblyReference.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.AssemblyInfoInputs.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.AssemblyInfo.cs
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.csproj.CoreCompileInputs.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.MvcApplicationPartsAssemblyInfo.cs
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.MvcApplicationPartsAssemblyInfo.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\staticwebassets.build.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\staticwebassets.development.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\staticwebassets\msbuild.worker-2.Microsoft.AspNetCore.StaticWebAssets.props
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\staticwebassets\msbuild.build.worker-2.props
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.worker-2.props
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.worker-2.props
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\staticwebassets.pack.json
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\scopedcss\bundle\worker-2.styles.css
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.csproj.CopyComplete
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\refint\worker-2.dll
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.pdb
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\worker-2.genruntimeconfig.cache
+C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\obj\Debug\net8.0\ref\worker-2.dll
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.dll b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.dll
new file mode 100644
index 0000000..78238d4
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.dll differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.genruntimeconfig.cache b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.genruntimeconfig.cache
new file mode 100644
index 0000000..de54b72
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.genruntimeconfig.cache
@@ -0,0 +1 @@
+596c4b847b619b368d1cf2ac616fad9fb48861b12232c63b0197c840702d4bb3
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.pdb b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.pdb
new file mode 100644
index 0000000..76f1b62
Binary files /dev/null and b/tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/worker-2.pdb differ
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/project.assets.json b/tasks/mikhailov-ys/Lab_3/worker-2/obj/project.assets.json
new file mode 100644
index 0000000..5713694
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/project.assets.json
@@ -0,0 +1,542 @@
+{
+ "version": 3,
+ "targets": {
+ "net8.0": {
+ "Microsoft.AspNetCore.OpenApi/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.OpenApi": "1.4.3"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
+ "related": ".xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
+ "type": "package",
+ "build": {
+ "build/Microsoft.Extensions.ApiDescription.Server.props": {},
+ "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
+ },
+ "buildMultiTargeting": {
+ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
+ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
+ }
+ },
+ "Microsoft.OpenApi/1.4.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
+ },
+ "build": {
+ "build/Swashbuckle.AspNetCore.props": {}
+ }
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.OpenApi": "1.2.3"
+ },
+ "compile": {
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "type": "package",
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0"
+ },
+ "compile": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "frameworkReferences": [
+ "Microsoft.AspNetCore.App"
+ ]
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.AspNetCore.OpenApi/8.0.0": {
+ "sha512": "T4mwMvPSOYAp+KeQ4xO8H2rxpiOMJ9W/7yBBkUTMp96AHtGlPN4s7hbax2tM61LxTY775JKL4fiv5grn41EHXw==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.openapi/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll",
+ "lib/net8.0/Microsoft.AspNetCore.OpenApi.xml",
+ "microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.openapi.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
+ "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
+ "type": "package",
+ "path": "microsoft.extensions.apidescription.server/6.0.5",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "build/Microsoft.Extensions.ApiDescription.Server.props",
+ "build/Microsoft.Extensions.ApiDescription.Server.targets",
+ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
+ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
+ "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
+ "microsoft.extensions.apidescription.server.nuspec",
+ "tools/Newtonsoft.Json.dll",
+ "tools/dotnet-getdocument.deps.json",
+ "tools/dotnet-getdocument.dll",
+ "tools/dotnet-getdocument.runtimeconfig.json",
+ "tools/net461-x86/GetDocument.Insider.exe",
+ "tools/net461-x86/GetDocument.Insider.exe.config",
+ "tools/net461-x86/Microsoft.Win32.Primitives.dll",
+ "tools/net461-x86/System.AppContext.dll",
+ "tools/net461-x86/System.Buffers.dll",
+ "tools/net461-x86/System.Collections.Concurrent.dll",
+ "tools/net461-x86/System.Collections.NonGeneric.dll",
+ "tools/net461-x86/System.Collections.Specialized.dll",
+ "tools/net461-x86/System.Collections.dll",
+ "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
+ "tools/net461-x86/System.ComponentModel.Primitives.dll",
+ "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
+ "tools/net461-x86/System.ComponentModel.dll",
+ "tools/net461-x86/System.Console.dll",
+ "tools/net461-x86/System.Data.Common.dll",
+ "tools/net461-x86/System.Diagnostics.Contracts.dll",
+ "tools/net461-x86/System.Diagnostics.Debug.dll",
+ "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
+ "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
+ "tools/net461-x86/System.Diagnostics.Process.dll",
+ "tools/net461-x86/System.Diagnostics.StackTrace.dll",
+ "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
+ "tools/net461-x86/System.Diagnostics.Tools.dll",
+ "tools/net461-x86/System.Diagnostics.TraceSource.dll",
+ "tools/net461-x86/System.Diagnostics.Tracing.dll",
+ "tools/net461-x86/System.Drawing.Primitives.dll",
+ "tools/net461-x86/System.Dynamic.Runtime.dll",
+ "tools/net461-x86/System.Globalization.Calendars.dll",
+ "tools/net461-x86/System.Globalization.Extensions.dll",
+ "tools/net461-x86/System.Globalization.dll",
+ "tools/net461-x86/System.IO.Compression.ZipFile.dll",
+ "tools/net461-x86/System.IO.Compression.dll",
+ "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
+ "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
+ "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
+ "tools/net461-x86/System.IO.FileSystem.dll",
+ "tools/net461-x86/System.IO.IsolatedStorage.dll",
+ "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
+ "tools/net461-x86/System.IO.Pipes.dll",
+ "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
+ "tools/net461-x86/System.IO.dll",
+ "tools/net461-x86/System.Linq.Expressions.dll",
+ "tools/net461-x86/System.Linq.Parallel.dll",
+ "tools/net461-x86/System.Linq.Queryable.dll",
+ "tools/net461-x86/System.Linq.dll",
+ "tools/net461-x86/System.Memory.dll",
+ "tools/net461-x86/System.Net.Http.dll",
+ "tools/net461-x86/System.Net.NameResolution.dll",
+ "tools/net461-x86/System.Net.NetworkInformation.dll",
+ "tools/net461-x86/System.Net.Ping.dll",
+ "tools/net461-x86/System.Net.Primitives.dll",
+ "tools/net461-x86/System.Net.Requests.dll",
+ "tools/net461-x86/System.Net.Security.dll",
+ "tools/net461-x86/System.Net.Sockets.dll",
+ "tools/net461-x86/System.Net.WebHeaderCollection.dll",
+ "tools/net461-x86/System.Net.WebSockets.Client.dll",
+ "tools/net461-x86/System.Net.WebSockets.dll",
+ "tools/net461-x86/System.Numerics.Vectors.dll",
+ "tools/net461-x86/System.ObjectModel.dll",
+ "tools/net461-x86/System.Reflection.Extensions.dll",
+ "tools/net461-x86/System.Reflection.Primitives.dll",
+ "tools/net461-x86/System.Reflection.dll",
+ "tools/net461-x86/System.Resources.Reader.dll",
+ "tools/net461-x86/System.Resources.ResourceManager.dll",
+ "tools/net461-x86/System.Resources.Writer.dll",
+ "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
+ "tools/net461-x86/System.Runtime.Extensions.dll",
+ "tools/net461-x86/System.Runtime.Handles.dll",
+ "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "tools/net461-x86/System.Runtime.InteropServices.dll",
+ "tools/net461-x86/System.Runtime.Numerics.dll",
+ "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
+ "tools/net461-x86/System.Runtime.Serialization.Json.dll",
+ "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
+ "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
+ "tools/net461-x86/System.Runtime.dll",
+ "tools/net461-x86/System.Security.Claims.dll",
+ "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
+ "tools/net461-x86/System.Security.Cryptography.Csp.dll",
+ "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
+ "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
+ "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
+ "tools/net461-x86/System.Security.Principal.dll",
+ "tools/net461-x86/System.Security.SecureString.dll",
+ "tools/net461-x86/System.Text.Encoding.Extensions.dll",
+ "tools/net461-x86/System.Text.Encoding.dll",
+ "tools/net461-x86/System.Text.RegularExpressions.dll",
+ "tools/net461-x86/System.Threading.Overlapped.dll",
+ "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
+ "tools/net461-x86/System.Threading.Tasks.dll",
+ "tools/net461-x86/System.Threading.Thread.dll",
+ "tools/net461-x86/System.Threading.ThreadPool.dll",
+ "tools/net461-x86/System.Threading.Timer.dll",
+ "tools/net461-x86/System.Threading.dll",
+ "tools/net461-x86/System.ValueTuple.dll",
+ "tools/net461-x86/System.Xml.ReaderWriter.dll",
+ "tools/net461-x86/System.Xml.XDocument.dll",
+ "tools/net461-x86/System.Xml.XPath.XDocument.dll",
+ "tools/net461-x86/System.Xml.XPath.dll",
+ "tools/net461-x86/System.Xml.XmlDocument.dll",
+ "tools/net461-x86/System.Xml.XmlSerializer.dll",
+ "tools/net461-x86/netstandard.dll",
+ "tools/net461/GetDocument.Insider.exe",
+ "tools/net461/GetDocument.Insider.exe.config",
+ "tools/net461/Microsoft.Win32.Primitives.dll",
+ "tools/net461/System.AppContext.dll",
+ "tools/net461/System.Buffers.dll",
+ "tools/net461/System.Collections.Concurrent.dll",
+ "tools/net461/System.Collections.NonGeneric.dll",
+ "tools/net461/System.Collections.Specialized.dll",
+ "tools/net461/System.Collections.dll",
+ "tools/net461/System.ComponentModel.EventBasedAsync.dll",
+ "tools/net461/System.ComponentModel.Primitives.dll",
+ "tools/net461/System.ComponentModel.TypeConverter.dll",
+ "tools/net461/System.ComponentModel.dll",
+ "tools/net461/System.Console.dll",
+ "tools/net461/System.Data.Common.dll",
+ "tools/net461/System.Diagnostics.Contracts.dll",
+ "tools/net461/System.Diagnostics.Debug.dll",
+ "tools/net461/System.Diagnostics.DiagnosticSource.dll",
+ "tools/net461/System.Diagnostics.FileVersionInfo.dll",
+ "tools/net461/System.Diagnostics.Process.dll",
+ "tools/net461/System.Diagnostics.StackTrace.dll",
+ "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
+ "tools/net461/System.Diagnostics.Tools.dll",
+ "tools/net461/System.Diagnostics.TraceSource.dll",
+ "tools/net461/System.Diagnostics.Tracing.dll",
+ "tools/net461/System.Drawing.Primitives.dll",
+ "tools/net461/System.Dynamic.Runtime.dll",
+ "tools/net461/System.Globalization.Calendars.dll",
+ "tools/net461/System.Globalization.Extensions.dll",
+ "tools/net461/System.Globalization.dll",
+ "tools/net461/System.IO.Compression.ZipFile.dll",
+ "tools/net461/System.IO.Compression.dll",
+ "tools/net461/System.IO.FileSystem.DriveInfo.dll",
+ "tools/net461/System.IO.FileSystem.Primitives.dll",
+ "tools/net461/System.IO.FileSystem.Watcher.dll",
+ "tools/net461/System.IO.FileSystem.dll",
+ "tools/net461/System.IO.IsolatedStorage.dll",
+ "tools/net461/System.IO.MemoryMappedFiles.dll",
+ "tools/net461/System.IO.Pipes.dll",
+ "tools/net461/System.IO.UnmanagedMemoryStream.dll",
+ "tools/net461/System.IO.dll",
+ "tools/net461/System.Linq.Expressions.dll",
+ "tools/net461/System.Linq.Parallel.dll",
+ "tools/net461/System.Linq.Queryable.dll",
+ "tools/net461/System.Linq.dll",
+ "tools/net461/System.Memory.dll",
+ "tools/net461/System.Net.Http.dll",
+ "tools/net461/System.Net.NameResolution.dll",
+ "tools/net461/System.Net.NetworkInformation.dll",
+ "tools/net461/System.Net.Ping.dll",
+ "tools/net461/System.Net.Primitives.dll",
+ "tools/net461/System.Net.Requests.dll",
+ "tools/net461/System.Net.Security.dll",
+ "tools/net461/System.Net.Sockets.dll",
+ "tools/net461/System.Net.WebHeaderCollection.dll",
+ "tools/net461/System.Net.WebSockets.Client.dll",
+ "tools/net461/System.Net.WebSockets.dll",
+ "tools/net461/System.Numerics.Vectors.dll",
+ "tools/net461/System.ObjectModel.dll",
+ "tools/net461/System.Reflection.Extensions.dll",
+ "tools/net461/System.Reflection.Primitives.dll",
+ "tools/net461/System.Reflection.dll",
+ "tools/net461/System.Resources.Reader.dll",
+ "tools/net461/System.Resources.ResourceManager.dll",
+ "tools/net461/System.Resources.Writer.dll",
+ "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
+ "tools/net461/System.Runtime.Extensions.dll",
+ "tools/net461/System.Runtime.Handles.dll",
+ "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "tools/net461/System.Runtime.InteropServices.dll",
+ "tools/net461/System.Runtime.Numerics.dll",
+ "tools/net461/System.Runtime.Serialization.Formatters.dll",
+ "tools/net461/System.Runtime.Serialization.Json.dll",
+ "tools/net461/System.Runtime.Serialization.Primitives.dll",
+ "tools/net461/System.Runtime.Serialization.Xml.dll",
+ "tools/net461/System.Runtime.dll",
+ "tools/net461/System.Security.Claims.dll",
+ "tools/net461/System.Security.Cryptography.Algorithms.dll",
+ "tools/net461/System.Security.Cryptography.Csp.dll",
+ "tools/net461/System.Security.Cryptography.Encoding.dll",
+ "tools/net461/System.Security.Cryptography.Primitives.dll",
+ "tools/net461/System.Security.Cryptography.X509Certificates.dll",
+ "tools/net461/System.Security.Principal.dll",
+ "tools/net461/System.Security.SecureString.dll",
+ "tools/net461/System.Text.Encoding.Extensions.dll",
+ "tools/net461/System.Text.Encoding.dll",
+ "tools/net461/System.Text.RegularExpressions.dll",
+ "tools/net461/System.Threading.Overlapped.dll",
+ "tools/net461/System.Threading.Tasks.Parallel.dll",
+ "tools/net461/System.Threading.Tasks.dll",
+ "tools/net461/System.Threading.Thread.dll",
+ "tools/net461/System.Threading.ThreadPool.dll",
+ "tools/net461/System.Threading.Timer.dll",
+ "tools/net461/System.Threading.dll",
+ "tools/net461/System.ValueTuple.dll",
+ "tools/net461/System.Xml.ReaderWriter.dll",
+ "tools/net461/System.Xml.XDocument.dll",
+ "tools/net461/System.Xml.XPath.XDocument.dll",
+ "tools/net461/System.Xml.XPath.dll",
+ "tools/net461/System.Xml.XmlDocument.dll",
+ "tools/net461/System.Xml.XmlSerializer.dll",
+ "tools/net461/netstandard.dll",
+ "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
+ "tools/netcoreapp2.1/GetDocument.Insider.dll",
+ "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
+ "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
+ ]
+ },
+ "Microsoft.OpenApi/1.4.3": {
+ "sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
+ "type": "package",
+ "path": "microsoft.openapi/1.4.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.OpenApi.dll",
+ "lib/netstandard2.0/Microsoft.OpenApi.pdb",
+ "lib/netstandard2.0/Microsoft.OpenApi.xml",
+ "microsoft.openapi.1.4.3.nupkg.sha512",
+ "microsoft.openapi.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore/6.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/Swashbuckle.AspNetCore.props",
+ "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore.swagger/6.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
+ "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.swagger.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
+ "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.swaggergen.nuspec"
+ ]
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
+ "type": "package",
+ "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
+ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
+ "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
+ "swashbuckle.aspnetcore.swaggerui.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net8.0": [
+ "Microsoft.AspNetCore.OpenApi >= 8.0.0",
+ "Swashbuckle.AspNetCore >= 6.5.0"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\Tatyana\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-2\\worker-2.csproj",
+ "projectName": "worker-2",
+ "projectPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-2\\worker-2.csproj",
+ "packagesPath": "C:\\Users\\Tatyana\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-2\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\Tatyana\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[8.0.0, )"
+ },
+ "Swashbuckle.AspNetCore": {
+ "target": "Package",
+ "version": "[6.5.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/project.nuget.cache b/tasks/mikhailov-ys/Lab_3/worker-2/obj/project.nuget.cache
new file mode 100644
index 0000000..cba8706
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/project.nuget.cache
@@ -0,0 +1,16 @@
+{
+ "version": 2,
+ "dgSpecHash": "V7BYehFhxEeg1W9LRihuIVILV2i5eb1qd2StL+5mYrb+20xY8wZ9U5en9BydgdrRmqg8fIFLxceO2sTdb/S6iw==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-2\\worker-2.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\Tatyana\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.0\\microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
+ "C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/worker-2.csproj.nuget.dgspec.json b/tasks/mikhailov-ys/Lab_3/worker-2/obj/worker-2.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..b4c78c5
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/worker-2.csproj.nuget.dgspec.json
@@ -0,0 +1,76 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-2\\worker-2.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-2\\worker-2.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-2\\worker-2.csproj",
+ "projectName": "worker-2",
+ "projectPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-2\\worker-2.csproj",
+ "packagesPath": "C:\\Users\\Tatyana\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-2\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\Tatyana\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Microsoft.AspNetCore.OpenApi": {
+ "target": "Package",
+ "version": "[8.0.0, )"
+ },
+ "Swashbuckle.AspNetCore": {
+ "target": "Package",
+ "version": "[6.5.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.AspNetCore.App": {
+ "privateAssets": "none"
+ },
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/worker-2.csproj.nuget.g.props b/tasks/mikhailov-ys/Lab_3/worker-2/obj/worker-2.csproj.nuget.g.props
new file mode 100644
index 0000000..9b5c267
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/worker-2.csproj.nuget.g.props
@@ -0,0 +1,22 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\Tatyana\.nuget\packages\
+ PackageReference
+ 6.8.0
+
+
+
+
+
+
+
+
+
+ C:\Users\Tatyana\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/obj/worker-2.csproj.nuget.g.targets b/tasks/mikhailov-ys/Lab_3/worker-2/obj/worker-2.csproj.nuget.g.targets
new file mode 100644
index 0000000..eea8d76
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/obj/worker-2.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/worker-2.csproj b/tasks/mikhailov-ys/Lab_3/worker-2/worker-2.csproj
new file mode 100644
index 0000000..9e8d22f
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/worker-2.csproj
@@ -0,0 +1,15 @@
+
+
+
+ net8.0
+ enable
+ enable
+ worker_2
+
+
+
+
+
+
+
+
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/worker-2.csproj.user b/tasks/mikhailov-ys/Lab_3/worker-2/worker-2.csproj.user
new file mode 100644
index 0000000..9ff5820
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/worker-2.csproj.user
@@ -0,0 +1,6 @@
+
+
+
+ https
+
+
\ No newline at end of file
diff --git a/tasks/mikhailov-ys/Lab_3/worker-2/worker-2.sln b/tasks/mikhailov-ys/Lab_3/worker-2/worker-2.sln
new file mode 100644
index 0000000..8f8c96d
--- /dev/null
+++ b/tasks/mikhailov-ys/Lab_3/worker-2/worker-2.sln
@@ -0,0 +1,22 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31903.59
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "worker-2", "worker-2.csproj", "{C9D63524-2C63-4E86-91B6-D86955CFA5F8}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {C9D63524-2C63-4E86-91B6-D86955CFA5F8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {C9D63524-2C63-4E86-91B6-D86955CFA5F8}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C9D63524-2C63-4E86-91B6-D86955CFA5F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {C9D63524-2C63-4E86-91B6-D86955CFA5F8}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+EndGlobal