diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ad4c265 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +tasks/mytarin_es/lab_3/worker-1/appsettings.Development.json +tasks/mytarin_es/lab_3/worker-2/appsettings.json diff --git a/tasks/mytarin_es/lab1/images/pic1_1.png b/tasks/mytarin_es/lab_1/images/pic1_1.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic1_1.png rename to tasks/mytarin_es/lab_1/images/pic1_1.png diff --git a/tasks/mytarin_es/lab1/images/pic1_2.png b/tasks/mytarin_es/lab_1/images/pic1_2.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic1_2.png rename to tasks/mytarin_es/lab_1/images/pic1_2.png diff --git a/tasks/mytarin_es/lab1/images/pic1_3.png b/tasks/mytarin_es/lab_1/images/pic1_3.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic1_3.png rename to tasks/mytarin_es/lab_1/images/pic1_3.png diff --git a/tasks/mytarin_es/lab1/images/pic1_4.png b/tasks/mytarin_es/lab_1/images/pic1_4.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic1_4.png rename to tasks/mytarin_es/lab_1/images/pic1_4.png diff --git a/tasks/mytarin_es/lab1/images/pic2_1.png b/tasks/mytarin_es/lab_1/images/pic2_1.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic2_1.png rename to tasks/mytarin_es/lab_1/images/pic2_1.png diff --git a/tasks/mytarin_es/lab1/images/pic2_2.png b/tasks/mytarin_es/lab_1/images/pic2_2.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic2_2.png rename to tasks/mytarin_es/lab_1/images/pic2_2.png diff --git a/tasks/mytarin_es/lab1/images/pic2_3.png b/tasks/mytarin_es/lab_1/images/pic2_3.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic2_3.png rename to tasks/mytarin_es/lab_1/images/pic2_3.png diff --git a/tasks/mytarin_es/lab1/images/pic3_1.png b/tasks/mytarin_es/lab_1/images/pic3_1.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic3_1.png rename to tasks/mytarin_es/lab_1/images/pic3_1.png diff --git a/tasks/mytarin_es/lab1/images/pic3_2.png b/tasks/mytarin_es/lab_1/images/pic3_2.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic3_2.png rename to tasks/mytarin_es/lab_1/images/pic3_2.png diff --git a/tasks/mytarin_es/lab1/images/pic3_3.png b/tasks/mytarin_es/lab_1/images/pic3_3.png similarity index 100% rename from tasks/mytarin_es/lab1/images/pic3_3.png rename to tasks/mytarin_es/lab_1/images/pic3_3.png diff --git a/tasks/mytarin_es/lab1/readme.md b/tasks/mytarin_es/lab_1/readme.md similarity index 98% rename from tasks/mytarin_es/lab1/readme.md rename to tasks/mytarin_es/lab_1/readme.md index 39be845..02842cc 100644 --- a/tasks/mytarin_es/lab1/readme.md +++ b/tasks/mytarin_es/lab_1/readme.md @@ -122,7 +122,7 @@ networks: #задаем сеть и указываем что она внутр ## Разворачивание сервиса Wordpress -Содержимое файла '' в папке wordpress +Содержимое файла `docker-compose.yml` в папке wordpress ```yaml version: '3' diff --git a/tasks/mytarin_es/lab_3/README.md b/tasks/mytarin_es/lab_3/README.md new file mode 100644 index 0000000..8479888 --- /dev/null +++ b/tasks/mytarin_es/lab_3/README.md @@ -0,0 +1,86 @@ +# Отчет по лабораторной работе №3 + +Выполнил студент гр. ИСЭбд-41 Мытарин Е.С. + +## REST API, Gateway и синхронный обмен между микросервисами + +## Создание микросервисов + +1. С помощью команды `dotnet new web -n worker-2` в терминале создал первый микросервис +2. Добавил решение командой `dotnet new sln` +3. Связал решение и проект командой `dotnet sln worker-2.sln add worker-2.csproj` +4. Повторил действие для второго микросервиса +5. Добавил библиотеку Swagger и OpenAi в проекты и запустил с помощью команды `dotnet run` + +Скриншоты протестированных микросервисов: +![](pic/1.png) +![](pic/2.png) + +## Реализация синхронного обмена + +Реализовал код, который вызывает сихронно данные из соседнего микросервиса. + +```cs +//worker-2 +app.MapGet("/Requests/", async () => +{ + var httpClient = new HttpClient(); + var secondWorkerResponse = await httpClient.GetStringAsync("http://worker-1:8080/"); + + return secondWorkerResponse.ToArray(); +}) +.WithName("GetRequests") +.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: + +![](pic/3.png) + +index.html на gateway-1: + +![](pic/4.png) + +worker-1: + +![](pic/5.png) + +worker-2: + +![](pic/6.png) \ No newline at end of file diff --git a/tasks/mytarin_es/lab_3/docker-compose.yml b/tasks/mytarin_es/lab_3/docker-compose.yml new file mode 100644 index 0000000..e9ca4b9 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/nginx.conf b/tasks/mytarin_es/lab_3/nginx.conf new file mode 100644 index 0000000..f649a4a --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/pic/1.png b/tasks/mytarin_es/lab_3/pic/1.png new file mode 100644 index 0000000..69077f2 Binary files /dev/null and b/tasks/mytarin_es/lab_3/pic/1.png differ diff --git a/tasks/mytarin_es/lab_3/pic/2.png b/tasks/mytarin_es/lab_3/pic/2.png new file mode 100644 index 0000000..2bd8760 Binary files /dev/null and b/tasks/mytarin_es/lab_3/pic/2.png differ diff --git a/tasks/mytarin_es/lab_3/pic/3.png b/tasks/mytarin_es/lab_3/pic/3.png new file mode 100644 index 0000000..4dc6a1a Binary files /dev/null and b/tasks/mytarin_es/lab_3/pic/3.png differ diff --git a/tasks/mytarin_es/lab_3/pic/4.png b/tasks/mytarin_es/lab_3/pic/4.png new file mode 100644 index 0000000..39418e9 Binary files /dev/null and b/tasks/mytarin_es/lab_3/pic/4.png differ diff --git a/tasks/mytarin_es/lab_3/pic/5.png b/tasks/mytarin_es/lab_3/pic/5.png new file mode 100644 index 0000000..3867ffc Binary files /dev/null and b/tasks/mytarin_es/lab_3/pic/5.png differ diff --git a/tasks/mytarin_es/lab_3/pic/6.png b/tasks/mytarin_es/lab_3/pic/6.png new file mode 100644 index 0000000..f5bf917 Binary files /dev/null and b/tasks/mytarin_es/lab_3/pic/6.png differ diff --git a/tasks/mytarin_es/lab_3/static/index.html b/tasks/mytarin_es/lab_3/static/index.html new file mode 100644 index 0000000..5ccf6b2 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/.vs/ProjectEvaluation/worker-1.metadata.v7.bin b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/.vs/ProjectEvaluation/worker-1.metadata.v7.bin differ diff --git a/tasks/mytarin_es/lab_3/worker-1/.vs/ProjectEvaluation/worker-1.projects.v7.bin b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/.vs/ProjectEvaluation/worker-1.projects.v7.bin differ diff --git a/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/DesignTimeBuild/.dtbcache.v2 b/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..f1aef11 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/DesignTimeBuild/.dtbcache.v2 differ diff --git a/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/FileContentIndex/4cd0593a-797f-497c-b632-c54e8fc012a4.vsidx b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/.vs/worker-1/FileContentIndex/4cd0593a-797f-497c-b632-c54e8fc012a4.vsidx differ diff --git a/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/FileContentIndex/6f4e3be7-dbf8-48ef-bbc8-9b3c538644a4.vsidx b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/.vs/worker-1/FileContentIndex/6f4e3be7-dbf8-48ef-bbc8-9b3c538644a4.vsidx differ diff --git a/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/config/applicationhost.config b/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/config/applicationhost.config new file mode 100644 index 0000000..cdd2df8 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/config/applicationhost.config @@ -0,0 +1,1026 @@ + + + + + + + +
+
+
+
+
+
+
+
+ + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/v17/.futdcache.v2 b/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/v17/.futdcache.v2 new file mode 100644 index 0000000..05028d4 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/v17/.futdcache.v2 differ diff --git a/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/v17/.suo b/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/v17/.suo new file mode 100644 index 0000000..d13dc9e Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/.vs/worker-1/v17/.suo differ diff --git a/tasks/mytarin_es/lab_3/worker-1/Dockerfile b/tasks/mytarin_es/lab_3/worker-1/Dockerfile new file mode 100644 index 0000000..7a8ce23 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/Program.cs b/tasks/mytarin_es/lab_3/worker-1/Program.cs new file mode 100644 index 0000000..bd1bffb --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/Program.cs @@ -0,0 +1,124 @@ +List requests = new() +{ + new Request() { Uuid= Guid.Parse("7184fa5f-b786-4478-863a-99cc000eb752"), Title = "Расход на коммуналку", SourceOfFunds = "Мердеев", Sum = 100000, IsCompleted = false }, + new Request() { Uuid= Guid.Parse("55a9aed1-218a-468e-92b9-99f6a6a34543"), Title = "Расход на газ", SourceOfFunds = "Киселев", Sum = 25000, IsCompleted = true }, +}; + +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 requests.Select(r => new RequestEntityDto() + { + Uuid = r.Uuid, + Title = r.Title, + Sum = r.Sum, + SourceOfFunds = r.SourceOfFunds, + IsCompleted = r.IsCompleted, + }); +}) +.WithName("GetRequests") +.WithOpenApi(); + +app.MapGet("/{uuid}", (Guid uuid) => +{ + var request = requests.FirstOrDefault(r => r.Uuid == uuid); + if (request == null) + return Results.NotFound(); + return Results.Json(new RequestEntityDto() + { + Uuid = request.Uuid, + Title = request.Title, + Sum = request.Sum, + SourceOfFunds = request.SourceOfFunds, + IsCompleted = request.IsCompleted, + }); +}) +.WithName("GetRequestByGUID") +.WithOpenApi(); + +app.MapPost("/{title}/{sourceOfFunds}/{sum}/{isCompleted}", (string title, string sourceOfFunds, decimal sum, bool isCompleted) => +{ + Guid NewGuid = Guid.NewGuid(); + requests.Add(new Request() { Uuid = NewGuid, Title = (string)title, SourceOfFunds = (string)sourceOfFunds, Sum = (decimal)sum, IsCompleted = (bool)isCompleted}); + + var request = requests.FirstOrDefault(r => r.Uuid == NewGuid); + if (request == null) + return Results.NotFound(); + return Results.Json(new RequestEntityDto() + { + Uuid = request.Uuid, + Title = request.Title, + Sum = request.Sum, + SourceOfFunds = request.SourceOfFunds, + IsCompleted = request.IsCompleted, + }); +}) +.WithName("PostRequest") +.WithOpenApi(); + +app.MapPatch("/{uuid}/{title}/{sourceOfFunds}/{sum}/{isCompleted}", (Guid uuid, string ?title, string ?sourceOfFunds, decimal sum, bool isCompleted) => +{ + var request = requests.FirstOrDefault(r => r.Uuid == uuid); + if (request == null) + return Results.NotFound(); + if (title != null) request.Title = title; + if (sourceOfFunds != ",") request.SourceOfFunds = sourceOfFunds; + if (sum != request.Sum && sum != 0) request.Sum = sum; + if (isCompleted != request.IsCompleted) request.IsCompleted = isCompleted; + + return Results.Json(new RequestEntityDto() + { + Uuid = request.Uuid, + Title = request.Title, + Sum = request.Sum, + SourceOfFunds = request.SourceOfFunds, + IsCompleted = request.IsCompleted, + }); +}) +.WithName("UpdateRequest") +.WithOpenApi(); + +app.MapDelete("/{uuid}", (Guid uuid) => +{ + var request = requests.FirstOrDefault(r => r.Uuid == uuid); + if (request == null) + return Results.NotFound(); + requests.Remove(request); + return Results.Json(new RequestEntityDto() + { + Uuid = request.Uuid, + Title = request.Title, + Sum = request.Sum, + SourceOfFunds = request.SourceOfFunds, + IsCompleted = request.IsCompleted, + }); +}) +.WithName("DeleteRequestByGUID") +.WithOpenApi(); + +app.Run(); + +public class Request +{ + public Guid Uuid { get; set; } + public string Title { get; set; } = string.Empty; + public string SourceOfFunds { get; set; } = string.Empty; + public decimal Sum { get; set; } = 0; + public bool IsCompleted { get; set; } +} + +public class RequestEntityDto : Request { } \ No newline at end of file diff --git a/tasks/mytarin_es/lab_3/worker-1/Properties/launchSettings.json b/tasks/mytarin_es/lab_3/worker-1/Properties/launchSettings.json new file mode 100644 index 0000000..bab6706 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/appsettings.Development.json b/tasks/mytarin_es/lab_3/worker-1/appsettings.Development.json new file mode 100644 index 0000000..3b823ef --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/tasks/mytarin_es/lab_3/worker-1/appsettings.json b/tasks/mytarin_es/lab_3/worker-1/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Microsoft.OpenApi.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/appsettings.Development.json b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/appsettings.json b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.deps.json b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.deps.json new file mode 100644 index 0000000..94ad363 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.dll b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.dll new file mode 100644 index 0000000..812216d Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.exe b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.exe new file mode 100644 index 0000000..fe1d9cf Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.exe differ diff --git a/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.pdb b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.pdb new file mode 100644 index 0000000..f98fa22 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.pdb differ diff --git a/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.runtimeconfig.json b/tasks/mytarin_es/lab_3/worker-1/bin/Debug/net8.0/worker-1.runtimeconfig.json new file mode 100644 index 0000000..5e604c7 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/tasks/mytarin_es/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/mytarin_es/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/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/apphost.exe b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..fe1d9cf Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/apphost.exe differ diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/ref/worker-1.dll b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/ref/worker-1.dll new file mode 100644 index 0000000..5605ed0 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/ref/worker-1.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/refint/worker-1.dll b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/refint/worker-1.dll new file mode 100644 index 0000000..5605ed0 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/refint/worker-1.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/staticwebassets.build.json b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..6bc1519 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.build.worker-1.props b/tasks/mytarin_es/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/mytarin_es/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/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.worker-1.props b/tasks/mytarin_es/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/mytarin_es/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/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.worker-1.props b/tasks/mytarin_es/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/mytarin_es/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/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfo.cs b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfo.cs new file mode 100644 index 0000000..f9fa471 --- /dev/null +++ b/tasks/mytarin_es/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+d64b702b1390dff3255929bb2b00605248500f1d")] +[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/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfoInputs.cache b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfoInputs.cache new file mode 100644 index 0000000..da68e55 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b4384d6c7f5f0291b819e57beb7554a83883f51de1a9b79417abb0b571813599 diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.GeneratedMSBuildEditorConfig.editorconfig b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..3dbf474 --- /dev/null +++ b/tasks/mytarin_es/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:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\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:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1 +build_property._RazorSourceGeneratorDebug = diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.GlobalUsings.g.cs b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.MvcApplicationPartsAssemblyInfo.cache b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.MvcApplicationPartsAssemblyInfo.cs b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..f244291 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.assets.cache b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.assets.cache new file mode 100644 index 0000000..3b97685 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.assets.cache differ diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.AssemblyReference.cache b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f80798b Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.AssemblyReference.cache differ diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.BuildWithSkipAnalyzers b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CopyComplete b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CoreCompileInputs.cache b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..292923d --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7c9256b8da60a690d9bf2a691b634aceea411262438331b7d6f89e63f60b3ca4 diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.FileListAbsolute.txt b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6411745 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.csproj.FileListAbsolute.txt @@ -0,0 +1,33 @@ +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 diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.dll b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.dll new file mode 100644 index 0000000..812216d Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.genruntimeconfig.cache b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.genruntimeconfig.cache new file mode 100644 index 0000000..7dc32e7 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.genruntimeconfig.cache @@ -0,0 +1 @@ +44e947660f9e9e1fe23be639c2f70bc5cee0f4c106839cef4a0f7485c1285e4c diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.pdb b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.pdb new file mode 100644 index 0000000..f98fa22 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-1/obj/Debug/net8.0/worker-1.pdb differ diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/project.assets.json b/tasks/mytarin_es/lab_3/worker-1/obj/project.assets.json new file mode 100644 index 0000000..cfbd65a --- /dev/null +++ b/tasks/mytarin_es/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\\tornado\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-1\\worker-1.csproj", + "projectName": "worker-1", + "projectPath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-1\\worker-1.csproj", + "packagesPath": "C:\\Users\\tornado\\.nuget\\packages\\", + "outputPath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-1\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\tornado\\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/mytarin_es/lab_3/worker-1/obj/project.nuget.cache b/tasks/mytarin_es/lab_3/worker-1/obj/project.nuget.cache new file mode 100644 index 0000000..8708df6 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/obj/project.nuget.cache @@ -0,0 +1,16 @@ +{ + "version": 2, + "dgSpecHash": "NMZmkEqT/SJVbPKfzBMgBbjgvMzOhCu8w+xpX80/4akX+P3/Fg8MVSbGrxtFvCqgEa4/u9zHFQcOY4Ux6cJZqw==", + "success": true, + "projectFilePath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-1\\worker-1.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tornado\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.0\\microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512", + "C:\\Users\\tornado\\.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/mytarin_es/lab_3/worker-1/obj/worker-1.csproj.nuget.dgspec.json b/tasks/mytarin_es/lab_3/worker-1/obj/worker-1.csproj.nuget.dgspec.json new file mode 100644 index 0000000..5fd3341 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/obj/worker-1.csproj.nuget.dgspec.json @@ -0,0 +1,76 @@ +{ + "format": 1, + "restore": { + "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-1\\worker-1.csproj": {} + }, + "projects": { + "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-1\\worker-1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-1\\worker-1.csproj", + "projectName": "worker-1", + "projectPath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-1\\worker-1.csproj", + "packagesPath": "C:\\Users\\tornado\\.nuget\\packages\\", + "outputPath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-1\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\tornado\\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/mytarin_es/lab_3/worker-1/obj/worker-1.csproj.nuget.g.props b/tasks/mytarin_es/lab_3/worker-1/obj/worker-1.csproj.nuget.g.props new file mode 100644 index 0000000..8e6b772 --- /dev/null +++ b/tasks/mytarin_es/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\tornado\.nuget\packages\ + PackageReference + 6.8.0 + + + + + + + + + + C:\Users\tornado\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + + \ No newline at end of file diff --git a/tasks/mytarin_es/lab_3/worker-1/obj/worker-1.csproj.nuget.g.targets b/tasks/mytarin_es/lab_3/worker-1/obj/worker-1.csproj.nuget.g.targets new file mode 100644 index 0000000..eea8d76 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-1/worker-1.csproj b/tasks/mytarin_es/lab_3/worker-1/worker-1.csproj new file mode 100644 index 0000000..795c30e --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/worker-1.csproj @@ -0,0 +1,15 @@ + + + + net8.0 + enable + enable + worker_1 + + + + + + + + diff --git a/tasks/mytarin_es/lab_3/worker-1/worker-1.csproj.user b/tasks/mytarin_es/lab_3/worker-1/worker-1.csproj.user new file mode 100644 index 0000000..9ff5820 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-1/worker-1.csproj.user @@ -0,0 +1,6 @@ + + + + https + + \ No newline at end of file diff --git a/tasks/mytarin_es/lab_3/worker-1/worker-1.sln b/tasks/mytarin_es/lab_3/worker-1/worker-1.sln new file mode 100644 index 0000000..fc4131f --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/.vs/worker-2/DesignTimeBuild/.dtbcache.v2 b/tasks/mytarin_es/lab_3/worker-2/.vs/worker-2/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..7c9506c Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/.vs/worker-2/DesignTimeBuild/.dtbcache.v2 differ diff --git a/tasks/mytarin_es/lab_3/worker-2/.vs/worker-2/config/applicationhost.config b/tasks/mytarin_es/lab_3/worker-2/.vs/worker-2/config/applicationhost.config new file mode 100644 index 0000000..cdd2df8 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/.vs/worker-2/config/applicationhost.config @@ -0,0 +1,1026 @@ + + + + + + + +
+
+
+
+
+
+
+
+ + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tasks/mytarin_es/lab_3/worker-2/.vs/worker-2/v17/.suo b/tasks/mytarin_es/lab_3/worker-2/.vs/worker-2/v17/.suo new file mode 100644 index 0000000..80fd8f2 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/.vs/worker-2/v17/.suo differ diff --git a/tasks/mytarin_es/lab_3/worker-2/Dockerfile b/tasks/mytarin_es/lab_3/worker-2/Dockerfile new file mode 100644 index 0000000..7f6b963 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/Program.cs b/tasks/mytarin_es/lab_3/worker-2/Program.cs new file mode 100644 index 0000000..05739f4 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/Program.cs @@ -0,0 +1,145 @@ + +List agrs = new() +{ + new Agreement() { Uuid= Guid.NewGuid(), Number = "75ИФ-61", Date = new DateOnly(), Sum = 50000, IdRequest = Guid.Parse("7184fa5f-b786-4478-863a-99cc000eb752") } +}; + +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 agrs.Select(r => new AgreementEntityDto() + { + Uuid = r.Uuid, + Number = r.Number, + Sum = r.Sum, + Date = r.Date, + IdRequest = r.IdRequest, + }); +}) +.WithName("GetAgreements") +.WithOpenApi(); + +app.MapGet("/{uuid}", (Guid uuid) => +{ + var agr = agrs.FirstOrDefault(r => r.Uuid == uuid); + if (agr == null) + return Results.NotFound(); + return Results.Json(new AgreementEntityDto() + { + Uuid = agr.Uuid, + Number = agr.Number, + Sum = agr.Sum, + Date = agr.Date, + IdRequest = agr.IdRequest, + }); +}) +.WithName("GetAgreementByGUID") +.WithOpenApi(); + +app.MapPost("/{number}/{date}/{sum}/{idRequest}", (string? number, DateOnly date, decimal sum, Guid idRequest) => +{ + Guid NewGuid = Guid.NewGuid(); + agrs.Add(new Agreement() { Uuid = NewGuid, Number = (string)number, Date = (DateOnly)date, Sum = (decimal)sum, IdRequest = (Guid)idRequest }); + + var agr = agrs.FirstOrDefault(r => r.Uuid == NewGuid); + if (agr == null) + return Results.NotFound(); + return Results.Json(new AgreementEntityDto() + { + Uuid = agr.Uuid, + Number = agr.Number, + Sum = agr.Sum, + Date = agr.Date, + IdRequest = agr.IdRequest, + }); +}) +.WithName("PostAgreement") +.WithOpenApi(); + +app.MapPatch("/{uuid}/{number}/{date}/{sum}/{idRequest}", (Guid uuid, string ?number, DateOnly date, decimal sum, Guid idRequest) => +{ + var agr = agrs.FirstOrDefault(r => r.Uuid == uuid); + if (agr == null) + return Results.NotFound(); + if (number != ",") agr.Number = number; + if (date != null)agr.Date = date; + if (sum != agr.Sum && sum != 0) agr.Sum = sum; + if (idRequest != agr.IdRequest) agr.IdRequest = idRequest; + + return Results.Json(new AgreementEntityDto() + { + Uuid = agr.Uuid, + Number = agr.Number, + Sum = agr.Sum, + Date = agr.Date, + IdRequest = agr.IdRequest, + }); +}) +.WithName("UpdateAgreement") +.WithOpenApi(); + +app.MapDelete("/{uuid}", (Guid uuid) => +{ + var agr = agrs.FirstOrDefault(r => r.Uuid == uuid); + if (agr == null) + return Results.NotFound(); + agrs.Remove(agr); + return Results.Json(new AgreementEntityDto() + { + Uuid = agr.Uuid, + Number = agr.Number, + Sum = agr.Sum, + Date = agr.Date, + IdRequest = agr.IdRequest, + }); +}) +.WithName("DeleteAgreement") +.WithOpenApi(); + +app.MapGet("/Requests/", async () => +{ + var httpClient = new HttpClient(); + var secondWorkerResponse = await httpClient.GetStringAsync("http://worker-1:8080/"); + + return secondWorkerResponse.ToArray(); +}) +.WithName("GetRequests") +.WithOpenApi(); + +app.Run(); + +public class Agreement +{ + public Guid Uuid { get; set; } + public string Number { get; set; } = string.Empty; + public DateOnly Date { get; set; } + public Guid IdRequest { get; set; } + public decimal Sum { get; set; } = 0; +} + +public class AgreementEntityDto : Agreement { } + +public class Request +{ + public Guid Uuid { get; set; } + public string Title { get; set; } = string.Empty; + public string SourceOfFunds { get; set; } = string.Empty; + public decimal Sum { get; set; } = 0; + public bool IsCompleted { get; set; } +} + +public class RequestEntityDto : Request { } \ No newline at end of file diff --git a/tasks/mytarin_es/lab_3/worker-2/Properties/launchSettings.json b/tasks/mytarin_es/lab_3/worker-2/Properties/launchSettings.json new file mode 100644 index 0000000..c0a3346 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/appsettings.Development.json b/tasks/mytarin_es/lab_3/worker-2/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/tasks/mytarin_es/lab_3/worker-2/appsettings.json b/tasks/mytarin_es/lab_3/worker-2/appsettings.json new file mode 100644 index 0000000..b41ccef --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Microsoft.OpenApi.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/appsettings.Development.json b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/appsettings.json b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.deps.json b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.deps.json new file mode 100644 index 0000000..2f48163 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.dll b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.dll new file mode 100644 index 0000000..8206781 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.exe b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.exe new file mode 100644 index 0000000..2e10066 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.exe differ diff --git a/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.pdb b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.pdb new file mode 100644 index 0000000..a70be5f Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.pdb differ diff --git a/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.runtimeconfig.json b/tasks/mytarin_es/lab_3/worker-2/bin/Debug/net8.0/worker-2.runtimeconfig.json new file mode 100644 index 0000000..5e604c7 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/tasks/mytarin_es/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/mytarin_es/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/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/apphost.exe b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..2e10066 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/apphost.exe differ diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/ref/worker-2.dll b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/ref/worker-2.dll new file mode 100644 index 0000000..5a1bf7e Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/ref/worker-2.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/refint/worker-2.dll b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/refint/worker-2.dll new file mode 100644 index 0000000..5a1bf7e Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/refint/worker-2.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/staticwebassets.build.json b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..3a45a53 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.build.worker-2.props b/tasks/mytarin_es/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/mytarin_es/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/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.worker-2.props b/tasks/mytarin_es/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/mytarin_es/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/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.worker-2.props b/tasks/mytarin_es/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/mytarin_es/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/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfo.cs b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfo.cs new file mode 100644 index 0000000..21ffafb --- /dev/null +++ b/tasks/mytarin_es/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+d64b702b1390dff3255929bb2b00605248500f1d")] +[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/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfoInputs.cache b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfoInputs.cache new file mode 100644 index 0000000..5c3ea1f --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4722328fc895d989f3d9529a0e32db57d2bf738a6e90864b9245732a0a8e723f diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.GeneratedMSBuildEditorConfig.editorconfig b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6f95383 --- /dev/null +++ b/tasks/mytarin_es/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:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\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:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-2 +build_property._RazorSourceGeneratorDebug = diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.GlobalUsings.g.cs b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cache b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cs b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..d7cc3f5 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +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/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.assets.cache b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.assets.cache new file mode 100644 index 0000000..9e53654 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.assets.cache differ diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.AssemblyReference.cache b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f80798b Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.AssemblyReference.cache differ diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.BuildWithSkipAnalyzers b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CopyComplete b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CoreCompileInputs.cache b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..1da8c7a --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ab4d1d23af1f9140a6d65a5af3b2a308fac476b8e0a604fdc94bd1a3ec2c0a84 diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.FileListAbsolute.txt b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1d20524 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.csproj.FileListAbsolute.txt @@ -0,0 +1,33 @@ +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 diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.dll b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.dll new file mode 100644 index 0000000..8206781 Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.dll differ diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.genruntimeconfig.cache b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.genruntimeconfig.cache new file mode 100644 index 0000000..3c10d79 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.genruntimeconfig.cache @@ -0,0 +1 @@ +cf4fa22f244a37cfd132a1a6469a2a2ea269f912b1ca2933beecdced5917f748 diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.pdb b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.pdb new file mode 100644 index 0000000..a70be5f Binary files /dev/null and b/tasks/mytarin_es/lab_3/worker-2/obj/Debug/net8.0/worker-2.pdb differ diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/project.assets.json b/tasks/mytarin_es/lab_3/worker-2/obj/project.assets.json new file mode 100644 index 0000000..fe75049 --- /dev/null +++ b/tasks/mytarin_es/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\\tornado\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-2\\worker-2.csproj", + "projectName": "worker-2", + "projectPath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-2\\worker-2.csproj", + "packagesPath": "C:\\Users\\tornado\\.nuget\\packages\\", + "outputPath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-2\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\tornado\\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/mytarin_es/lab_3/worker-2/obj/project.nuget.cache b/tasks/mytarin_es/lab_3/worker-2/obj/project.nuget.cache new file mode 100644 index 0000000..d79d976 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/obj/project.nuget.cache @@ -0,0 +1,16 @@ +{ + "version": 2, + "dgSpecHash": "k1OKkMEDBzD/XsjvWYBr1MPDKiFDpNOHYVe8a7MW097YkprUAwWNfZUmQux/K7gkuD0eQ5apfcvIdjl6kSh/DQ==", + "success": true, + "projectFilePath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-2\\worker-2.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tornado\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.0\\microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512", + "C:\\Users\\tornado\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512", + "C:\\Users\\tornado\\.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/mytarin_es/lab_3/worker-2/obj/worker-2.csproj.nuget.dgspec.json b/tasks/mytarin_es/lab_3/worker-2/obj/worker-2.csproj.nuget.dgspec.json new file mode 100644 index 0000000..102abd6 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/obj/worker-2.csproj.nuget.dgspec.json @@ -0,0 +1,76 @@ +{ + "format": 1, + "restore": { + "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-2\\worker-2.csproj": {} + }, + "projects": { + "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-2\\worker-2.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-2\\worker-2.csproj", + "projectName": "worker-2", + "projectPath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-2\\worker-2.csproj", + "packagesPath": "C:\\Users\\tornado\\.nuget\\packages\\", + "outputPath": "C:\\TornaDO LPC\\Study\\RVIP Reports\\lab 1 report\\distributed-computing\\tasks\\mytarin_es\\lab_3\\worker-2\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\tornado\\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/mytarin_es/lab_3/worker-2/obj/worker-2.csproj.nuget.g.props b/tasks/mytarin_es/lab_3/worker-2/obj/worker-2.csproj.nuget.g.props new file mode 100644 index 0000000..8e6b772 --- /dev/null +++ b/tasks/mytarin_es/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\tornado\.nuget\packages\ + PackageReference + 6.8.0 + + + + + + + + + + C:\Users\tornado\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + + \ No newline at end of file diff --git a/tasks/mytarin_es/lab_3/worker-2/obj/worker-2.csproj.nuget.g.targets b/tasks/mytarin_es/lab_3/worker-2/obj/worker-2.csproj.nuget.g.targets new file mode 100644 index 0000000..eea8d76 --- /dev/null +++ b/tasks/mytarin_es/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/mytarin_es/lab_3/worker-2/worker-2.csproj b/tasks/mytarin_es/lab_3/worker-2/worker-2.csproj new file mode 100644 index 0000000..9e8d22f --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/worker-2.csproj @@ -0,0 +1,15 @@ + + + + net8.0 + enable + enable + worker_2 + + + + + + + + diff --git a/tasks/mytarin_es/lab_3/worker-2/worker-2.csproj.user b/tasks/mytarin_es/lab_3/worker-2/worker-2.csproj.user new file mode 100644 index 0000000..9ff5820 --- /dev/null +++ b/tasks/mytarin_es/lab_3/worker-2/worker-2.csproj.user @@ -0,0 +1,6 @@ + + + + https + + \ No newline at end of file diff --git a/tasks/mytarin_es/lab_3/worker-2/worker-2.sln b/tasks/mytarin_es/lab_3/worker-2/worker-2.sln new file mode 100644 index 0000000..8f8c96d --- /dev/null +++ b/tasks/mytarin_es/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