Install EF Manager & configure db connection
This commit is contained in:
parent
b7f76e4942
commit
7cdd2142da
29
.gitignore
vendored
Normal file
29
.gitignore
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
################################################################################
|
||||||
|
# Данный GITIGNORE-файл был автоматически создан Microsoft(R) Visual Studio.
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
/.vs/Cucumber/FileContentIndex/320559cb-39aa-4339-91e1-a384f7c7e9fa.vsidx
|
||||||
|
/.vs/Cucumber/FileContentIndex/6ad3ca05-85c3-4352-8790-90f1fdfa5371.vsidx
|
||||||
|
/.vs/Cucumber/v17/.wsuo
|
||||||
|
/.vs/Cucumber/v17/DocumentLayout.backup.json
|
||||||
|
/.vs/Cucumber/v17/DocumentLayout.json
|
||||||
|
/.vs/slnx.sqlite
|
||||||
|
/.vs/VSWorkspaceState.json
|
||||||
|
/CucumberCloud/.vs/CucumberCloud/FileContentIndex/32613fed-7655-4b39-a3c3-29e2e29e3742.vsidx
|
||||||
|
/CucumberCloud/.vs/CucumberCloud/FileContentIndex/6155f8be-7809-4e4a-a9a2-2eb713f21dab.vsidx
|
||||||
|
/CucumberCloud/.vs/CucumberCloud/FileContentIndex/read.lock
|
||||||
|
/CucumberCloud/.vs/CucumberCloud/v17/.suo
|
||||||
|
/CucumberCloud/obj/CucumberCloud.csproj.nuget.dgspec.json
|
||||||
|
/CucumberCloud/obj/CucumberCloud.csproj.nuget.g.props
|
||||||
|
/CucumberCloud/obj/Debug/net6.0/CucumberCloud.AssemblyInfo.cs
|
||||||
|
/CucumberCloud/obj/Debug/net6.0/CucumberCloud.AssemblyInfoInputs.cache
|
||||||
|
/CucumberCloud/obj/Debug/net6.0/CucumberCloud.assets.cache
|
||||||
|
/CucumberCloud/obj/Debug/net6.0/CucumberCloud.csproj.AssemblyReference.cache
|
||||||
|
/CucumberCloud/obj/Debug/net6.0/CucumberCloud.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
/CucumberCloud/obj/project.assets.json
|
||||||
|
/CucumberCloud/obj/project.nuget.cache
|
||||||
|
/CucumberCloud/obj/Release/net6.0/CucumberCloud.AssemblyInfo.cs
|
||||||
|
/CucumberCloud/obj/Release/net6.0/CucumberCloud.AssemblyInfoInputs.cache
|
||||||
|
/CucumberCloud/obj/Release/net6.0/CucumberCloud.assets.cache
|
||||||
|
/CucumberCloud/obj/Release/net6.0/CucumberCloud.csproj.AssemblyReference.cache
|
||||||
|
/CucumberCloud/obj/Release/net6.0/CucumberCloud.GeneratedMSBuildEditorConfig.editorconfig
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"ExpandedNodes": [
|
|
||||||
""
|
|
||||||
],
|
|
||||||
"SelectedNode": "\\C:\\Users\\User\\source\\repos\\CucumberApp",
|
|
||||||
"PreviewInSolutionExplorer": false
|
|
||||||
}
|
|
BIN
.vs/slnx.sqlite
BIN
.vs/slnx.sqlite
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -7,6 +7,11 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.18">
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
</PackageReference>
|
||||||
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.18" />
|
||||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
@ -11,58 +11,58 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- postgres_data:/var/lib/postgresql/data
|
- postgres_data:/var/lib/postgresql/data
|
||||||
|
|
||||||
redis:
|
# redis:
|
||||||
image: redis:7
|
# image: redis:7
|
||||||
container_name: my_redis
|
# container_name: my_redis
|
||||||
ports:
|
# ports:
|
||||||
- "6379:6379"
|
# - "6379:6379"
|
||||||
volumes:
|
# volumes:
|
||||||
- redis_data:/data
|
# - redis_data:/data
|
||||||
volumes:
|
volumes:
|
||||||
postgres_data:
|
postgres_data:
|
||||||
redis_data:
|
#redis_data:
|
||||||
|
|
||||||
zookeeper:
|
# zookeeper:
|
||||||
image: confluentinc/cp-zookeeper:7.4.0
|
# image: confluentinc/cp-zookeeper:7.4.0
|
||||||
environment:
|
# environment:
|
||||||
ZOOKEEPER_CLIENT_PORT: 2181
|
# ZOOKEEPER_CLIENT_PORT: 2181
|
||||||
ZOOKEEPER_TICK_TIME: 2000
|
# ZOOKEEPER_TICK_TIME: 2000
|
||||||
ports:
|
# ports:
|
||||||
- 2181:2181
|
# - 2181:2181
|
||||||
|
|
||||||
kafka:
|
# kafka:
|
||||||
image: confluentinc/cp-kafka:7.4.0
|
# image: confluentinc/cp-kafka:7.4.0
|
||||||
ports:
|
# ports:
|
||||||
- 9092:9092
|
# - 9092:9092
|
||||||
expose:
|
# expose:
|
||||||
- 29092:29092
|
# - 29092:29092
|
||||||
environment:
|
# environment:
|
||||||
KAFKA_BROKER_ID: 1
|
# KAFKA_BROKER_ID: 1
|
||||||
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
|
# KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
|
||||||
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
|
# KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
|
||||||
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092
|
# KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:29092,PLAINTEXT_HOST://localhost:9092
|
||||||
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
|
# KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
|
||||||
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
|
# KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
|
||||||
KAFKA_LOG_FLUSH_INTERVAL_MESSAGES: 10000
|
# KAFKA_LOG_FLUSH_INTERVAL_MESSAGES: 10000
|
||||||
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
|
# KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
|
||||||
depends_on:
|
# depends_on:
|
||||||
- zookeeper
|
# - zookeeper
|
||||||
|
|
||||||
init-kafka:
|
# init-kafka:
|
||||||
image: confluentinc/cp-kafka:7.4.0
|
# image: confluentinc/cp-kafka:7.4.0
|
||||||
depends_on:
|
# depends_on:
|
||||||
- kafka
|
# - kafka
|
||||||
entrypoint: [ '/bin/sh', '-c' ]
|
# entrypoint: [ '/bin/sh', '-c' ]
|
||||||
command: |
|
# command: |
|
||||||
"
|
# "
|
||||||
# blocks until kafka is reachable
|
# blocks until kafka is reachable
|
||||||
kafka-topics --bootstrap-server kafka:29092 --list
|
# kafka-topics --bootstrap-server kafka:29092 --list
|
||||||
|
|
||||||
echo -e 'Creating kafka topics'
|
# echo -e 'Creating kafka topics'
|
||||||
kafka-topics --bootstrap-server kafka:29092 --create --if-not-exists --topic commands --replication-factor 1 --partitions 1
|
# kafka-topics --bootstrap-server kafka:29092 --create --if-not-exists --topic commands --replication-factor 1 --partitions 1
|
||||||
kafka-topics --bootstrap-server kafka:29092 --create --if-not-exists --topic data --replication-factor 1 --partitions 1
|
# kafka-topics --bootstrap-server kafka:29092 --create --if-not-exists --topic data --replication-factor 1 --partitions 1
|
||||||
kafka-topics --bootstrap-server kafka:29092 --create --if-not-exists --topic response --replication-factor 1 --partitions 1
|
# kafka-topics --bootstrap-server kafka:29092 --create --if-not-exists --topic response --replication-factor 1 --partitions 1
|
||||||
|
|
||||||
echo -e 'Successfully created the following topics:'
|
# echo -e 'Successfully created the following topics:'
|
||||||
kafka-topics --bootstrap-server kafka:29092 --list
|
# kafka-topics --bootstrap-server kafka:29092 --list
|
||||||
"
|
# "
|
@ -1,74 +0,0 @@
|
|||||||
{
|
|
||||||
"format": 1,
|
|
||||||
"restore": {
|
|
||||||
"C:\\Users\\User\\source\\repos\\CucumberApp\\CucumberCloud\\CucumberCloud.csproj": {}
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"C:\\Users\\User\\source\\repos\\CucumberApp\\CucumberCloud\\CucumberCloud.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "C:\\Users\\User\\source\\repos\\CucumberApp\\CucumberCloud\\CucumberCloud.csproj",
|
|
||||||
"projectName": "CucumberCloud",
|
|
||||||
"projectPath": "C:\\Users\\User\\source\\repos\\CucumberApp\\CucumberCloud\\CucumberCloud.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
|
|
||||||
"outputPath": "C:\\Users\\User\\source\\repos\\CucumberApp\\CucumberCloud\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net6.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"C:\\Users\\User\\Desktop\\универ\\3курс\\КОП\\components": {},
|
|
||||||
"C:\\Users\\User\\Desktop\\универ\\3курс\\КОП\\cp2": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net6.0": {
|
|
||||||
"targetAlias": "net6.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net6.0": {
|
|
||||||
"targetAlias": "net6.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Swashbuckle.AspNetCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[6.2.3, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"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\\7.0.201\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
<?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\User\.nuget\packages\</NuGetPackageFolders>
|
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<SourceRoot Include="C:\Users\User\.nuget\packages\" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props')" />
|
|
||||||
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\6.2.3\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\6.2.3\build\Swashbuckle.AspNetCore.props')" />
|
|
||||||
</ImportGroup>
|
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\User\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
|
|
||||||
</PropertyGroup>
|
|
||||||
</Project>
|
|
@ -1,6 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)system.text.json\7.0.0\buildTransitive\net6.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\7.0.0\buildTransitive\net6.0\System.Text.Json.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
|
||||||
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\7.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\7.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
@ -1,23 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// Этот код создан программой.
|
|
||||||
// Исполняемая версия:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
|
||||||
// повторной генерации кода.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("CucumberCloud")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("CucumberCloud")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("CucumberCloud")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// Создано классом WriteCodeFragment MSBuild.
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
87ee1ebed43dd90dbbceb9a51a9dd6b4d21d9cc6
|
|
@ -1,17 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net6.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 = CucumberCloud
|
|
||||||
build_property.RootNamespace = CucumberCloud
|
|
||||||
build_property.ProjectDir = C:\Users\User\source\repos\CucumberApp\CucumberCloud\
|
|
||||||
build_property.RazorLangVersion = 6.0
|
|
||||||
build_property.SupportLocalizedComponentNames =
|
|
||||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
|
||||||
build_property.MSBuildProjectDirectory = C:\Users\User\source\repos\CucumberApp\CucumberCloud
|
|
||||||
build_property._RazorSourceGeneratorDebug =
|
|
Binary file not shown.
Binary file not shown.
@ -1,23 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// Этот код создан программой.
|
|
||||||
// Исполняемая версия:4.0.30319.42000
|
|
||||||
//
|
|
||||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
|
||||||
// повторной генерации кода.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("CucumberCloud")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("CucumberCloud")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("CucumberCloud")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// Создано классом WriteCodeFragment MSBuild.
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
a31e9696c324fed8a105e47283aee8dcf2a3a3df
|
|
@ -1,17 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net6.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 = CucumberCloud
|
|
||||||
build_property.RootNamespace = CucumberCloud
|
|
||||||
build_property.ProjectDir = C:\Users\User\source\repos\CucumberApp\CucumberCloud\
|
|
||||||
build_property.RazorLangVersion = 6.0
|
|
||||||
build_property.SupportLocalizedComponentNames =
|
|
||||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
|
||||||
build_property.MSBuildProjectDirectory = C:\Users\User\source\repos\CucumberApp\CucumberCloud
|
|
||||||
build_property._RazorSourceGeneratorDebug =
|
|
Binary file not shown.
Binary file not shown.
@ -1,295 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 3,
|
|
||||||
"targets": {
|
|
||||||
"net6.0": {
|
|
||||||
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
|
|
||||||
"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.2.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.2.3": {
|
|
||||||
"type": "package",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.Extensions.ApiDescription.Server": "3.0.0",
|
|
||||||
"Swashbuckle.AspNetCore.Swagger": "6.2.3",
|
|
||||||
"Swashbuckle.AspNetCore.SwaggerGen": "6.2.3",
|
|
||||||
"Swashbuckle.AspNetCore.SwaggerUI": "6.2.3"
|
|
||||||
},
|
|
||||||
"build": {
|
|
||||||
"build/Swashbuckle.AspNetCore.props": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Swashbuckle.AspNetCore.Swagger/6.2.3": {
|
|
||||||
"type": "package",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.OpenApi": "1.2.3"
|
|
||||||
},
|
|
||||||
"compile": {
|
|
||||||
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworkReferences": [
|
|
||||||
"Microsoft.AspNetCore.App"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"Swashbuckle.AspNetCore.SwaggerGen/6.2.3": {
|
|
||||||
"type": "package",
|
|
||||||
"dependencies": {
|
|
||||||
"Swashbuckle.AspNetCore.Swagger": "6.2.3"
|
|
||||||
},
|
|
||||||
"compile": {
|
|
||||||
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Swashbuckle.AspNetCore.SwaggerUI/6.2.3": {
|
|
||||||
"type": "package",
|
|
||||||
"compile": {
|
|
||||||
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworkReferences": [
|
|
||||||
"Microsoft.AspNetCore.App"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
|
|
||||||
"sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "microsoft.extensions.apidescription.server/3.0.0",
|
|
||||||
"hasTools": true,
|
|
||||||
"files": [
|
|
||||||
".nupkg.metadata",
|
|
||||||
".signature.p7s",
|
|
||||||
"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.3.0.0.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/GetDocument.Insider.exe",
|
|
||||||
"tools/net461/GetDocument.Insider.exe.config",
|
|
||||||
"tools/netcoreapp2.1/GetDocument.Insider.deps.json",
|
|
||||||
"tools/netcoreapp2.1/GetDocument.Insider.dll",
|
|
||||||
"tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"Microsoft.OpenApi/1.2.3": {
|
|
||||||
"sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "microsoft.openapi/1.2.3",
|
|
||||||
"files": [
|
|
||||||
".nupkg.metadata",
|
|
||||||
".signature.p7s",
|
|
||||||
"lib/net46/Microsoft.OpenApi.dll",
|
|
||||||
"lib/net46/Microsoft.OpenApi.pdb",
|
|
||||||
"lib/net46/Microsoft.OpenApi.xml",
|
|
||||||
"lib/netstandard2.0/Microsoft.OpenApi.dll",
|
|
||||||
"lib/netstandard2.0/Microsoft.OpenApi.pdb",
|
|
||||||
"lib/netstandard2.0/Microsoft.OpenApi.xml",
|
|
||||||
"microsoft.openapi.1.2.3.nupkg.sha512",
|
|
||||||
"microsoft.openapi.nuspec"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"Swashbuckle.AspNetCore/6.2.3": {
|
|
||||||
"sha512": "cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "swashbuckle.aspnetcore/6.2.3",
|
|
||||||
"files": [
|
|
||||||
".nupkg.metadata",
|
|
||||||
".signature.p7s",
|
|
||||||
"build/Swashbuckle.AspNetCore.props",
|
|
||||||
"swashbuckle.aspnetcore.6.2.3.nupkg.sha512",
|
|
||||||
"swashbuckle.aspnetcore.nuspec"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"Swashbuckle.AspNetCore.Swagger/6.2.3": {
|
|
||||||
"sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "swashbuckle.aspnetcore.swagger/6.2.3",
|
|
||||||
"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/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.2.3.nupkg.sha512",
|
|
||||||
"swashbuckle.aspnetcore.swagger.nuspec"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"Swashbuckle.AspNetCore.SwaggerGen/6.2.3": {
|
|
||||||
"sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "swashbuckle.aspnetcore.swaggergen/6.2.3",
|
|
||||||
"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/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.2.3.nupkg.sha512",
|
|
||||||
"swashbuckle.aspnetcore.swaggergen.nuspec"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"Swashbuckle.AspNetCore.SwaggerUI/6.2.3": {
|
|
||||||
"sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "swashbuckle.aspnetcore.swaggerui/6.2.3",
|
|
||||||
"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/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.2.3.nupkg.sha512",
|
|
||||||
"swashbuckle.aspnetcore.swaggerui.nuspec"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"projectFileDependencyGroups": {
|
|
||||||
"net6.0": [
|
|
||||||
"Swashbuckle.AspNetCore >= 6.2.3"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"packageFolders": {
|
|
||||||
"C:\\Users\\User\\.nuget\\packages\\": {}
|
|
||||||
},
|
|
||||||
"project": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "C:\\Users\\User\\source\\repos\\CucumberApp\\CucumberCloud\\CucumberCloud.csproj",
|
|
||||||
"projectName": "CucumberCloud",
|
|
||||||
"projectPath": "C:\\Users\\User\\source\\repos\\CucumberApp\\CucumberCloud\\CucumberCloud.csproj",
|
|
||||||
"packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
|
|
||||||
"outputPath": "C:\\Users\\User\\source\\repos\\CucumberApp\\CucumberCloud\\obj\\",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"configFilePaths": [
|
|
||||||
"C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net6.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
|
||||||
"C:\\Users\\User\\Desktop\\универ\\3курс\\КОП\\components": {},
|
|
||||||
"C:\\Users\\User\\Desktop\\универ\\3курс\\КОП\\cp2": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net6.0": {
|
|
||||||
"targetAlias": "net6.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net6.0": {
|
|
||||||
"targetAlias": "net6.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Swashbuckle.AspNetCore": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[6.2.3, )"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"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\\7.0.201\\RuntimeIdentifierGraph.json"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 2,
|
|
||||||
"dgSpecHash": "KZrIpU3i/EWnxzfNIT2bDFbYoPdJo7Grino8Qy6Dhfrm10QZp3TP0E7RdzSgIzWp+etxb5qxosKwVTlpIDj8FA==",
|
|
||||||
"success": true,
|
|
||||||
"projectFilePath": "C:\\Users\\User\\source\\repos\\CucumberApp\\CucumberCloud\\CucumberCloud.csproj",
|
|
||||||
"expectedPackageFiles": [
|
|
||||||
"C:\\Users\\User\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
|
|
||||||
"C:\\Users\\User\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
|
|
||||||
"C:\\Users\\User\\.nuget\\packages\\swashbuckle.aspnetcore\\6.2.3\\swashbuckle.aspnetcore.6.2.3.nupkg.sha512",
|
|
||||||
"C:\\Users\\User\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.2.3\\swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512",
|
|
||||||
"C:\\Users\\User\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.2.3\\swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512",
|
|
||||||
"C:\\Users\\User\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.2.3\\swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512"
|
|
||||||
],
|
|
||||||
"logs": []
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user