[Л/Р] Лямзина Мария #108

Closed
2510maria2002 wants to merge 2 commits from 2510maria2002:lyamzina-ma-lab4 into main
171 changed files with 5812 additions and 4 deletions

View File

@ -134,8 +134,8 @@ _ReSharper*/
*.[Rr]e[Ss]harper *.[Rr]e[Ss]harper
*.DotSettings.user *.DotSettings.user
# TeamCity is a build add-in # TeamProduct is a build add-in
_TeamCity* _TeamProducty*
# DotCover is a Code Coverage Tool # DotCover is a Code Coverage Tool
*.dotCover *.dotCover

View File

@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}

View File

@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,85 @@
# Отчет по лабораторной работе №3
Выполнила студентка гр. ИСЭбд-41 Лямзина М.А.
## REST API, Gateway и синхронный обмен между микросервисами
## Создание микросервисов
1. С помощью команды `dotnet new web -n worker-1` в терминале создал первый микросервис
2. Добавил решение командой `dotnet new sln`
3. Связал решение и проект командой `dotnet sln worker-1.sln add worker-1.csproj`
4. Повторил действие для второго микросервиса
5. Добавил библиотеку Swagger и OpenAi в проекты и запустил с помощью команды `dotnet run`
Скриншоты протестированных микросервисов:
![](скрины/2.png)
## Реализация синхронного обмена
Реализовал код, который вызывает сихронно данные из соседнего микросервиса.
```cs
//worker-2
app.MapGet("/Genres/", async () =>
{
var httpClient = new HttpClient();
var secondWorkerResponse = await httpClient.GetStringAsync("http://worker-1:8080/");
return secondWorkerResponse.ToArray();
})
.WithName("GetCategories")
.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:
![](скрины/3.png)
index.html на gateway-1:
![](скрины/1.png)
worker-1:
![](скрины/4.png)
worker-2:
![](скрины/5.png)

View 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

View File

@ -0,0 +1,456 @@
var/result/
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Mono auto generated files
mono_crash.*
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/
# Visual Studio 2015/2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# Visual Studio 2017 auto generated files
Generated\ Files/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUnit
*.VisualState.xml
TestResult.xml
nunit-*.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
# Benchmark Results
BenchmarkDotNet.Artifacts/
# .NET
project.lock.json
project.fragment.lock.json
artifacts/
# Tye
.tye/
# ASP.NET Scaffolding
ScaffoldingReadMe.txt
# StyleCop
StyleCopReport.xml
# Files built by Visual Studio
*_i.c
*_p.c
*_h.h
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*_wpftmp.csproj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb
# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap
# Visual Studio Trace Files
*.e2e
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# TeamProduct is a build add-in
_TeamProduct*
# DotCover is a Code Coverage Tool
*.dotCover
# AxoCover is a Code Coverage Tool
.axoCover/*
!.axoCover/settings.json
# Coverlet is a free, cross platform Code Coverage Tool
coverage*.json
coverage*.xml
coverage*.info
# Visual Studio code coverage results
*.coverage
*.coveragexml
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/
# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output
csx/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.appx
*.appxbundle
*.appxupload
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!?*.[Cc]ache/
# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs
# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
#*.snk
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
ServiceFabricBackup/
*.rptproj.bak
# SQL Server files
*.mdf
*.ldf
*.ndf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
*- [Bb]ackup.rdl
*- [Bb]ackup ([0-9]).rdl
*- [Bb]ackup ([0-9][0-9]).rdl
# Microsoft Fakes
FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
node_modules/
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# CodeRush personal settings
.cr/personal
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config
# Tabs Studio
*.tss
# Telerik's JustMock configuration file
*.jmconfig
# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs
# OpenCover UI analysis results
OpenCover/
# Azure Stream Analytics local run output
ASALocalRun/
# MSBuild Binary and Structured Log
*.binlog
# NVidia Nsight GPU debugger configuration file
*.nvuser
# MFractors (Xamarin productivity tool) working folder
.mfractor/
# Local History for Visual Studio
.localhistory/
# BeatPulse healthcheck temp database
healthchecksdb
# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
.ionide/
# Fody - auto-generated XML schema
FodyWeavers.xsd
##
## Visual studio for Mac
##
# globs
Makefile.in
*.userprefs
*.usertasks
config.make
config.status
aclocal.m4
install-sh
autom4te.cache/
*.tar.gz
tarballs/
test-results/
# Mac bundle stuff
*.dmg
*.app
# content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
# General
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db
# Dump file
*.stackdump
# Folder config file
[Dd]esktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp
# Windows shortcuts
*.lnk
# JetBrains Rider
.idea/
*.sln.iml
##
## Visual Studio Code
##
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

View 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;
}
}

View 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>

View File

@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}

View File

@ -0,0 +1,10 @@
{
"ExpandedNodes": [
"",
"\\bin",
"\\bin\\Debug",
"\\bin\\Debug\\net8.0"
],
"SelectedNode": "\\bin\\Debug\\net8.0",
"PreviewInSolutionExplorer": false
}

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View 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"]

View File

@ -0,0 +1,111 @@
List<Categories> categories = new()
{
new Categories() { Uuid= Guid.Parse("6a1b4a72-5669-41fe-8d5b-106dc86f58bd"), Name = "Неуловимые мстители", Product = "Фильм"},
new Categories() { Uuid= Guid.Parse("464bbdb8-39c0-4644-b9c0-3df1c484ea7e"), Name = "Уэнздей", Product = "Сериал"},
new Categories() { Uuid= Guid.Parse("f8692bea-b7e6-4164-b564-a921f16c35c9"), Name = "Война и мир", Product = "Книга"},
};
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 categories.Select(r => new CategoryEntityDto()
{
Uuid = r.Uuid,
Name = r.Name,
Product = r.Product,
});
})
.WithName("GetCategories")
.WithOpenApi();
app.MapGet("/{uuid}", (Guid uuid) =>
{
var category = categories.FirstOrDefault(r => r.Uuid == uuid);
if (category == null)
return Results.NotFound();
return Results.Json(new CategoryEntityDto()
{
Uuid = category.Uuid,
Name = category.Name,
Product = category.Product,
});
})
.WithName("GetCategoryByGUID")
.WithOpenApi();
app.MapPost("/{name}/{product}", (string Name, string Product) =>
{
Guid NewGuid = Guid.NewGuid();
categories.Add(new Categories() { Uuid = NewGuid, Name = (string)Name, Product = (string)Product});
var category = categories.FirstOrDefault(r => r.Uuid == NewGuid);
if (category == null)
return Results.NotFound();
return Results.Json(new CategoryEntityDto()
{
Uuid = category.Uuid,
Name = category.Name,
Product = category.Product,
});
})
.WithName("PostCategory")
.WithOpenApi();
app.MapPatch("/{uuid}/{name}/{product}", (Guid uuid, string ?name, string ?product) =>
{
var category = categories.FirstOrDefault(r => r.Uuid == uuid);
if (category == null)
return Results.NotFound();
if (name != null) category.Name = name;
if (product != null) category.Product = product;
return Results.Json(new CategoryEntityDto()
{
Uuid = category.Uuid,
Name = category.Name,
Product = category.Product,
});
})
.WithName("UpdateCategory")
.WithOpenApi();
app.MapDelete("/{uuid}", (Guid uuid) =>
{
var category = categories.FirstOrDefault(r => r.Uuid == uuid);
if (category == null)
return Results.NotFound();
categories.Remove(category);
return Results.Json(new CategoryEntityDto()
{
Uuid = category.Uuid,
Name = category.Name,
Product = category.Product,
});
})
.WithName("DeleteCategoryByGUID")
.WithOpenApi();
app.Run();
public class Categories
{
public Guid Uuid { get; set; }
public string Name { get; set; } = string.Empty;
public string Product { get; set; } = string.Empty;
}
public class CategoryEntityDto : Categories { }

View File

@ -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"
}
}
}
}

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View File

@ -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"
}
}
}

View File

@ -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
}
}
}

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View File

@ -0,0 +1,11 @@
{
"Version": 1,
"Hash": "BF75hG0h0pFHvvsifWmW09xNUktph/Cwh45TuA9Fwgw=",
"Source": "worker-1",
"BasePath": "_content/worker-1",
"Mode": "Default",
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [],
"DiscoveryPatterns": [],
"Assets": []
}

View File

@ -0,0 +1,3 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>

View File

@ -0,0 +1,3 @@
<Project>
<Import Project="..\build\worker-1.props" />
</Project>

View File

@ -0,0 +1,3 @@
<Project>
<Import Project="..\buildMultiTargeting\worker-1.props" />
</Project>

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </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.

View File

@ -0,0 +1 @@
3598cf5a66e0d331028da526c00b9c8ffd811ed52bc0659c1e11d7f85f11b483

View File

@ -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\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\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\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1
build_property._RazorSourceGeneratorDebug =

View File

@ -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;

View File

@ -0,0 +1,18 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </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.

View File

@ -0,0 +1 @@
182f7e2baff72bae6cfd4a057c51e3a991fa63acabbcb593e303eb8d0c38dd52

View File

@ -0,0 +1,99 @@
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
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.AssemblyReference.cache
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.GeneratedMSBuildEditorConfig.editorconfig
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfoInputs.cache
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfo.cs
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CoreCompileInputs.cache
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cs
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cache
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.dll
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\refint\worker-1.dll
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.pdb
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\appsettings.Development.json
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\appsettings.json
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\worker-1.exe
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\worker-1.deps.json
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\worker-1.runtimeconfig.json
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\worker-1.dll
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\worker-1.pdb
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\Microsoft.OpenApi.dll
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.build.json
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.development.json
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.worker-1.Microsoft.AspNetCore.StaticWebAssets.props
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.build.worker-1.props
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.worker-1.props
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.worker-1.props
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.pack.json
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\scopedcss\bundle\worker-1.styles.css
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CopyComplete
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\worker-1.genruntimeconfig.cache
D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\obj\Debug\net8.0\ref\worker-1.dll
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\appsettings.Development.json
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\appsettings.json
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\worker-1.exe
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\worker-1.deps.json
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\worker-1.runtimeconfig.json
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\worker-1.dll
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\worker-1.pdb
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\Microsoft.OpenApi.dll
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.AssemblyReference.cache
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfoInputs.cache
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.AssemblyInfo.cs
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CoreCompileInputs.cache
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cs
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.MvcApplicationPartsAssemblyInfo.cache
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.build.json
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.development.json
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.worker-1.Microsoft.AspNetCore.StaticWebAssets.props
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.build.worker-1.props
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.worker-1.props
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.worker-1.props
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\staticwebassets.pack.json
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\scopedcss\bundle\worker-1.styles.css
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.csproj.CopyComplete
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.dll
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\refint\worker-1.dll
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.pdb
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\worker-1.genruntimeconfig.cache
C:\Users\2510m\Desktop\4 курс\РВИП\distributed-computing\tasks\lyamzina-ma\lab_3\worker-1\obj\Debug\net8.0\ref\worker-1.dll

View File

@ -0,0 +1 @@
f2eb7e33256e35cd949973558482b88386e4acd457600739e28a8aa06ee82afe

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код создан программой.
// Исполняемая версия:4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
// повторной генерации кода.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("worker-1")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[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.

View File

@ -0,0 +1 @@
dcc332248b7d734967a3adb13c38fee1b81c5e9051975dd52cdd318f424e80b9

View File

@ -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 = D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 8.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = D:\git\distributed-computing\tasks\kazakov-ev\lab_3\worker-1
build_property._RazorSourceGeneratorDebug =

View File

@ -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;

View File

@ -0,0 +1,549 @@
{
"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\\2510m\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\2510m\\Desktop\\4 курс\\РВИП\\distributed-computing\\tasks\\lyamzina-ma\\lab_3\\worker-1\\worker-1.csproj",
"projectName": "worker-1",
"projectPath": "C:\\Users\\2510m\\Desktop\\4 курс\\РВИП\\distributed-computing\\tasks\\lyamzina-ma\\lab_3\\worker-1\\worker-1.csproj",
"packagesPath": "C:\\Users\\2510m\\.nuget\\packages\\",
"outputPath": "C:\\Users\\2510m\\Desktop\\4 курс\\РВИП\\distributed-computing\\tasks\\lyamzina-ma\\lab_3\\worker-1\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\2510m\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.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"
}
}
}
}

View File

@ -0,0 +1,16 @@
{
"version": 2,
"dgSpecHash": "dOYjXd4oKyFlpuxRvsuTjS2Aj2Q+gYeScxJzdiweZxnTq3d4kFlW2DbJc7kDHHmBVY5WYtZ9O74bFVpvuxQLsg==",
"success": true,
"projectFilePath": "C:\\Users\\2510m\\Desktop\\4 курс\\РВИП\\distributed-computing\\tasks\\lyamzina-ma\\lab_3\\worker-1\\worker-1.csproj",
"expectedPackageFiles": [
"C:\\Users\\2510m\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.0\\microsoft.aspnetcore.openapi.8.0.0.nupkg.sha512",
"C:\\Users\\2510m\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
"C:\\Users\\2510m\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512",
"C:\\Users\\2510m\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
"C:\\Users\\2510m\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
"C:\\Users\\2510m\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
"C:\\Users\\2510m\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
],
"logs": []
}

View File

@ -0,0 +1,81 @@
{
"format": 1,
"restore": {
"C:\\Users\\2510m\\Desktop\\4 курс\\РВИП\\distributed-computing\\tasks\\lyamzina-ma\\lab_3\\worker-1\\worker-1.csproj": {}
},
"projects": {
"C:\\Users\\2510m\\Desktop\\4 курс\\РВИП\\distributed-computing\\tasks\\lyamzina-ma\\lab_3\\worker-1\\worker-1.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\2510m\\Desktop\\4 курс\\РВИП\\distributed-computing\\tasks\\lyamzina-ma\\lab_3\\worker-1\\worker-1.csproj",
"projectName": "worker-1",
"projectPath": "C:\\Users\\2510m\\Desktop\\4 курс\\РВИП\\distributed-computing\\tasks\\lyamzina-ma\\lab_3\\worker-1\\worker-1.csproj",
"packagesPath": "C:\\Users\\2510m\\.nuget\\packages\\",
"outputPath": "C:\\Users\\2510m\\Desktop\\4 курс\\РВИП\\distributed-computing\\tasks\\lyamzina-ma\\lab_3\\worker-1\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\2510m\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.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"
}
}
}
}
}

View File

@ -0,0 +1,24 @@
<?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\2510m\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\2510m\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
</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\2510m\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5</PkgMicrosoft_Extensions_ApiDescription_Server>
</PropertyGroup>
</Project>

View File

@ -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>

View 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>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ActiveDebugProfile>http</ActiveDebugProfile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>

View 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

File diff suppressed because it is too large Load Diff

Binary file not shown.

View 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"]

View File

@ -0,0 +1,139 @@
List<Genres> genres = new()
{
new Genres() { Uuid= Guid.NewGuid(), Title = "фэнтези", IsSingleGenre = true, IdCategory = Guid.Parse("6a1b4a72-5669-41fe-8d5b-106dc86f58bd") },
new Genres() { Uuid= Guid.NewGuid(), Title = "драма", IsSingleGenre = false, IdCategory = Guid.Parse("f8692bea-b7e6-4164-b564-a921f16c35c9") },
new Genres() { Uuid= Guid.NewGuid(), Title = "комедия", IsSingleGenre = false, IdCategory = Guid.Parse("464bbdb8-39c0-4644-b9c0-3df1c484ea7e") },
new Genres() { Uuid= Guid.NewGuid(), Title = "боевик", IsSingleGenre = true, IdCategory = 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 genres.Select(r => new GenreEntityDto()
{
Uuid = r.Uuid,
Title = r.Title,
IsSingleGenre = r.IsSingleGenre,
IdCategory = r.IdCategory,
});
})
.WithName("GetGenres")
.WithOpenApi();
app.MapGet("/{uuid}", (Guid uuid) =>
{
var genre = genres.FirstOrDefault(r => r.Uuid == uuid);
if (genre == null)
return Results.NotFound();
return Results.Json(new GenreEntityDto()
{
Uuid = genre.Uuid,
Title = genre.Title,
IsSingleGenre = genre.IsSingleGenre,
IdCategory = genre.IdCategory,
});
})
.WithName("GetGenreByGUID")
.WithOpenApi();
app.MapPost("/{title}/{isSingleGenre}/{idCategory}", (string? Title, bool IsSingleGenre, Guid IdCategory) =>
{
Guid NewGuid = Guid.NewGuid();
genres.Add(new Genres() { Uuid = NewGuid, Title = (string)Title, IsSingleGenre = (bool)IsSingleGenre, IdCategory = (Guid)IdCategory });
var genre = genres.FirstOrDefault(r => r.Uuid == NewGuid);
if (genre == null)
return Results.NotFound();
return Results.Json(new GenreEntityDto()
{
Uuid = genre.Uuid,
Title = genre.Title,
IsSingleGenre = genre.IsSingleGenre,
IdCategory = genre.IdCategory,
});
})
.WithName("PostGenre")
.WithOpenApi();
app.MapPatch("/{uuid}/{title}/{isSingleGenre}/{idCategory}", (Guid uuid, string ?title, bool isSingleGenre, Guid idCategory) =>
{
var genre = genres.FirstOrDefault(r => r.Uuid == uuid);
if (genre == null)
return Results.NotFound();
if (title != ",") genre.Title = title;
if (isSingleGenre != genre.IsSingleGenre) genre.IsSingleGenre = isSingleGenre;
if (idCategory != genre.IdCategory) genre.IdCategory = idCategory;
return Results.Json(new GenreEntityDto()
{
Uuid = genre.Uuid,
Title = genre.Title,
IsSingleGenre = genre.IsSingleGenre,
IdCategory = genre.IdCategory,
});
})
.WithName("UpdateGenre")
.WithOpenApi();
app.MapDelete("/{uuid}", (Guid uuid) =>
{
var genre = genres.FirstOrDefault(r => r.Uuid == uuid);
if (genre == null)
return Results.NotFound();
genres.Remove(genre);
return Results.Json(new GenreEntityDto()
{
Uuid = genre.Uuid,
Title = genre.Title,
IsSingleGenre = genre.IsSingleGenre,
IdCategory = genre.IdCategory,
});
})
.WithName("DeleteGenre")
.WithOpenApi();
app.MapGet("/Genres/", async () =>
{
var httpClient = new HttpClient();
var secondWorkerResponse = await httpClient.GetStringAsync("http://worker-1:8080/");
return secondWorkerResponse.ToArray();
})
.WithName("GetCategories")
.WithOpenApi();
app.Run();
public class Genres
{
public Guid Uuid { get; set; }
public string Title { get; set; } = string.Empty;
public bool IsSingleGenre { get; set; }
public Guid IdCategory { get; set; }
}
public class GenreEntityDto : Genres { }
public class Categories
{
public Guid Uuid { get; set; }
public string Name { get; set; } = string.Empty;
public string Product { get; set; } = string.Empty;
}
public class CategoryEntityDto : Categories { }

View File

@ -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"
}
}
}
}

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View File

@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}

View File

@ -0,0 +1,9 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}

View File

@ -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"
}
}
}

Some files were not shown because too many files have changed in this diff Show More