Lab3
This commit is contained in:
parent
e7d7ea67d1
commit
3fc54b31fb
72
tasks/mikhailov-ys/Lab_3/README.md
Normal file
72
tasks/mikhailov-ys/Lab_3/README.md
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
# Отчет по лабораторной работе №3
|
||||||
|
|
||||||
|
Выполнил студент Михайлов Юрий гр. ИСЭбд-41 .
|
||||||
|
|
||||||
|
## REST API, Gateway и синхронный обмен между микросервисами
|
||||||
|
|
||||||
|
## Создание микросервисов
|
||||||
|
|
||||||
|
1. С помощью команды `dotnet new web -n worker-1` в терминале создали первый микросервис.
|
||||||
|
2. Добавил решение `dotnet new sln`. Связал решение и проект командой `dotnet sln worker-1.sln add worker-1.csproj` повторил для 2-ого микросервиса.
|
||||||
|
3. Добавил библиотеку Swagger и OpenAi в проекты и запустил с помощью команды `dotnet run`.
|
||||||
|
|
||||||
|
Протестированный микросервис:
|
||||||
|
![](picture/1.png)
|
||||||
|
|
||||||
|
|
||||||
|
## Реализация синхронного обмена.
|
||||||
|
Реализован код, который вызывет сихронно данные из соседнего микросервиса.
|
||||||
|
|
||||||
|
```cs
|
||||||
|
app.MapGet("/Сities/", async () =>
|
||||||
|
{
|
||||||
|
var httpClient = new HttpClient();
|
||||||
|
var secondWorkerResponse = await httpClient.GetStringAsync("http://worker-1:8080/");
|
||||||
|
return secondWorkerResponse.ToArray();
|
||||||
|
})
|
||||||
|
.WithName("GetCountries")
|
||||||
|
.WithOpenApi();
|
||||||
|
```
|
||||||
|
|
||||||
|
## Реализация gateway при помощи nginx
|
||||||
|
|
||||||
|
Добавил nginx.conf:
|
||||||
|
|
||||||
|
```conf
|
||||||
|
server {
|
||||||
|
listen 8080;
|
||||||
|
listen [::]:8080;
|
||||||
|
server_name localhost;
|
||||||
|
location / {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
index index.html index.htm;
|
||||||
|
}
|
||||||
|
location /worker-1/ {
|
||||||
|
proxy_pass http://worker-1:8080/;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Prefix /worker-1;
|
||||||
|
}
|
||||||
|
location /worker-2/ {
|
||||||
|
proxy_pass http://worker-2:8080/;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Prefix /worker-2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
Результат после команды `docker-compose up`:
|
||||||
|
|
||||||
|
Docker desktop:
|
||||||
|
![](picture/3.png)
|
||||||
|
|
||||||
|
index.html на gateway-1:
|
||||||
|
![](picture/4.png)
|
||||||
|
|
||||||
|
worker-1:
|
||||||
|
![](picture/5.png)
|
||||||
|
|
||||||
|
worker-2:
|
||||||
|
![](picture/6.png)
|
15
tasks/mikhailov-ys/Lab_3/docker-compose.yml
Normal file
15
tasks/mikhailov-ys/Lab_3/docker-compose.yml
Normal file
@ -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
|
26
tasks/mikhailov-ys/Lab_3/nginx.conf
Normal file
26
tasks/mikhailov-ys/Lab_3/nginx.conf
Normal file
@ -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;
|
||||||
|
}
|
||||||
|
}
|
BIN
tasks/mikhailov-ys/Lab_3/picture/1.png
Normal file
BIN
tasks/mikhailov-ys/Lab_3/picture/1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
BIN
tasks/mikhailov-ys/Lab_3/picture/3.png
Normal file
BIN
tasks/mikhailov-ys/Lab_3/picture/3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 103 KiB |
BIN
tasks/mikhailov-ys/Lab_3/picture/4.png
Normal file
BIN
tasks/mikhailov-ys/Lab_3/picture/4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 82 KiB |
BIN
tasks/mikhailov-ys/Lab_3/picture/5.png
Normal file
BIN
tasks/mikhailov-ys/Lab_3/picture/5.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
BIN
tasks/mikhailov-ys/Lab_3/picture/6.png
Normal file
BIN
tasks/mikhailov-ys/Lab_3/picture/6.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
13
tasks/mikhailov-ys/Lab_3/static/index.html
Normal file
13
tasks/mikhailov-ys/Lab_3/static/index.html
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="ru">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Тестовое приложение для л/р 3</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<p>Выполнил студент гр. ИСЭбд-41. Михайлов Юрий</p>
|
||||||
|
<p><a href="/worker-1/">Отправить запрос к worker-1</a></p>
|
||||||
|
<p><a href="/worker-2/">Отправить запрос к worker-2</a></p>
|
||||||
|
</body>
|
||||||
|
</html>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.futdcache.v2
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.futdcache.v2
Normal file
Binary file not shown.
BIN
tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.suo
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-1/.vs/worker-1/v17/.suo
Normal file
Binary file not shown.
11
tasks/mikhailov-ys/Lab_3/worker-1/Dockerfile
Normal file
11
tasks/mikhailov-ys/Lab_3/worker-1/Dockerfile
Normal file
@ -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"]
|
118
tasks/mikhailov-ys/Lab_3/worker-1/Program.cs
Normal file
118
tasks/mikhailov-ys/Lab_3/worker-1/Program.cs
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
List<Countries > countries = new()
|
||||||
|
{
|
||||||
|
new Countries () { Uuid= Guid.Parse("6a1b4a72-5669-41fe-8d5b-106dc86f58bd"), Name = "Russia", Area = "1222" },
|
||||||
|
new Countries () { Uuid= Guid.Parse("464bbdb8-39c0-4644-b9c0-3df1c484ea7e"), Name = "USA", Area = "0" },
|
||||||
|
new Countries () { Uuid= Guid.Parse("f8692bea-b7e6-4164-b564-a921f16c35c9"), Name = "Germany", Area = "1" },
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
builder.Services.AddEndpointsApiExplorer();
|
||||||
|
builder.Services.AddSwaggerGen();
|
||||||
|
|
||||||
|
var app = builder.Build();
|
||||||
|
|
||||||
|
if (app.Environment.IsDevelopment())
|
||||||
|
{
|
||||||
|
app.UseSwagger();
|
||||||
|
app.UseSwaggerUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
app.UseHttpsRedirection();
|
||||||
|
|
||||||
|
app.MapGet("/", () =>
|
||||||
|
{
|
||||||
|
return countries.Select(r => new CountrieEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = r.Uuid,
|
||||||
|
Name = r.Name,
|
||||||
|
Area = r.Area,
|
||||||
|
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("GetCountries")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.MapGet("/{uuid}", (Guid uuid) =>
|
||||||
|
{
|
||||||
|
var countrie = countries.FirstOrDefault(r => r.Uuid == uuid);
|
||||||
|
if (countrie == null)
|
||||||
|
return Results.NotFound();
|
||||||
|
return Results.Json(new CountrieEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = countrie.Uuid,
|
||||||
|
Name = countrie.Name,
|
||||||
|
Area = countrie.Area,
|
||||||
|
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("GetCountrieByGUID")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.MapPost("/{name}/{area}", (string name, string area) =>
|
||||||
|
{
|
||||||
|
Guid NewGuid = Guid.NewGuid();
|
||||||
|
countries.Add(new Countries() { Uuid = NewGuid, Name = (string)name, Area = (string)area});
|
||||||
|
|
||||||
|
var countrie = countries.FirstOrDefault(r => r.Uuid == NewGuid);
|
||||||
|
if (countrie == null)
|
||||||
|
return Results.NotFound();
|
||||||
|
return Results.Json(new CountrieEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = countrie.Uuid,
|
||||||
|
Name = countrie.Name,
|
||||||
|
Area = countrie.Area,
|
||||||
|
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("PostCountrie")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.MapPatch("/{uuid}/{name}/{area}", (Guid uuid, string ?name, string ?area) =>
|
||||||
|
{
|
||||||
|
var countrie = countries.FirstOrDefault(r => r.Uuid == uuid);
|
||||||
|
if (countrie == null)
|
||||||
|
return Results.NotFound();
|
||||||
|
if (name != null) countrie.Name = name;
|
||||||
|
if (area != ",") countrie.Area = area;
|
||||||
|
|
||||||
|
|
||||||
|
return Results.Json(new CountrieEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = countrie.Uuid,
|
||||||
|
Name = countrie.Name,
|
||||||
|
Area = countrie.Area,
|
||||||
|
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("UpdateCountrie")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.MapDelete("/{uuid}", (Guid uuid) =>
|
||||||
|
{
|
||||||
|
var countrie = countries.FirstOrDefault(r => r.Uuid == uuid);
|
||||||
|
if (countrie == null)
|
||||||
|
return Results.NotFound();
|
||||||
|
countries.Remove(countrie);
|
||||||
|
return Results.Json(new CountrieEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = countrie.Uuid,
|
||||||
|
Name = countrie.Name,
|
||||||
|
Area = countrie.Area,
|
||||||
|
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("DeleteCountrieByGUID")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.Run();
|
||||||
|
|
||||||
|
public class Countries
|
||||||
|
{
|
||||||
|
public Guid Uuid { get; set; }
|
||||||
|
public string Name { get; set; } = string.Empty;
|
||||||
|
public string Area { get; set; } = string.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CountrieEntityDto : Countries { }
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
9
tasks/mikhailov-ys/Lab_3/worker-1/appsettings.json
Normal file
9
tasks/mikhailov-ys/Lab_3/worker-1/appsettings.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.dll
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.dll
Normal file
Binary file not shown.
BIN
tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.exe
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.exe
Normal file
Binary file not shown.
BIN
tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.pdb
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-1/bin/Debug/net8.0/worker-1.pdb
Normal file
Binary file not shown.
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
BIN
tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/apphost.exe
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/apphost.exe
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"Version": 1,
|
||||||
|
"Hash": "BF75hG0h0pFHvvsifWmW09xNUktph/Cwh45TuA9Fwgw=",
|
||||||
|
"Source": "worker-1",
|
||||||
|
"BasePath": "_content/worker-1",
|
||||||
|
"Mode": "Default",
|
||||||
|
"ManifestType": "Build",
|
||||||
|
"ReferencedProjectsConfiguration": [],
|
||||||
|
"DiscoveryPatterns": [],
|
||||||
|
"Assets": []
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
<Project>
|
||||||
|
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||||
|
</Project>
|
@ -0,0 +1,3 @@
|
|||||||
|
<Project>
|
||||||
|
<Import Project="..\build\worker-1.props" />
|
||||||
|
</Project>
|
@ -0,0 +1,3 @@
|
|||||||
|
<Project>
|
||||||
|
<Import Project="..\buildMultiTargeting\worker-1.props" />
|
||||||
|
</Project>
|
@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("worker-1")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("worker-1")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("worker-1")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Создано классом WriteCodeFragment MSBuild.
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
3598cf5a66e0d331028da526c00b9c8ffd811ed52bc0659c1e11d7f85f11b483
|
@ -0,0 +1,19 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net8.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb = true
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = worker_1
|
||||||
|
build_property.RootNamespace = worker_1
|
||||||
|
build_property.ProjectDir = C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.RazorLangVersion = 8.0
|
||||||
|
build_property.SupportLocalizedComponentNames =
|
||||||
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
|
build_property.MSBuildProjectDirectory = C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1
|
||||||
|
build_property._RazorSourceGeneratorDebug =
|
@ -0,0 +1,17 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
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;
|
@ -0,0 +1,17 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
c42736ce8e07cbe1217c5095c85e30240121d2c28f254f19212889a69950faae
|
@ -0,0 +1,66 @@
|
|||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\appsettings.Development.json
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\appsettings.json
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.exe
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.deps.json
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.runtimeconfig.json
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.dll
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\worker-1.pdb
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfoInputs.cache
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfo.cs
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CoreCompileInputs.cache
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.build.json
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.development.json
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.worker-1.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.build.worker-1.props
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.worker-1.props
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.worker-1.props
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.pack.json
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\scopedcss\bundle\worker-1.styles.css
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.dll
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\refint\worker-1.dll
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.pdb
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.genruntimeconfig.cache
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\ref\worker-1.dll
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.AssemblyReference.cache
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cs
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Microsoft.OpenApi.dll
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||||
|
C:\TornaDO LPC\Study\RVIP Reports\lab 1 report\distributed-computing\tasks\mytarin_es\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CopyComplete
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\appsettings.Development.json
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\appsettings.json
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.exe
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.deps.json
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.runtimeconfig.json
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.dll
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\worker-1.pdb
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Microsoft.OpenApi.dll
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.AssemblyReference.cache
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfo.cs
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cs
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cache
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.build.json
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.development.json
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.worker-1.Microsoft.AspNetCore.StaticWebAssets.props
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.build.worker-1.props
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.worker-1.props
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.worker-1.props
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.pack.json
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\scopedcss\bundle\worker-1.styles.css
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CopyComplete
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.dll
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\refint\worker-1.dll
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.pdb
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\worker-1.genruntimeconfig.cache
|
||||||
|
C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-1\obj\Debug\net8.0\ref\worker-1.dll
|
BIN
tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.dll
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
ab294f0f7b153f723faaa9bbd47ed63add3a83d85acb3f588c9a212ae9151c36
|
BIN
tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.pdb
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-1/obj/Debug/net8.0/worker-1.pdb
Normal file
Binary file not shown.
542
tasks/mikhailov-ys/Lab_3/worker-1/obj/project.assets.json
Normal file
542
tasks/mikhailov-ys/Lab_3/worker-1/obj/project.assets.json
Normal file
@ -0,0 +1,542 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net8.0": {
|
||||||
|
"Microsoft.AspNetCore.OpenApi/8.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.OpenApi": "1.4.3"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworkReferences": [
|
||||||
|
"Microsoft.AspNetCore.App"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.ApiDescription.Server/6.0.5": {
|
||||||
|
"type": "package",
|
||||||
|
"build": {
|
||||||
|
"build/Microsoft.Extensions.ApiDescription.Server.props": {},
|
||||||
|
"build/Microsoft.Extensions.ApiDescription.Server.targets": {}
|
||||||
|
},
|
||||||
|
"buildMultiTargeting": {
|
||||||
|
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
|
||||||
|
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.OpenApi/1.4.3": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/netstandard2.0/Microsoft.OpenApi.dll": {
|
||||||
|
"related": ".pdb;.xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/netstandard2.0/Microsoft.OpenApi.dll": {
|
||||||
|
"related": ".pdb;.xml"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore/6.5.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.Extensions.ApiDescription.Server": "6.0.5",
|
||||||
|
"Swashbuckle.AspNetCore.Swagger": "6.5.0",
|
||||||
|
"Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
|
||||||
|
"Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"build/Swashbuckle.AspNetCore.props": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore.Swagger/6.5.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.OpenApi": "1.2.3"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
|
||||||
|
"related": ".pdb;.xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
|
||||||
|
"related": ".pdb;.xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworkReferences": [
|
||||||
|
"Microsoft.AspNetCore.App"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
|
||||||
|
"type": "package",
|
||||||
|
"dependencies": {
|
||||||
|
"Swashbuckle.AspNetCore.Swagger": "6.5.0"
|
||||||
|
},
|
||||||
|
"compile": {
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
|
||||||
|
"related": ".pdb;.xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
|
||||||
|
"related": ".pdb;.xml"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
|
||||||
|
"related": ".pdb;.xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
|
||||||
|
"related": ".pdb;.xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworkReferences": [
|
||||||
|
"Microsoft.AspNetCore.App"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Microsoft.AspNetCore.OpenApi/8.0.0": {
|
||||||
|
"sha512": "T4mwMvPSOYAp+KeQ4xO8H2rxpiOMJ9W/7yBBkUTMp96AHtGlPN4s7hbax2tM61LxTY775JKL4fiv5grn41EHXw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.aspnetcore.openapi/8.0.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"THIRD-PARTY-NOTICES.TXT",
|
||||||
|
"lib/net8.0/Microsoft.AspNetCore.OpenApi.dll",
|
||||||
|
"lib/net8.0/Microsoft.AspNetCore.OpenApi.xml",
|
||||||
|
"microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512",
|
||||||
|
"microsoft.aspnetcore.openapi.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.Extensions.ApiDescription.Server/6.0.5": {
|
||||||
|
"sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.extensions.apidescription.server/6.0.5",
|
||||||
|
"hasTools": true,
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"Icon.png",
|
||||||
|
"build/Microsoft.Extensions.ApiDescription.Server.props",
|
||||||
|
"build/Microsoft.Extensions.ApiDescription.Server.targets",
|
||||||
|
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
|
||||||
|
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
|
||||||
|
"microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
|
||||||
|
"microsoft.extensions.apidescription.server.nuspec",
|
||||||
|
"tools/Newtonsoft.Json.dll",
|
||||||
|
"tools/dotnet-getdocument.deps.json",
|
||||||
|
"tools/dotnet-getdocument.dll",
|
||||||
|
"tools/dotnet-getdocument.runtimeconfig.json",
|
||||||
|
"tools/net461-x86/GetDocument.Insider.exe",
|
||||||
|
"tools/net461-x86/GetDocument.Insider.exe.config",
|
||||||
|
"tools/net461-x86/Microsoft.Win32.Primitives.dll",
|
||||||
|
"tools/net461-x86/System.AppContext.dll",
|
||||||
|
"tools/net461-x86/System.Buffers.dll",
|
||||||
|
"tools/net461-x86/System.Collections.Concurrent.dll",
|
||||||
|
"tools/net461-x86/System.Collections.NonGeneric.dll",
|
||||||
|
"tools/net461-x86/System.Collections.Specialized.dll",
|
||||||
|
"tools/net461-x86/System.Collections.dll",
|
||||||
|
"tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
|
||||||
|
"tools/net461-x86/System.ComponentModel.Primitives.dll",
|
||||||
|
"tools/net461-x86/System.ComponentModel.TypeConverter.dll",
|
||||||
|
"tools/net461-x86/System.ComponentModel.dll",
|
||||||
|
"tools/net461-x86/System.Console.dll",
|
||||||
|
"tools/net461-x86/System.Data.Common.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.Contracts.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.Debug.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.Process.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.StackTrace.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.Tools.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.TraceSource.dll",
|
||||||
|
"tools/net461-x86/System.Diagnostics.Tracing.dll",
|
||||||
|
"tools/net461-x86/System.Drawing.Primitives.dll",
|
||||||
|
"tools/net461-x86/System.Dynamic.Runtime.dll",
|
||||||
|
"tools/net461-x86/System.Globalization.Calendars.dll",
|
||||||
|
"tools/net461-x86/System.Globalization.Extensions.dll",
|
||||||
|
"tools/net461-x86/System.Globalization.dll",
|
||||||
|
"tools/net461-x86/System.IO.Compression.ZipFile.dll",
|
||||||
|
"tools/net461-x86/System.IO.Compression.dll",
|
||||||
|
"tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
|
||||||
|
"tools/net461-x86/System.IO.FileSystem.Primitives.dll",
|
||||||
|
"tools/net461-x86/System.IO.FileSystem.Watcher.dll",
|
||||||
|
"tools/net461-x86/System.IO.FileSystem.dll",
|
||||||
|
"tools/net461-x86/System.IO.IsolatedStorage.dll",
|
||||||
|
"tools/net461-x86/System.IO.MemoryMappedFiles.dll",
|
||||||
|
"tools/net461-x86/System.IO.Pipes.dll",
|
||||||
|
"tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
|
||||||
|
"tools/net461-x86/System.IO.dll",
|
||||||
|
"tools/net461-x86/System.Linq.Expressions.dll",
|
||||||
|
"tools/net461-x86/System.Linq.Parallel.dll",
|
||||||
|
"tools/net461-x86/System.Linq.Queryable.dll",
|
||||||
|
"tools/net461-x86/System.Linq.dll",
|
||||||
|
"tools/net461-x86/System.Memory.dll",
|
||||||
|
"tools/net461-x86/System.Net.Http.dll",
|
||||||
|
"tools/net461-x86/System.Net.NameResolution.dll",
|
||||||
|
"tools/net461-x86/System.Net.NetworkInformation.dll",
|
||||||
|
"tools/net461-x86/System.Net.Ping.dll",
|
||||||
|
"tools/net461-x86/System.Net.Primitives.dll",
|
||||||
|
"tools/net461-x86/System.Net.Requests.dll",
|
||||||
|
"tools/net461-x86/System.Net.Security.dll",
|
||||||
|
"tools/net461-x86/System.Net.Sockets.dll",
|
||||||
|
"tools/net461-x86/System.Net.WebHeaderCollection.dll",
|
||||||
|
"tools/net461-x86/System.Net.WebSockets.Client.dll",
|
||||||
|
"tools/net461-x86/System.Net.WebSockets.dll",
|
||||||
|
"tools/net461-x86/System.Numerics.Vectors.dll",
|
||||||
|
"tools/net461-x86/System.ObjectModel.dll",
|
||||||
|
"tools/net461-x86/System.Reflection.Extensions.dll",
|
||||||
|
"tools/net461-x86/System.Reflection.Primitives.dll",
|
||||||
|
"tools/net461-x86/System.Reflection.dll",
|
||||||
|
"tools/net461-x86/System.Resources.Reader.dll",
|
||||||
|
"tools/net461-x86/System.Resources.ResourceManager.dll",
|
||||||
|
"tools/net461-x86/System.Resources.Writer.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.Extensions.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.Handles.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.InteropServices.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.Numerics.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.Serialization.Json.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.Serialization.Xml.dll",
|
||||||
|
"tools/net461-x86/System.Runtime.dll",
|
||||||
|
"tools/net461-x86/System.Security.Claims.dll",
|
||||||
|
"tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
|
||||||
|
"tools/net461-x86/System.Security.Cryptography.Csp.dll",
|
||||||
|
"tools/net461-x86/System.Security.Cryptography.Encoding.dll",
|
||||||
|
"tools/net461-x86/System.Security.Cryptography.Primitives.dll",
|
||||||
|
"tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
|
||||||
|
"tools/net461-x86/System.Security.Principal.dll",
|
||||||
|
"tools/net461-x86/System.Security.SecureString.dll",
|
||||||
|
"tools/net461-x86/System.Text.Encoding.Extensions.dll",
|
||||||
|
"tools/net461-x86/System.Text.Encoding.dll",
|
||||||
|
"tools/net461-x86/System.Text.RegularExpressions.dll",
|
||||||
|
"tools/net461-x86/System.Threading.Overlapped.dll",
|
||||||
|
"tools/net461-x86/System.Threading.Tasks.Parallel.dll",
|
||||||
|
"tools/net461-x86/System.Threading.Tasks.dll",
|
||||||
|
"tools/net461-x86/System.Threading.Thread.dll",
|
||||||
|
"tools/net461-x86/System.Threading.ThreadPool.dll",
|
||||||
|
"tools/net461-x86/System.Threading.Timer.dll",
|
||||||
|
"tools/net461-x86/System.Threading.dll",
|
||||||
|
"tools/net461-x86/System.ValueTuple.dll",
|
||||||
|
"tools/net461-x86/System.Xml.ReaderWriter.dll",
|
||||||
|
"tools/net461-x86/System.Xml.XDocument.dll",
|
||||||
|
"tools/net461-x86/System.Xml.XPath.XDocument.dll",
|
||||||
|
"tools/net461-x86/System.Xml.XPath.dll",
|
||||||
|
"tools/net461-x86/System.Xml.XmlDocument.dll",
|
||||||
|
"tools/net461-x86/System.Xml.XmlSerializer.dll",
|
||||||
|
"tools/net461-x86/netstandard.dll",
|
||||||
|
"tools/net461/GetDocument.Insider.exe",
|
||||||
|
"tools/net461/GetDocument.Insider.exe.config",
|
||||||
|
"tools/net461/Microsoft.Win32.Primitives.dll",
|
||||||
|
"tools/net461/System.AppContext.dll",
|
||||||
|
"tools/net461/System.Buffers.dll",
|
||||||
|
"tools/net461/System.Collections.Concurrent.dll",
|
||||||
|
"tools/net461/System.Collections.NonGeneric.dll",
|
||||||
|
"tools/net461/System.Collections.Specialized.dll",
|
||||||
|
"tools/net461/System.Collections.dll",
|
||||||
|
"tools/net461/System.ComponentModel.EventBasedAsync.dll",
|
||||||
|
"tools/net461/System.ComponentModel.Primitives.dll",
|
||||||
|
"tools/net461/System.ComponentModel.TypeConverter.dll",
|
||||||
|
"tools/net461/System.ComponentModel.dll",
|
||||||
|
"tools/net461/System.Console.dll",
|
||||||
|
"tools/net461/System.Data.Common.dll",
|
||||||
|
"tools/net461/System.Diagnostics.Contracts.dll",
|
||||||
|
"tools/net461/System.Diagnostics.Debug.dll",
|
||||||
|
"tools/net461/System.Diagnostics.DiagnosticSource.dll",
|
||||||
|
"tools/net461/System.Diagnostics.FileVersionInfo.dll",
|
||||||
|
"tools/net461/System.Diagnostics.Process.dll",
|
||||||
|
"tools/net461/System.Diagnostics.StackTrace.dll",
|
||||||
|
"tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
|
||||||
|
"tools/net461/System.Diagnostics.Tools.dll",
|
||||||
|
"tools/net461/System.Diagnostics.TraceSource.dll",
|
||||||
|
"tools/net461/System.Diagnostics.Tracing.dll",
|
||||||
|
"tools/net461/System.Drawing.Primitives.dll",
|
||||||
|
"tools/net461/System.Dynamic.Runtime.dll",
|
||||||
|
"tools/net461/System.Globalization.Calendars.dll",
|
||||||
|
"tools/net461/System.Globalization.Extensions.dll",
|
||||||
|
"tools/net461/System.Globalization.dll",
|
||||||
|
"tools/net461/System.IO.Compression.ZipFile.dll",
|
||||||
|
"tools/net461/System.IO.Compression.dll",
|
||||||
|
"tools/net461/System.IO.FileSystem.DriveInfo.dll",
|
||||||
|
"tools/net461/System.IO.FileSystem.Primitives.dll",
|
||||||
|
"tools/net461/System.IO.FileSystem.Watcher.dll",
|
||||||
|
"tools/net461/System.IO.FileSystem.dll",
|
||||||
|
"tools/net461/System.IO.IsolatedStorage.dll",
|
||||||
|
"tools/net461/System.IO.MemoryMappedFiles.dll",
|
||||||
|
"tools/net461/System.IO.Pipes.dll",
|
||||||
|
"tools/net461/System.IO.UnmanagedMemoryStream.dll",
|
||||||
|
"tools/net461/System.IO.dll",
|
||||||
|
"tools/net461/System.Linq.Expressions.dll",
|
||||||
|
"tools/net461/System.Linq.Parallel.dll",
|
||||||
|
"tools/net461/System.Linq.Queryable.dll",
|
||||||
|
"tools/net461/System.Linq.dll",
|
||||||
|
"tools/net461/System.Memory.dll",
|
||||||
|
"tools/net461/System.Net.Http.dll",
|
||||||
|
"tools/net461/System.Net.NameResolution.dll",
|
||||||
|
"tools/net461/System.Net.NetworkInformation.dll",
|
||||||
|
"tools/net461/System.Net.Ping.dll",
|
||||||
|
"tools/net461/System.Net.Primitives.dll",
|
||||||
|
"tools/net461/System.Net.Requests.dll",
|
||||||
|
"tools/net461/System.Net.Security.dll",
|
||||||
|
"tools/net461/System.Net.Sockets.dll",
|
||||||
|
"tools/net461/System.Net.WebHeaderCollection.dll",
|
||||||
|
"tools/net461/System.Net.WebSockets.Client.dll",
|
||||||
|
"tools/net461/System.Net.WebSockets.dll",
|
||||||
|
"tools/net461/System.Numerics.Vectors.dll",
|
||||||
|
"tools/net461/System.ObjectModel.dll",
|
||||||
|
"tools/net461/System.Reflection.Extensions.dll",
|
||||||
|
"tools/net461/System.Reflection.Primitives.dll",
|
||||||
|
"tools/net461/System.Reflection.dll",
|
||||||
|
"tools/net461/System.Resources.Reader.dll",
|
||||||
|
"tools/net461/System.Resources.ResourceManager.dll",
|
||||||
|
"tools/net461/System.Resources.Writer.dll",
|
||||||
|
"tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
|
||||||
|
"tools/net461/System.Runtime.CompilerServices.VisualC.dll",
|
||||||
|
"tools/net461/System.Runtime.Extensions.dll",
|
||||||
|
"tools/net461/System.Runtime.Handles.dll",
|
||||||
|
"tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
|
||||||
|
"tools/net461/System.Runtime.InteropServices.dll",
|
||||||
|
"tools/net461/System.Runtime.Numerics.dll",
|
||||||
|
"tools/net461/System.Runtime.Serialization.Formatters.dll",
|
||||||
|
"tools/net461/System.Runtime.Serialization.Json.dll",
|
||||||
|
"tools/net461/System.Runtime.Serialization.Primitives.dll",
|
||||||
|
"tools/net461/System.Runtime.Serialization.Xml.dll",
|
||||||
|
"tools/net461/System.Runtime.dll",
|
||||||
|
"tools/net461/System.Security.Claims.dll",
|
||||||
|
"tools/net461/System.Security.Cryptography.Algorithms.dll",
|
||||||
|
"tools/net461/System.Security.Cryptography.Csp.dll",
|
||||||
|
"tools/net461/System.Security.Cryptography.Encoding.dll",
|
||||||
|
"tools/net461/System.Security.Cryptography.Primitives.dll",
|
||||||
|
"tools/net461/System.Security.Cryptography.X509Certificates.dll",
|
||||||
|
"tools/net461/System.Security.Principal.dll",
|
||||||
|
"tools/net461/System.Security.SecureString.dll",
|
||||||
|
"tools/net461/System.Text.Encoding.Extensions.dll",
|
||||||
|
"tools/net461/System.Text.Encoding.dll",
|
||||||
|
"tools/net461/System.Text.RegularExpressions.dll",
|
||||||
|
"tools/net461/System.Threading.Overlapped.dll",
|
||||||
|
"tools/net461/System.Threading.Tasks.Parallel.dll",
|
||||||
|
"tools/net461/System.Threading.Tasks.dll",
|
||||||
|
"tools/net461/System.Threading.Thread.dll",
|
||||||
|
"tools/net461/System.Threading.ThreadPool.dll",
|
||||||
|
"tools/net461/System.Threading.Timer.dll",
|
||||||
|
"tools/net461/System.Threading.dll",
|
||||||
|
"tools/net461/System.ValueTuple.dll",
|
||||||
|
"tools/net461/System.Xml.ReaderWriter.dll",
|
||||||
|
"tools/net461/System.Xml.XDocument.dll",
|
||||||
|
"tools/net461/System.Xml.XPath.XDocument.dll",
|
||||||
|
"tools/net461/System.Xml.XPath.dll",
|
||||||
|
"tools/net461/System.Xml.XmlDocument.dll",
|
||||||
|
"tools/net461/System.Xml.XmlSerializer.dll",
|
||||||
|
"tools/net461/netstandard.dll",
|
||||||
|
"tools/netcoreapp2.1/GetDocument.Insider.deps.json",
|
||||||
|
"tools/netcoreapp2.1/GetDocument.Insider.dll",
|
||||||
|
"tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
|
||||||
|
"tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Microsoft.OpenApi/1.4.3": {
|
||||||
|
"sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "microsoft.openapi/1.4.3",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"lib/netstandard2.0/Microsoft.OpenApi.dll",
|
||||||
|
"lib/netstandard2.0/Microsoft.OpenApi.pdb",
|
||||||
|
"lib/netstandard2.0/Microsoft.OpenApi.xml",
|
||||||
|
"microsoft.openapi.1.4.3.nupkg.sha512",
|
||||||
|
"microsoft.openapi.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore/6.5.0": {
|
||||||
|
"sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "swashbuckle.aspnetcore/6.5.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"build/Swashbuckle.AspNetCore.props",
|
||||||
|
"swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
|
||||||
|
"swashbuckle.aspnetcore.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore.Swagger/6.5.0": {
|
||||||
|
"sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "swashbuckle.aspnetcore.swagger/6.5.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
|
||||||
|
"lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
|
||||||
|
"lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
|
||||||
|
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
|
||||||
|
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
|
||||||
|
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
|
||||||
|
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
|
||||||
|
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
|
||||||
|
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
|
||||||
|
"lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
|
||||||
|
"lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
|
||||||
|
"lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
|
||||||
|
"swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
|
||||||
|
"swashbuckle.aspnetcore.swagger.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
|
||||||
|
"sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
|
||||||
|
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
|
||||||
|
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
|
||||||
|
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
|
||||||
|
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
|
||||||
|
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
|
||||||
|
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
|
||||||
|
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
|
||||||
|
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
|
||||||
|
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
|
||||||
|
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
|
||||||
|
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
|
||||||
|
"swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
|
||||||
|
"swashbuckle.aspnetcore.swaggergen.nuspec"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
|
||||||
|
"sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
|
||||||
|
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
|
||||||
|
"lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
|
||||||
|
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
|
||||||
|
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
|
||||||
|
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
|
||||||
|
"lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
|
||||||
|
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
|
||||||
|
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
|
||||||
|
"lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
|
||||||
|
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
|
||||||
|
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
|
||||||
|
"lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
|
||||||
|
"swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
|
||||||
|
"swashbuckle.aspnetcore.swaggerui.nuspec"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net8.0": [
|
||||||
|
"Microsoft.AspNetCore.OpenApi >= 8.0.0",
|
||||||
|
"Swashbuckle.AspNetCore >= 6.5.0"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\Tatyana\\.nuget\\packages\\": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
|
||||||
|
"projectName": "worker-1",
|
||||||
|
"projectPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Tatyana\\.nuget\\packages\\",
|
||||||
|
"outputPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Tatyana\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.OpenApi": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[8.0.0, )"
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[6.5.0, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.AspNetCore.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
16
tasks/mikhailov-ys/Lab_3/worker-1/obj/project.nuget.cache
Normal file
16
tasks/mikhailov-ys/Lab_3/worker-1/obj/project.nuget.cache
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "ALwYvsocpuh/iMCNJsvJ4s//R/rYtPLPayhzmaRF5PlffJSt81eonZnp6mEHPiyLLdHXC3Iae1BkgEK0Ra3etA==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"C:\\Users\\Tatyana\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.0\\microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Tatyana\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
|
||||||
|
"C:\\Users\\Tatyana\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512",
|
||||||
|
"C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\Tatyana\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
@ -0,0 +1,76 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
|
||||||
|
"projectName": "worker-1",
|
||||||
|
"projectPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\worker-1.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Tatyana\\.nuget\\packages\\",
|
||||||
|
"outputPath": "C:\\Users\\Tatyana\\Desktop\\ЮраРВИП\\lab_3\\worker-1\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Tatyana\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net8.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net8.0": {
|
||||||
|
"targetAlias": "net8.0",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.AspNetCore.OpenApi": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[8.0.0, )"
|
||||||
|
},
|
||||||
|
"Swashbuckle.AspNetCore": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[6.5.0, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.AspNetCore.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Tatyana\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Tatyana\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props')" />
|
||||||
|
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\6.5.0\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\6.5.0\build\Swashbuckle.AspNetCore.props')" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\Tatyana\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5</PkgMicrosoft_Extensions_ApiDescription_Server>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
15
tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj
Normal file
15
tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<RootNamespace>worker_1</RootNamespace>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.0" />
|
||||||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
6
tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj.user
Normal file
6
tasks/mikhailov-ys/Lab_3/worker-1/worker-1.csproj.user
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<ActiveDebugProfile>https</ActiveDebugProfile>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
22
tasks/mikhailov-ys/Lab_3/worker-1/worker-1.sln
Normal file
22
tasks/mikhailov-ys/Lab_3/worker-1/worker-1.sln
Normal file
@ -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
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/v17/.suo
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-2/.vs/worker-2/v17/.suo
Normal file
Binary file not shown.
11
tasks/mikhailov-ys/Lab_3/worker-2/Dockerfile
Normal file
11
tasks/mikhailov-ys/Lab_3/worker-2/Dockerfile
Normal file
@ -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"]
|
142
tasks/mikhailov-ys/Lab_3/worker-2/Program.cs
Normal file
142
tasks/mikhailov-ys/Lab_3/worker-2/Program.cs
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Microsoft.AspNetCore.Builder;
|
||||||
|
using Microsoft.OpenApi.Models;
|
||||||
|
|
||||||
|
List<Сities> сities = new()
|
||||||
|
{
|
||||||
|
new Сities() { Uuid= Guid.NewGuid(), Population = "134r23", Name = "Moscow", IdCountrie = Guid.Parse("6a1b4a72-5669-41fe-8d5b-106dc86f58bd") },
|
||||||
|
new Сities() { Uuid= Guid.NewGuid(), Population = "223322213", Name = "Paris", IdCountrie = Guid.Parse("f8692bea-b7e6-4164-b564-a921f16c35c9") },
|
||||||
|
new Сities() { Uuid= Guid.NewGuid(), Population = "32123", Name = "New York", IdCountrie = Guid.Parse("464bbdb8-39c0-4644-b9c0-3df1c484ea7e") },
|
||||||
|
new Сities() { Uuid= Guid.NewGuid(), Population = "312122", Name = "Sant Peterburg", IdCountrie = Guid.Parse("464bbdb8-39c0-4644-b9c0-3df1c484ea7e") },
|
||||||
|
};
|
||||||
|
|
||||||
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
|
builder.Services.AddEndpointsApiExplorer();
|
||||||
|
builder.Services.AddSwaggerGen();
|
||||||
|
|
||||||
|
var app = builder.Build();
|
||||||
|
|
||||||
|
if (app.Environment.IsDevelopment())
|
||||||
|
{
|
||||||
|
app.UseSwagger();
|
||||||
|
app.UseSwaggerUI();
|
||||||
|
}
|
||||||
|
|
||||||
|
app.UseHttpsRedirection();
|
||||||
|
|
||||||
|
app.MapGet("/", () =>
|
||||||
|
{
|
||||||
|
return сities.Select(r => new CityEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = r.Uuid,
|
||||||
|
Population = r.Population,
|
||||||
|
Name = r.Name,
|
||||||
|
IdCountrie = r.IdCountrie,
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("GetСities")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.MapGet("/{uuid}", (Guid uuid) =>
|
||||||
|
{
|
||||||
|
var city = сities.FirstOrDefault(r => r.Uuid == uuid);
|
||||||
|
if (city == null)
|
||||||
|
return Results.NotFound();
|
||||||
|
return Results.Json(new CityEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = city.Uuid,
|
||||||
|
Population = city.Population,
|
||||||
|
Name = city.Name,
|
||||||
|
IdCountrie = city.IdCountrie,
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("GetCityByGUID")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.MapPost("/{population}/{name}/{IdCountrie}", (string? Population, string Name, Guid IdCountrie) =>
|
||||||
|
{
|
||||||
|
Guid NewGuid = Guid.NewGuid();
|
||||||
|
сities.Add(new Сities() { Uuid = NewGuid, Population = (string)Population, Name = (string)Name, IdCountrie = (Guid)IdCountrie });
|
||||||
|
|
||||||
|
var city = сities.FirstOrDefault(r => r.Uuid == NewGuid);
|
||||||
|
if (city == null)
|
||||||
|
return Results.NotFound();
|
||||||
|
return Results.Json(new CityEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = city.Uuid,
|
||||||
|
Population = city.Population,
|
||||||
|
Name = city.Name,
|
||||||
|
IdCountrie = city.IdCountrie,
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("PostCity")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.MapPatch("/{uuid}/{population}/{name}/{IdCountrie}", (Guid uuid, string ?population, string name, Guid IdCountrie) =>
|
||||||
|
{
|
||||||
|
var city = сities.FirstOrDefault(r => r.Uuid == uuid);
|
||||||
|
if (city == null)
|
||||||
|
return Results.NotFound();
|
||||||
|
if (population != ",") city.Population = population;
|
||||||
|
if (name != city.Name) city.Name = name;
|
||||||
|
if (IdCountrie != city.IdCountrie) city.IdCountrie = IdCountrie;
|
||||||
|
|
||||||
|
return Results.Json(new CityEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = city.Uuid,
|
||||||
|
Population = city.Population,
|
||||||
|
Name = city.Name,
|
||||||
|
IdCountrie = city.IdCountrie,
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("UpdateCity")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.MapDelete("/{uuid}", (Guid uuid) =>
|
||||||
|
{
|
||||||
|
var city = сities.FirstOrDefault(r => r.Uuid == uuid);
|
||||||
|
if (city == null)
|
||||||
|
return Results.NotFound();
|
||||||
|
сities.Remove(city);
|
||||||
|
return Results.Json(new CityEntityDto()
|
||||||
|
{
|
||||||
|
Uuid = city.Uuid,
|
||||||
|
Population = city.Population,
|
||||||
|
Name = city.Name,
|
||||||
|
IdCountrie = city.IdCountrie,
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.WithName("DeleteCity")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.MapGet("/Сities/", async () =>
|
||||||
|
{
|
||||||
|
var httpClient = new HttpClient();
|
||||||
|
var secondWorkerResponse = await httpClient.GetStringAsync("http://worker-1:8080/");
|
||||||
|
|
||||||
|
return secondWorkerResponse.ToArray();
|
||||||
|
})
|
||||||
|
.WithName("GetCountries")
|
||||||
|
.WithOpenApi();
|
||||||
|
|
||||||
|
app.Run();
|
||||||
|
|
||||||
|
public class Сities
|
||||||
|
{
|
||||||
|
public Guid Uuid { get; set; }
|
||||||
|
public string Population { get; set; } = string.Empty;
|
||||||
|
public string Name { get; set; } = string.Empty;
|
||||||
|
public Guid IdCountrie { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CityEntityDto : Сities { }
|
||||||
|
|
||||||
|
public class Countries
|
||||||
|
{
|
||||||
|
public Guid Uuid { get; set; }
|
||||||
|
public string Name { get; set; } = string.Empty;
|
||||||
|
public string Area { get; set; } = string.Empty;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CountrieEntityDto : Countries { }
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
9
tasks/mikhailov-ys/Lab_3/worker-2/appsettings.json
Normal file
9
tasks/mikhailov-ys/Lab_3/worker-2/appsettings.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.dll
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.dll
Normal file
Binary file not shown.
BIN
tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.exe
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.exe
Normal file
Binary file not shown.
BIN
tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.pdb
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-2/bin/Debug/net8.0/worker-2.pdb
Normal file
Binary file not shown.
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
BIN
tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/apphost.exe
Normal file
BIN
tasks/mikhailov-ys/Lab_3/worker-2/obj/Debug/net8.0/apphost.exe
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"Version": 1,
|
||||||
|
"Hash": "z2MY7t3lyZIl9bBara1Lj5//SrieSffKb2Jw8dnlRYM=",
|
||||||
|
"Source": "worker-2",
|
||||||
|
"BasePath": "_content/worker-2",
|
||||||
|
"Mode": "Default",
|
||||||
|
"ManifestType": "Build",
|
||||||
|
"ReferencedProjectsConfiguration": [],
|
||||||
|
"DiscoveryPatterns": [],
|
||||||
|
"Assets": []
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
<Project>
|
||||||
|
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||||
|
</Project>
|
@ -0,0 +1,3 @@
|
|||||||
|
<Project>
|
||||||
|
<Import Project="..\build\worker-2.props" />
|
||||||
|
</Project>
|
@ -0,0 +1,3 @@
|
|||||||
|
<Project>
|
||||||
|
<Import Project="..\buildMultiTargeting\worker-2.props" />
|
||||||
|
</Project>
|
@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("worker-2")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("worker-2")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("worker-2")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// Создано классом WriteCodeFragment MSBuild.
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
289a96ce4f3edd48759f337eb6257abcd4aef46bc4e09ccc9c57510039f1515f
|
@ -0,0 +1,19 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net8.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb = true
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = worker_2
|
||||||
|
build_property.RootNamespace = worker_2
|
||||||
|
build_property.ProjectDir = C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
build_property.RazorLangVersion = 8.0
|
||||||
|
build_property.SupportLocalizedComponentNames =
|
||||||
|
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||||
|
build_property.MSBuildProjectDirectory = C:\Users\Tatyana\Desktop\ЮраРВИП\lab_3\worker-2
|
||||||
|
build_property._RazorSourceGeneratorDebug =
|
@ -0,0 +1,17 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
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;
|
@ -0,0 +1,17 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user