clean build files
This commit is contained in:
487
.gitignore
vendored
Normal file
487
.gitignore
vendored
Normal file
@@ -0,0 +1,487 @@
|
|||||||
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
|
## files generated by popular Visual Studio add-ons.
|
||||||
|
##
|
||||||
|
## Get latest from `dotnet new gitignore`
|
||||||
|
|
||||||
|
# dotenv files
|
||||||
|
.env
|
||||||
|
|
||||||
|
# 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
|
||||||
|
*.tlog
|
||||||
|
*.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
|
||||||
|
|
||||||
|
# TeamCity is a build add-in
|
||||||
|
_TeamCity*
|
||||||
|
|
||||||
|
# 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 6 auto-generated project file (contains which files were open etc.)
|
||||||
|
*.vbp
|
||||||
|
|
||||||
|
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
|
||||||
|
*.dsw
|
||||||
|
*.dsp
|
||||||
|
|
||||||
|
# Visual Studio 6 technical files
|
||||||
|
*.ncb
|
||||||
|
*.aps
|
||||||
|
|
||||||
|
# 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/
|
||||||
|
|
||||||
|
# Visual Studio History (VSHistory) files
|
||||||
|
.vshistory/
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|
||||||
|
# VS Code files for those working on multiple tools
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
*.code-workspace
|
||||||
|
|
||||||
|
# Local History for Visual Studio Code
|
||||||
|
.history/
|
||||||
|
|
||||||
|
# Windows Installer files from build outputs
|
||||||
|
*.cab
|
||||||
|
*.msi
|
||||||
|
*.msix
|
||||||
|
*.msm
|
||||||
|
*.msp
|
||||||
|
|
||||||
|
# JetBrains Rider
|
||||||
|
*.sln.iml
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
##
|
||||||
|
## 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/main/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/main/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
|
||||||
|
|
||||||
|
# Vim temporary swap files
|
||||||
|
*.swp
|
||||||
|
|
||||||
|
# other (opensource) repository
|
||||||
|
s8n_runtime
|
||||||
@@ -1,75 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v10.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v10.0": {
|
|
||||||
"s8n-ai/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"s8n-runtime": "1.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"s8n-ai.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.OpenApi/10.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.OpenApi": "2.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
|
|
||||||
"assemblyVersion": "10.0.0.0",
|
|
||||||
"fileVersion": "10.0.25.52411"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.OpenApi/2.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.dll": {
|
|
||||||
"assemblyVersion": "2.0.0.0",
|
|
||||||
"fileVersion": "2.0.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"s8n-runtime/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi": "10.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"s8n-runtime.dll": {
|
|
||||||
"assemblyVersion": "1.0.0.0",
|
|
||||||
"fileVersion": "1.0.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"s8n-ai/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.OpenApi/10.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0aqIF1t+sA2T62LIeMtXGSiaV7keGQaJnvwwmu+htQdjCaKYARfXAeqp4nHH9y2etpilyZ/tnQzZg4Ilmo/c4Q==",
|
|
||||||
"path": "microsoft.aspnetcore.openapi/10.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.OpenApi/2.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==",
|
|
||||||
"path": "microsoft.openapi/2.0.0",
|
|
||||||
"hashPath": "microsoft.openapi.2.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"s8n-runtime/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,22 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by a tool.
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("s8n-ai")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5a118e72db5c7337247cca724c6d585a56adca42")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("s8n-ai")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("s8n-ai")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// Generated by the MSBuild WriteCodeFragment class.
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
336eb0dd5cb298b90b1a5c3a92baec5169efbd9dddff3ae3921e234e69ce8fc1
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net10.0
|
|
||||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
|
||||||
build_property.TargetFrameworkVersion = v10.0
|
|
||||||
build_property.TargetPlatformMinVersion =
|
|
||||||
build_property.UsingMicrosoftNETSdkWeb =
|
|
||||||
build_property.ProjectTypeGuids =
|
|
||||||
build_property.InvariantGlobalization =
|
|
||||||
build_property.PlatformNeutralAssembly =
|
|
||||||
build_property.EnforceExtendedAnalyzerRules =
|
|
||||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
|
||||||
build_property.RootNamespace = s8n_ai
|
|
||||||
build_property.ProjectDir = /home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/
|
|
||||||
build_property.EnableComHosting =
|
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
|
||||||
build_property.EffectiveAnalysisLevelStyle = 10.0
|
|
||||||
build_property.EnableCodeStyleSeverity =
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
// <auto-generated/>
|
|
||||||
global using System;
|
|
||||||
global using System.Collections.Generic;
|
|
||||||
global using System.IO;
|
|
||||||
global using System.Linq;
|
|
||||||
global using System.Net.Http;
|
|
||||||
global using System.Threading;
|
|
||||||
global using System.Threading.Tasks;
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
3bfe635e64193c6edf671d2790ece80451b2431003bc1973ddb1ed4e7973240a
|
|
||||||
@@ -1,47 +0,0 @@
|
|||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.csproj.AssemblyReference.cache
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.AssemblyInfoInputs.cache
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.AssemblyInfo.cs
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.csproj.CoreCompileInputs.cache
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-ai.deps.json
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-ai.pdb
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-runtime.pdb
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.csproj.Up2Date
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/refint/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.pdb
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/ref/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-runtime.staticwebassets.endpoints.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-ai.deps.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-ai.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/bin/Debug/net10.0/s8n-runtime.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.csproj.AssemblyReference.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.AssemblyInfoInputs.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.AssemblyInfo.cs
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.csproj.CoreCompileInputs.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.csproj.Up2Date
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/refint/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/s8n-ai.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-ai/obj/Debug/net10.0/ref/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/bin/Debug/net10.0/s8n-runtime.staticwebassets.endpoints.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/bin/Debug/net10.0/s8n-ai.deps.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/bin/Debug/net10.0/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/bin/Debug/net10.0/s8n-ai.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/bin/Debug/net10.0/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/bin/Debug/net10.0/s8n-runtime.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/s8n-ai.csproj.AssemblyReference.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/s8n-ai.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/s8n-ai.AssemblyInfoInputs.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/s8n-ai.AssemblyInfo.cs
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/s8n-ai.csproj.CoreCompileInputs.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/s8n-ai.csproj.Up2Date
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/refint/s8n-ai.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/s8n-ai.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/Debug/net10.0/ref/s8n-ai.dll
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,446 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 3,
|
|
||||||
"targets": {
|
|
||||||
"net10.0": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi/10.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.OpenApi": "2.0.0"
|
|
||||||
},
|
|
||||||
"compile": {
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
|
|
||||||
"related": ".xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
|
|
||||||
"related": ".xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworkReferences": [
|
|
||||||
"Microsoft.AspNetCore.App"
|
|
||||||
],
|
|
||||||
"build": {
|
|
||||||
"build/_._": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.OpenApi/2.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"compile": {
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"s8n-runtime/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"framework": ".NETCoreApp,Version=v10.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi": "10.0.0"
|
|
||||||
},
|
|
||||||
"compile": {
|
|
||||||
"bin/placeholder/s8n-runtime.dll": {}
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"bin/placeholder/s8n-runtime.dll": {}
|
|
||||||
},
|
|
||||||
"frameworkReferences": [
|
|
||||||
"Microsoft.AspNetCore.App"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi/10.0.0": {
|
|
||||||
"sha512": "0aqIF1t+sA2T62LIeMtXGSiaV7keGQaJnvwwmu+htQdjCaKYARfXAeqp4nHH9y2etpilyZ/tnQzZg4Ilmo/c4Q==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "microsoft.aspnetcore.openapi/10.0.0",
|
|
||||||
"files": [
|
|
||||||
".nupkg.metadata",
|
|
||||||
".signature.p7s",
|
|
||||||
"Icon.png",
|
|
||||||
"PACKAGE.md",
|
|
||||||
"THIRD-PARTY-NOTICES.TXT",
|
|
||||||
"analyzers/dotnet/cs/Microsoft.AspNetCore.OpenApi.SourceGenerators.dll",
|
|
||||||
"build/Microsoft.AspNetCore.OpenApi.targets",
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.dll",
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.xml",
|
|
||||||
"microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512",
|
|
||||||
"microsoft.aspnetcore.openapi.nuspec"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"Microsoft.OpenApi/2.0.0": {
|
|
||||||
"sha512": "GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "microsoft.openapi/2.0.0",
|
|
||||||
"files": [
|
|
||||||
".nupkg.metadata",
|
|
||||||
".signature.p7s",
|
|
||||||
"README.md",
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.dll",
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.pdb",
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.xml",
|
|
||||||
"lib/netstandard2.0/Microsoft.OpenApi.dll",
|
|
||||||
"lib/netstandard2.0/Microsoft.OpenApi.pdb",
|
|
||||||
"lib/netstandard2.0/Microsoft.OpenApi.xml",
|
|
||||||
"microsoft.openapi.2.0.0.nupkg.sha512",
|
|
||||||
"microsoft.openapi.nuspec"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"s8n-runtime/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"path": "../s8n-runtime/s8n-runtime.csproj",
|
|
||||||
"msbuildProject": "../s8n-runtime/s8n-runtime.csproj"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"projectFileDependencyGroups": {
|
|
||||||
"net10.0": [
|
|
||||||
"s8n-runtime >= 1.0.0"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"packageFolders": {
|
|
||||||
"/home/vitali/.nuget/packages/": {}
|
|
||||||
},
|
|
||||||
"project": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/s8n-ai.csproj",
|
|
||||||
"projectName": "s8n-ai",
|
|
||||||
"projectPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/s8n-ai.csproj",
|
|
||||||
"packagesPath": "/home/vitali/.nuget/packages/",
|
|
||||||
"outputPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"configFilePaths": [
|
|
||||||
"/home/vitali/.nuget/NuGet/NuGet.Config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net10.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"projectReferences": {
|
|
||||||
"/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj": {
|
|
||||||
"projectPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"restoreAuditProperties": {
|
|
||||||
"enableAudit": "true",
|
|
||||||
"auditLevel": "low",
|
|
||||||
"auditMode": "all"
|
|
||||||
},
|
|
||||||
"SdkAnalysisLevel": "10.0.100"
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48",
|
|
||||||
"net481"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "/home/vitali/.dotnet/sdk/10.0.100/PortableRuntimeIdentifierGraph.json",
|
|
||||||
"packagesToPrune": {
|
|
||||||
"Microsoft.CSharp": "(,4.7.32767]",
|
|
||||||
"Microsoft.VisualBasic": "(,10.4.32767]",
|
|
||||||
"Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"Microsoft.Win32.Registry": "(,5.0.32767]",
|
|
||||||
"runtime.any.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.AppContext": "(,4.3.32767]",
|
|
||||||
"System.Buffers": "(,5.0.32767]",
|
|
||||||
"System.Collections": "(,4.3.32767]",
|
|
||||||
"System.Collections.Concurrent": "(,4.3.32767]",
|
|
||||||
"System.Collections.Immutable": "(,10.0.32767]",
|
|
||||||
"System.Collections.NonGeneric": "(,4.3.32767]",
|
|
||||||
"System.Collections.Specialized": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Annotations": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Primitives": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
|
|
||||||
"System.Console": "(,4.3.32767]",
|
|
||||||
"System.Data.Common": "(,4.3.32767]",
|
|
||||||
"System.Data.DataSetExtensions": "(,4.4.32767]",
|
|
||||||
"System.Diagnostics.Contracts": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
|
|
||||||
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Process": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.StackTrace": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TraceSource": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"System.Drawing.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Dynamic.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Formats.Asn1": "(,10.0.32767]",
|
|
||||||
"System.Formats.Tar": "(,10.0.32767]",
|
|
||||||
"System.Globalization": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Extensions": "(,4.3.32767]",
|
|
||||||
"System.IO": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression.ZipFile": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
|
|
||||||
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
|
|
||||||
"System.IO.IsolatedStorage": "(,4.3.32767]",
|
|
||||||
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipelines": "(,10.0.32767]",
|
|
||||||
"System.IO.Pipes": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
|
|
||||||
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
|
|
||||||
"System.Linq": "(,4.3.32767]",
|
|
||||||
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
|
|
||||||
"System.Linq.Expressions": "(,4.3.32767]",
|
|
||||||
"System.Linq.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Linq.Queryable": "(,4.3.32767]",
|
|
||||||
"System.Memory": "(,5.0.32767]",
|
|
||||||
"System.Net.Http": "(,4.3.32767]",
|
|
||||||
"System.Net.Http.Json": "(,10.0.32767]",
|
|
||||||
"System.Net.NameResolution": "(,4.3.32767]",
|
|
||||||
"System.Net.NetworkInformation": "(,4.3.32767]",
|
|
||||||
"System.Net.Ping": "(,4.3.32767]",
|
|
||||||
"System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Net.Requests": "(,4.3.32767]",
|
|
||||||
"System.Net.Security": "(,4.3.32767]",
|
|
||||||
"System.Net.ServerSentEvents": "(,10.0.32767]",
|
|
||||||
"System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebHeaderCollection": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets.Client": "(,4.3.32767]",
|
|
||||||
"System.Numerics.Vectors": "(,5.0.32767]",
|
|
||||||
"System.ObjectModel": "(,4.3.32767]",
|
|
||||||
"System.Private.DataContractSerialization": "(,4.3.32767]",
|
|
||||||
"System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"System.Reflection": "(,4.3.32767]",
|
|
||||||
"System.Reflection.DispatchProxy": "(,6.0.32767]",
|
|
||||||
"System.Reflection.Emit": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Reflection.Metadata": "(,10.0.32767]",
|
|
||||||
"System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Reflection.TypeExtensions": "(,4.3.32767]",
|
|
||||||
"System.Resources.Reader": "(,4.3.32767]",
|
|
||||||
"System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"System.Resources.Writer": "(,4.3.32767]",
|
|
||||||
"System.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
|
|
||||||
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Loader": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Numerics": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Json": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
|
|
||||||
"System.Security.AccessControl": "(,6.0.32767]",
|
|
||||||
"System.Security.Claims": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Cng": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Csp": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
|
|
||||||
"System.Security.Principal": "(,4.3.32767]",
|
|
||||||
"System.Security.Principal.Windows": "(,5.0.32767]",
|
|
||||||
"System.Security.SecureString": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding.CodePages": "(,10.0.32767]",
|
|
||||||
"System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Text.Encodings.Web": "(,10.0.32767]",
|
|
||||||
"System.Text.Json": "(,10.0.32767]",
|
|
||||||
"System.Text.RegularExpressions": "(,4.3.32767]",
|
|
||||||
"System.Threading": "(,4.3.32767]",
|
|
||||||
"System.Threading.AccessControl": "(,10.0.32767]",
|
|
||||||
"System.Threading.Channels": "(,10.0.32767]",
|
|
||||||
"System.Threading.Overlapped": "(,4.3.32767]",
|
|
||||||
"System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
|
|
||||||
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
|
|
||||||
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Threading.Thread": "(,4.3.32767]",
|
|
||||||
"System.Threading.ThreadPool": "(,4.3.32767]",
|
|
||||||
"System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"System.ValueTuple": "(,4.5.32767]",
|
|
||||||
"System.Xml.ReaderWriter": "(,4.3.32767]",
|
|
||||||
"System.Xml.XDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlSerializer": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath.XDocument": "(,5.0.32767]"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 2,
|
|
||||||
"dgSpecHash": "/FWr1Rm0MrQ=",
|
|
||||||
"success": true,
|
|
||||||
"projectFilePath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/s8n-ai.csproj",
|
|
||||||
"expectedPackageFiles": [
|
|
||||||
"/home/vitali/.nuget/packages/microsoft.aspnetcore.openapi/10.0.0/microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512",
|
|
||||||
"/home/vitali/.nuget/packages/microsoft.openapi/2.0.0/microsoft.openapi.2.0.0.nupkg.sha512"
|
|
||||||
],
|
|
||||||
"logs": []
|
|
||||||
}
|
|
||||||
@@ -1,827 +0,0 @@
|
|||||||
{
|
|
||||||
"format": 1,
|
|
||||||
"restore": {
|
|
||||||
"/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/s8n-ai.csproj": {}
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/s8n-ai.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/s8n-ai.csproj",
|
|
||||||
"projectName": "s8n-ai",
|
|
||||||
"projectPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/s8n-ai.csproj",
|
|
||||||
"packagesPath": "/home/vitali/.nuget/packages/",
|
|
||||||
"outputPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-ai/obj/",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"configFilePaths": [
|
|
||||||
"/home/vitali/.nuget/NuGet/NuGet.Config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net10.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"projectReferences": {
|
|
||||||
"/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj": {
|
|
||||||
"projectPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"restoreAuditProperties": {
|
|
||||||
"enableAudit": "true",
|
|
||||||
"auditLevel": "low",
|
|
||||||
"auditMode": "all"
|
|
||||||
},
|
|
||||||
"SdkAnalysisLevel": "10.0.100"
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"imports": [
|
|
||||||
"net461",
|
|
||||||
"net462",
|
|
||||||
"net47",
|
|
||||||
"net471",
|
|
||||||
"net472",
|
|
||||||
"net48",
|
|
||||||
"net481"
|
|
||||||
],
|
|
||||||
"assetTargetFallback": true,
|
|
||||||
"warn": true,
|
|
||||||
"frameworkReferences": {
|
|
||||||
"Microsoft.NETCore.App": {
|
|
||||||
"privateAssets": "all"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtimeIdentifierGraphPath": "/home/vitali/.dotnet/sdk/10.0.100/PortableRuntimeIdentifierGraph.json",
|
|
||||||
"packagesToPrune": {
|
|
||||||
"Microsoft.CSharp": "(,4.7.32767]",
|
|
||||||
"Microsoft.VisualBasic": "(,10.4.32767]",
|
|
||||||
"Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"Microsoft.Win32.Registry": "(,5.0.32767]",
|
|
||||||
"runtime.any.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.AppContext": "(,4.3.32767]",
|
|
||||||
"System.Buffers": "(,5.0.32767]",
|
|
||||||
"System.Collections": "(,4.3.32767]",
|
|
||||||
"System.Collections.Concurrent": "(,4.3.32767]",
|
|
||||||
"System.Collections.Immutable": "(,10.0.32767]",
|
|
||||||
"System.Collections.NonGeneric": "(,4.3.32767]",
|
|
||||||
"System.Collections.Specialized": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Annotations": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Primitives": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
|
|
||||||
"System.Console": "(,4.3.32767]",
|
|
||||||
"System.Data.Common": "(,4.3.32767]",
|
|
||||||
"System.Data.DataSetExtensions": "(,4.4.32767]",
|
|
||||||
"System.Diagnostics.Contracts": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
|
|
||||||
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Process": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.StackTrace": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TraceSource": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"System.Drawing.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Dynamic.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Formats.Asn1": "(,10.0.32767]",
|
|
||||||
"System.Formats.Tar": "(,10.0.32767]",
|
|
||||||
"System.Globalization": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Extensions": "(,4.3.32767]",
|
|
||||||
"System.IO": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression.ZipFile": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
|
|
||||||
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
|
|
||||||
"System.IO.IsolatedStorage": "(,4.3.32767]",
|
|
||||||
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipelines": "(,10.0.32767]",
|
|
||||||
"System.IO.Pipes": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
|
|
||||||
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
|
|
||||||
"System.Linq": "(,4.3.32767]",
|
|
||||||
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
|
|
||||||
"System.Linq.Expressions": "(,4.3.32767]",
|
|
||||||
"System.Linq.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Linq.Queryable": "(,4.3.32767]",
|
|
||||||
"System.Memory": "(,5.0.32767]",
|
|
||||||
"System.Net.Http": "(,4.3.32767]",
|
|
||||||
"System.Net.Http.Json": "(,10.0.32767]",
|
|
||||||
"System.Net.NameResolution": "(,4.3.32767]",
|
|
||||||
"System.Net.NetworkInformation": "(,4.3.32767]",
|
|
||||||
"System.Net.Ping": "(,4.3.32767]",
|
|
||||||
"System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Net.Requests": "(,4.3.32767]",
|
|
||||||
"System.Net.Security": "(,4.3.32767]",
|
|
||||||
"System.Net.ServerSentEvents": "(,10.0.32767]",
|
|
||||||
"System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebHeaderCollection": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets.Client": "(,4.3.32767]",
|
|
||||||
"System.Numerics.Vectors": "(,5.0.32767]",
|
|
||||||
"System.ObjectModel": "(,4.3.32767]",
|
|
||||||
"System.Private.DataContractSerialization": "(,4.3.32767]",
|
|
||||||
"System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"System.Reflection": "(,4.3.32767]",
|
|
||||||
"System.Reflection.DispatchProxy": "(,6.0.32767]",
|
|
||||||
"System.Reflection.Emit": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Reflection.Metadata": "(,10.0.32767]",
|
|
||||||
"System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Reflection.TypeExtensions": "(,4.3.32767]",
|
|
||||||
"System.Resources.Reader": "(,4.3.32767]",
|
|
||||||
"System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"System.Resources.Writer": "(,4.3.32767]",
|
|
||||||
"System.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
|
|
||||||
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Loader": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Numerics": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Json": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
|
|
||||||
"System.Security.AccessControl": "(,6.0.32767]",
|
|
||||||
"System.Security.Claims": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Cng": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Csp": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
|
|
||||||
"System.Security.Principal": "(,4.3.32767]",
|
|
||||||
"System.Security.Principal.Windows": "(,5.0.32767]",
|
|
||||||
"System.Security.SecureString": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding.CodePages": "(,10.0.32767]",
|
|
||||||
"System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Text.Encodings.Web": "(,10.0.32767]",
|
|
||||||
"System.Text.Json": "(,10.0.32767]",
|
|
||||||
"System.Text.RegularExpressions": "(,4.3.32767]",
|
|
||||||
"System.Threading": "(,4.3.32767]",
|
|
||||||
"System.Threading.AccessControl": "(,10.0.32767]",
|
|
||||||
"System.Threading.Channels": "(,10.0.32767]",
|
|
||||||
"System.Threading.Overlapped": "(,4.3.32767]",
|
|
||||||
"System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
|
|
||||||
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
|
|
||||||
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Threading.Thread": "(,4.3.32767]",
|
|
||||||
"System.Threading.ThreadPool": "(,4.3.32767]",
|
|
||||||
"System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"System.ValueTuple": "(,4.5.32767]",
|
|
||||||
"System.Xml.ReaderWriter": "(,4.3.32767]",
|
|
||||||
"System.Xml.XDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlSerializer": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath.XDocument": "(,5.0.32767]"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj",
|
|
||||||
"projectName": "s8n-runtime",
|
|
||||||
"projectPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj",
|
|
||||||
"packagesPath": "/home/vitali/.nuget/packages/",
|
|
||||||
"outputPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"configFilePaths": [
|
|
||||||
"/home/vitali/.nuget/NuGet/NuGet.Config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net10.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"restoreAuditProperties": {
|
|
||||||
"enableAudit": "true",
|
|
||||||
"auditLevel": "low",
|
|
||||||
"auditMode": "all"
|
|
||||||
},
|
|
||||||
"SdkAnalysisLevel": "10.0.100"
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[10.0.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": "/home/vitali/.dotnet/sdk/10.0.100/PortableRuntimeIdentifierGraph.json",
|
|
||||||
"packagesToPrune": {
|
|
||||||
"Microsoft.AspNetCore": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.App": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Cors": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Identity": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Localization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Razor": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Routing": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Session": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
|
|
||||||
"Microsoft.CSharp": "(,4.7.32767]",
|
|
||||||
"Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Features": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Hosting": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Http": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Localization": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Options": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Primitives": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Validation": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
|
|
||||||
"Microsoft.JSInterop": "(,10.0.32767]",
|
|
||||||
"Microsoft.Net.Http.Headers": "(,10.0.32767]",
|
|
||||||
"Microsoft.VisualBasic": "(,10.4.32767]",
|
|
||||||
"Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"Microsoft.Win32.Registry": "(,5.0.32767]",
|
|
||||||
"runtime.any.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.AppContext": "(,4.3.32767]",
|
|
||||||
"System.Buffers": "(,5.0.32767]",
|
|
||||||
"System.Collections": "(,4.3.32767]",
|
|
||||||
"System.Collections.Concurrent": "(,4.3.32767]",
|
|
||||||
"System.Collections.Immutable": "(,10.0.32767]",
|
|
||||||
"System.Collections.NonGeneric": "(,4.3.32767]",
|
|
||||||
"System.Collections.Specialized": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Annotations": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Primitives": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
|
|
||||||
"System.Console": "(,4.3.32767]",
|
|
||||||
"System.Data.Common": "(,4.3.32767]",
|
|
||||||
"System.Data.DataSetExtensions": "(,4.4.32767]",
|
|
||||||
"System.Diagnostics.Contracts": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
|
|
||||||
"System.Diagnostics.EventLog": "(,10.0.32767]",
|
|
||||||
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Process": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.StackTrace": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TraceSource": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"System.Drawing.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Dynamic.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Formats.Asn1": "(,10.0.32767]",
|
|
||||||
"System.Formats.Cbor": "(,10.0.32767]",
|
|
||||||
"System.Formats.Tar": "(,10.0.32767]",
|
|
||||||
"System.Globalization": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Extensions": "(,4.3.32767]",
|
|
||||||
"System.IO": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression.ZipFile": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
|
|
||||||
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
|
|
||||||
"System.IO.IsolatedStorage": "(,4.3.32767]",
|
|
||||||
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipelines": "(,10.0.32767]",
|
|
||||||
"System.IO.Pipes": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
|
|
||||||
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
|
|
||||||
"System.Linq": "(,4.3.32767]",
|
|
||||||
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
|
|
||||||
"System.Linq.Expressions": "(,4.3.32767]",
|
|
||||||
"System.Linq.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Linq.Queryable": "(,4.3.32767]",
|
|
||||||
"System.Memory": "(,5.0.32767]",
|
|
||||||
"System.Net.Http": "(,4.3.32767]",
|
|
||||||
"System.Net.Http.Json": "(,10.0.32767]",
|
|
||||||
"System.Net.NameResolution": "(,4.3.32767]",
|
|
||||||
"System.Net.NetworkInformation": "(,4.3.32767]",
|
|
||||||
"System.Net.Ping": "(,4.3.32767]",
|
|
||||||
"System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Net.Requests": "(,4.3.32767]",
|
|
||||||
"System.Net.Security": "(,4.3.32767]",
|
|
||||||
"System.Net.ServerSentEvents": "(,10.0.32767]",
|
|
||||||
"System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebHeaderCollection": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets.Client": "(,4.3.32767]",
|
|
||||||
"System.Numerics.Vectors": "(,5.0.32767]",
|
|
||||||
"System.ObjectModel": "(,4.3.32767]",
|
|
||||||
"System.Private.DataContractSerialization": "(,4.3.32767]",
|
|
||||||
"System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"System.Reflection": "(,4.3.32767]",
|
|
||||||
"System.Reflection.DispatchProxy": "(,6.0.32767]",
|
|
||||||
"System.Reflection.Emit": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Reflection.Metadata": "(,10.0.32767]",
|
|
||||||
"System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Reflection.TypeExtensions": "(,4.3.32767]",
|
|
||||||
"System.Resources.Reader": "(,4.3.32767]",
|
|
||||||
"System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"System.Resources.Writer": "(,4.3.32767]",
|
|
||||||
"System.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
|
|
||||||
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Loader": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Numerics": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Json": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
|
|
||||||
"System.Security.AccessControl": "(,6.0.32767]",
|
|
||||||
"System.Security.Claims": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Cng": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Csp": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Xml": "(,10.0.32767]",
|
|
||||||
"System.Security.Principal": "(,4.3.32767]",
|
|
||||||
"System.Security.Principal.Windows": "(,5.0.32767]",
|
|
||||||
"System.Security.SecureString": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding.CodePages": "(,10.0.32767]",
|
|
||||||
"System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Text.Encodings.Web": "(,10.0.32767]",
|
|
||||||
"System.Text.Json": "(,10.0.32767]",
|
|
||||||
"System.Text.RegularExpressions": "(,4.3.32767]",
|
|
||||||
"System.Threading": "(,4.3.32767]",
|
|
||||||
"System.Threading.AccessControl": "(,10.0.32767]",
|
|
||||||
"System.Threading.Channels": "(,10.0.32767]",
|
|
||||||
"System.Threading.Overlapped": "(,4.3.32767]",
|
|
||||||
"System.Threading.RateLimiting": "(,10.0.32767]",
|
|
||||||
"System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
|
|
||||||
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
|
|
||||||
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Threading.Thread": "(,4.3.32767]",
|
|
||||||
"System.Threading.ThreadPool": "(,4.3.32767]",
|
|
||||||
"System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"System.ValueTuple": "(,4.5.32767]",
|
|
||||||
"System.Xml.ReaderWriter": "(,4.3.32767]",
|
|
||||||
"System.Xml.XDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlSerializer": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath.XDocument": "(,5.0.32767]"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +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)' == '' ">/home/vitali/.nuget/packages/</NuGetPackageRoot>
|
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/vitali/.nuget/packages/</NuGetPackageFolders>
|
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<SourceRoot Include="/home/vitali/.nuget/packages/" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeTarget": {
|
|
||||||
"name": ".NETCoreApp,Version=v10.0",
|
|
||||||
"signature": ""
|
|
||||||
},
|
|
||||||
"compilationOptions": {},
|
|
||||||
"targets": {
|
|
||||||
".NETCoreApp,Version=v10.0": {
|
|
||||||
"s8n-runtime/1.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi": "10.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"s8n-runtime.dll": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.OpenApi/10.0.0": {
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.OpenApi": "2.0.0"
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
|
|
||||||
"assemblyVersion": "10.0.0.0",
|
|
||||||
"fileVersion": "10.0.25.52411"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.OpenApi/2.0.0": {
|
|
||||||
"runtime": {
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.dll": {
|
|
||||||
"assemblyVersion": "2.0.0.0",
|
|
||||||
"fileVersion": "2.0.0.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"s8n-runtime/1.0.0": {
|
|
||||||
"type": "project",
|
|
||||||
"serviceable": false,
|
|
||||||
"sha512": ""
|
|
||||||
},
|
|
||||||
"Microsoft.AspNetCore.OpenApi/10.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-0aqIF1t+sA2T62LIeMtXGSiaV7keGQaJnvwwmu+htQdjCaKYARfXAeqp4nHH9y2etpilyZ/tnQzZg4Ilmo/c4Q==",
|
|
||||||
"path": "microsoft.aspnetcore.openapi/10.0.0",
|
|
||||||
"hashPath": "microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Microsoft.OpenApi/2.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==",
|
|
||||||
"path": "microsoft.openapi/2.0.0",
|
|
||||||
"hashPath": "microsoft.openapi.2.0.0.nupkg.sha512"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,22 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by a tool.
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("s8n-runtime")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3e394f72270996177e4cbfccf1981b7bd51a0393")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("s8n-runtime")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("s8n-runtime")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// Создано классом WriteCodeFragment MSBuild.
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
607c4379d8291c90e4383e2f383814c72015c604e517d3c3e180cca73b023045
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.TargetFramework = net10.0
|
|
||||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
|
||||||
build_property.TargetFrameworkVersion = v10.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 = s8n_runtime
|
|
||||||
build_property.RootNamespace = s8n_runtime
|
|
||||||
build_property.ProjectDir = /home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/
|
|
||||||
build_property.EnableComHosting =
|
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
|
||||||
build_property.RazorLangVersion = 9.0
|
|
||||||
build_property.SupportLocalizedComponentNames =
|
|
||||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
|
||||||
build_property.MSBuildProjectDirectory = /home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime
|
|
||||||
build_property._RazorSourceGeneratorDebug =
|
|
||||||
build_property.EffectiveAnalysisLevelStyle = 10.0
|
|
||||||
build_property.EnableCodeStyleSeverity =
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
// <auto-generated/>
|
|
||||||
global using Microsoft.AspNetCore.Builder;
|
|
||||||
global using Microsoft.AspNetCore.Hosting;
|
|
||||||
global using Microsoft.AspNetCore.Http;
|
|
||||||
global using Microsoft.AspNetCore.Routing;
|
|
||||||
global using Microsoft.Extensions.Configuration;
|
|
||||||
global using Microsoft.Extensions.DependencyInjection;
|
|
||||||
global using Microsoft.Extensions.Hosting;
|
|
||||||
global using Microsoft.Extensions.Logging;
|
|
||||||
global using System;
|
|
||||||
global using System.Collections.Generic;
|
|
||||||
global using System.IO;
|
|
||||||
global using System.Linq;
|
|
||||||
global using System.Net.Http;
|
|
||||||
global using System.Net.Http.Json;
|
|
||||||
global using System.Threading;
|
|
||||||
global using System.Threading.Tasks;
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
78a84f246b2185220d767f21047560b5be96688b53bfe21620674d1d1291419e
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/bin/Debug/net10.0/s8n-runtime.deps.json
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/bin/Debug/net10.0/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/bin/Debug/net10.0/s8n-runtime.pdb
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.AssemblyInfoInputs.cache
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.AssemblyInfo.cs
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.csproj.CoreCompileInputs.cache
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/refint/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.pdb
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/ref/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_admin/backend/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.csproj.AssemblyReference.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.csproj.AssemblyReference.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/rpswa.dswa.cache.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.AssemblyInfoInputs.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.AssemblyInfo.cs
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.csproj.CoreCompileInputs.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/bin/Debug/net10.0/s8n-runtime.staticwebassets.endpoints.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/bin/Debug/net10.0/s8n-runtime.deps.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/bin/Debug/net10.0/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/bin/Debug/net10.0/s8n-runtime.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/rjimswa.dswa.cache.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/scopedcss/bundle/s8n-runtime.styles.css
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/staticwebassets.build.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/staticwebassets.build.json.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/staticwebassets.development.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/staticwebassets.build.endpoints.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/swae.build.ex.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/refint/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/s8n-runtime.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/net10.0/ref/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/bin/Debug/net10.0/s8n-runtime.staticwebassets.endpoints.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/bin/Debug/net10.0/s8n-runtime.deps.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/bin/Debug/net10.0/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/bin/Debug/net10.0/s8n-runtime.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/s8n-runtime.csproj.AssemblyReference.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/rpswa.dswa.cache.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/s8n-runtime.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/s8n-runtime.AssemblyInfoInputs.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/s8n-runtime.AssemblyInfo.cs
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/s8n-runtime.csproj.CoreCompileInputs.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/rjimswa.dswa.cache.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/rjsmrazor.dswa.cache.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/scopedcss/bundle/s8n-runtime.styles.css
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/staticwebassets.build.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/staticwebassets.build.json.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/staticwebassets.development.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/staticwebassets.build.endpoints.json
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/swae.build.ex.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/refint/s8n-runtime.dll
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/s8n-runtime.pdb
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/Debug/net10.0/ref/s8n-runtime.dll
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"Version":1,"Hash":"gaNI5yibnNHUIt7XY+NyiI2k8eV5OU0YK5DuDByqk70=","Source":"s8n-runtime","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
gaNI5yibnNHUIt7XY+NyiI2k8eV5OU0YK5DuDByqk70=
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
// <autogenerated />
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")]
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// This code was generated by a tool.
|
|
||||||
//
|
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
|
||||||
// the code is regenerated.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("s8n-runtime")]
|
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5a118e72db5c7337247cca724c6d585a56adca42")]
|
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("s8n-runtime")]
|
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("s8n-runtime")]
|
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
|
||||||
|
|
||||||
// Generated by the MSBuild WriteCodeFragment class.
|
|
||||||
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
61267121e2275d55cf445a4ca6d5a7078d4e24e9ee6aa8ab0ab441ddaf54f52f
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
is_global = true
|
|
||||||
build_property.RootNamespace = s8n_runtime
|
|
||||||
build_property.ProjectDir = /home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/
|
|
||||||
build_property.EnableComHosting =
|
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
|
||||||
build_property.CsWinRTUseWindowsUIXamlProjections = false
|
|
||||||
build_property.EffectiveAnalysisLevelStyle =
|
|
||||||
build_property.EnableCodeStyleSeverity =
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
// <auto-generated/>
|
|
||||||
global using Microsoft.AspNetCore.Builder;
|
|
||||||
global using Microsoft.AspNetCore.Hosting;
|
|
||||||
global using Microsoft.AspNetCore.Http;
|
|
||||||
global using Microsoft.AspNetCore.Routing;
|
|
||||||
global using Microsoft.Extensions.Configuration;
|
|
||||||
global using Microsoft.Extensions.DependencyInjection;
|
|
||||||
global using Microsoft.Extensions.Hosting;
|
|
||||||
global using Microsoft.Extensions.Logging;
|
|
||||||
global using System;
|
|
||||||
global using System.Collections.Generic;
|
|
||||||
global using System.IO;
|
|
||||||
global using System.Linq;
|
|
||||||
global using System.Net.Http;
|
|
||||||
global using System.Net.Http.Json;
|
|
||||||
global using System.Threading;
|
|
||||||
global using System.Threading.Tasks;
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
93826f4673ff1e09cea25d4c065e57884b3ce80fe99e61e640249fef585bfea6
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/netstandard2.0/s8n-runtime.csproj.AssemblyReference.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/netstandard2.0/s8n-runtime.GeneratedMSBuildEditorConfig.editorconfig
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/netstandard2.0/s8n-runtime.AssemblyInfoInputs.cache
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/netstandard2.0/s8n-runtime.AssemblyInfo.cs
|
|
||||||
/home/vitali/sources/s8n_sources/s8n_projects/libs/s8n-runtime/obj/Debug/netstandard2.0/s8n-runtime.csproj.CoreCompileInputs.cache
|
|
||||||
@@ -1,570 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 3,
|
|
||||||
"targets": {
|
|
||||||
"net10.0": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi/10.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.OpenApi": "2.0.0"
|
|
||||||
},
|
|
||||||
"compile": {
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
|
|
||||||
"related": ".xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {
|
|
||||||
"related": ".xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"frameworkReferences": [
|
|
||||||
"Microsoft.AspNetCore.App"
|
|
||||||
],
|
|
||||||
"build": {
|
|
||||||
"build/Microsoft.AspNetCore.OpenApi.targets": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Microsoft.OpenApi/2.0.0": {
|
|
||||||
"type": "package",
|
|
||||||
"compile": {
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"runtime": {
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.dll": {
|
|
||||||
"related": ".pdb;.xml"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"libraries": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi/10.0.0": {
|
|
||||||
"sha512": "0aqIF1t+sA2T62LIeMtXGSiaV7keGQaJnvwwmu+htQdjCaKYARfXAeqp4nHH9y2etpilyZ/tnQzZg4Ilmo/c4Q==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "microsoft.aspnetcore.openapi/10.0.0",
|
|
||||||
"files": [
|
|
||||||
".nupkg.metadata",
|
|
||||||
".signature.p7s",
|
|
||||||
"Icon.png",
|
|
||||||
"PACKAGE.md",
|
|
||||||
"THIRD-PARTY-NOTICES.TXT",
|
|
||||||
"analyzers/dotnet/cs/Microsoft.AspNetCore.OpenApi.SourceGenerators.dll",
|
|
||||||
"build/Microsoft.AspNetCore.OpenApi.targets",
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.dll",
|
|
||||||
"lib/net10.0/Microsoft.AspNetCore.OpenApi.xml",
|
|
||||||
"microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512",
|
|
||||||
"microsoft.aspnetcore.openapi.nuspec"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"Microsoft.OpenApi/2.0.0": {
|
|
||||||
"sha512": "GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==",
|
|
||||||
"type": "package",
|
|
||||||
"path": "microsoft.openapi/2.0.0",
|
|
||||||
"files": [
|
|
||||||
".nupkg.metadata",
|
|
||||||
".signature.p7s",
|
|
||||||
"README.md",
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.dll",
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.pdb",
|
|
||||||
"lib/net8.0/Microsoft.OpenApi.xml",
|
|
||||||
"lib/netstandard2.0/Microsoft.OpenApi.dll",
|
|
||||||
"lib/netstandard2.0/Microsoft.OpenApi.pdb",
|
|
||||||
"lib/netstandard2.0/Microsoft.OpenApi.xml",
|
|
||||||
"microsoft.openapi.2.0.0.nupkg.sha512",
|
|
||||||
"microsoft.openapi.nuspec"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"projectFileDependencyGroups": {
|
|
||||||
"net10.0": [
|
|
||||||
"Microsoft.AspNetCore.OpenApi >= 10.0.0"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"packageFolders": {
|
|
||||||
"/home/vitali/.nuget/packages/": {}
|
|
||||||
},
|
|
||||||
"project": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj",
|
|
||||||
"projectName": "s8n-runtime",
|
|
||||||
"projectPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj",
|
|
||||||
"packagesPath": "/home/vitali/.nuget/packages/",
|
|
||||||
"outputPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"configFilePaths": [
|
|
||||||
"/home/vitali/.nuget/NuGet/NuGet.Config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net10.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"restoreAuditProperties": {
|
|
||||||
"enableAudit": "true",
|
|
||||||
"auditLevel": "low",
|
|
||||||
"auditMode": "all"
|
|
||||||
},
|
|
||||||
"SdkAnalysisLevel": "10.0.100"
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[10.0.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": "/home/vitali/.dotnet/sdk/10.0.100/PortableRuntimeIdentifierGraph.json",
|
|
||||||
"packagesToPrune": {
|
|
||||||
"Microsoft.AspNetCore": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.App": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Cors": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Identity": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Localization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Razor": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Routing": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Session": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
|
|
||||||
"Microsoft.CSharp": "(,4.7.32767]",
|
|
||||||
"Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Features": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Hosting": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Http": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Localization": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Options": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Primitives": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Validation": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
|
|
||||||
"Microsoft.JSInterop": "(,10.0.32767]",
|
|
||||||
"Microsoft.Net.Http.Headers": "(,10.0.32767]",
|
|
||||||
"Microsoft.VisualBasic": "(,10.4.32767]",
|
|
||||||
"Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"Microsoft.Win32.Registry": "(,5.0.32767]",
|
|
||||||
"runtime.any.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.AppContext": "(,4.3.32767]",
|
|
||||||
"System.Buffers": "(,5.0.32767]",
|
|
||||||
"System.Collections": "(,4.3.32767]",
|
|
||||||
"System.Collections.Concurrent": "(,4.3.32767]",
|
|
||||||
"System.Collections.Immutable": "(,10.0.32767]",
|
|
||||||
"System.Collections.NonGeneric": "(,4.3.32767]",
|
|
||||||
"System.Collections.Specialized": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Annotations": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Primitives": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
|
|
||||||
"System.Console": "(,4.3.32767]",
|
|
||||||
"System.Data.Common": "(,4.3.32767]",
|
|
||||||
"System.Data.DataSetExtensions": "(,4.4.32767]",
|
|
||||||
"System.Diagnostics.Contracts": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
|
|
||||||
"System.Diagnostics.EventLog": "(,10.0.32767]",
|
|
||||||
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Process": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.StackTrace": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TraceSource": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"System.Drawing.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Dynamic.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Formats.Asn1": "(,10.0.32767]",
|
|
||||||
"System.Formats.Cbor": "(,10.0.32767]",
|
|
||||||
"System.Formats.Tar": "(,10.0.32767]",
|
|
||||||
"System.Globalization": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Extensions": "(,4.3.32767]",
|
|
||||||
"System.IO": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression.ZipFile": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
|
|
||||||
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
|
|
||||||
"System.IO.IsolatedStorage": "(,4.3.32767]",
|
|
||||||
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipelines": "(,10.0.32767]",
|
|
||||||
"System.IO.Pipes": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
|
|
||||||
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
|
|
||||||
"System.Linq": "(,4.3.32767]",
|
|
||||||
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
|
|
||||||
"System.Linq.Expressions": "(,4.3.32767]",
|
|
||||||
"System.Linq.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Linq.Queryable": "(,4.3.32767]",
|
|
||||||
"System.Memory": "(,5.0.32767]",
|
|
||||||
"System.Net.Http": "(,4.3.32767]",
|
|
||||||
"System.Net.Http.Json": "(,10.0.32767]",
|
|
||||||
"System.Net.NameResolution": "(,4.3.32767]",
|
|
||||||
"System.Net.NetworkInformation": "(,4.3.32767]",
|
|
||||||
"System.Net.Ping": "(,4.3.32767]",
|
|
||||||
"System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Net.Requests": "(,4.3.32767]",
|
|
||||||
"System.Net.Security": "(,4.3.32767]",
|
|
||||||
"System.Net.ServerSentEvents": "(,10.0.32767]",
|
|
||||||
"System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebHeaderCollection": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets.Client": "(,4.3.32767]",
|
|
||||||
"System.Numerics.Vectors": "(,5.0.32767]",
|
|
||||||
"System.ObjectModel": "(,4.3.32767]",
|
|
||||||
"System.Private.DataContractSerialization": "(,4.3.32767]",
|
|
||||||
"System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"System.Reflection": "(,4.3.32767]",
|
|
||||||
"System.Reflection.DispatchProxy": "(,6.0.32767]",
|
|
||||||
"System.Reflection.Emit": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Reflection.Metadata": "(,10.0.32767]",
|
|
||||||
"System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Reflection.TypeExtensions": "(,4.3.32767]",
|
|
||||||
"System.Resources.Reader": "(,4.3.32767]",
|
|
||||||
"System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"System.Resources.Writer": "(,4.3.32767]",
|
|
||||||
"System.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
|
|
||||||
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Loader": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Numerics": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Json": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
|
|
||||||
"System.Security.AccessControl": "(,6.0.32767]",
|
|
||||||
"System.Security.Claims": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Cng": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Csp": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Xml": "(,10.0.32767]",
|
|
||||||
"System.Security.Principal": "(,4.3.32767]",
|
|
||||||
"System.Security.Principal.Windows": "(,5.0.32767]",
|
|
||||||
"System.Security.SecureString": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding.CodePages": "(,10.0.32767]",
|
|
||||||
"System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Text.Encodings.Web": "(,10.0.32767]",
|
|
||||||
"System.Text.Json": "(,10.0.32767]",
|
|
||||||
"System.Text.RegularExpressions": "(,4.3.32767]",
|
|
||||||
"System.Threading": "(,4.3.32767]",
|
|
||||||
"System.Threading.AccessControl": "(,10.0.32767]",
|
|
||||||
"System.Threading.Channels": "(,10.0.32767]",
|
|
||||||
"System.Threading.Overlapped": "(,4.3.32767]",
|
|
||||||
"System.Threading.RateLimiting": "(,10.0.32767]",
|
|
||||||
"System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
|
|
||||||
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
|
|
||||||
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Threading.Thread": "(,4.3.32767]",
|
|
||||||
"System.Threading.ThreadPool": "(,4.3.32767]",
|
|
||||||
"System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"System.ValueTuple": "(,4.5.32767]",
|
|
||||||
"System.Xml.ReaderWriter": "(,4.3.32767]",
|
|
||||||
"System.Xml.XDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlSerializer": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath.XDocument": "(,5.0.32767]"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 2,
|
|
||||||
"dgSpecHash": "l00AyrKPDW8=",
|
|
||||||
"success": true,
|
|
||||||
"projectFilePath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj",
|
|
||||||
"expectedPackageFiles": [
|
|
||||||
"/home/vitali/.nuget/packages/microsoft.aspnetcore.openapi/10.0.0/microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512",
|
|
||||||
"/home/vitali/.nuget/packages/microsoft.openapi/2.0.0/microsoft.openapi.2.0.0.nupkg.sha512"
|
|
||||||
],
|
|
||||||
"logs": []
|
|
||||||
}
|
|
||||||
@@ -1,490 +0,0 @@
|
|||||||
{
|
|
||||||
"format": 1,
|
|
||||||
"restore": {
|
|
||||||
"/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj": {}
|
|
||||||
},
|
|
||||||
"projects": {
|
|
||||||
"/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj": {
|
|
||||||
"version": "1.0.0",
|
|
||||||
"restore": {
|
|
||||||
"projectUniqueName": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj",
|
|
||||||
"projectName": "s8n-runtime",
|
|
||||||
"projectPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/s8n-runtime.csproj",
|
|
||||||
"packagesPath": "/home/vitali/.nuget/packages/",
|
|
||||||
"outputPath": "/home/vitali/sources/s8n_sources/s8n_runtime/s8n-runtime/obj/",
|
|
||||||
"projectStyle": "PackageReference",
|
|
||||||
"configFilePaths": [
|
|
||||||
"/home/vitali/.nuget/NuGet/NuGet.Config"
|
|
||||||
],
|
|
||||||
"originalTargetFrameworks": [
|
|
||||||
"net10.0"
|
|
||||||
],
|
|
||||||
"sources": {
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"projectReferences": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"warningProperties": {
|
|
||||||
"warnAsError": [
|
|
||||||
"NU1605"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"restoreAuditProperties": {
|
|
||||||
"enableAudit": "true",
|
|
||||||
"auditLevel": "low",
|
|
||||||
"auditMode": "all"
|
|
||||||
},
|
|
||||||
"SdkAnalysisLevel": "10.0.100"
|
|
||||||
},
|
|
||||||
"frameworks": {
|
|
||||||
"net10.0": {
|
|
||||||
"targetAlias": "net10.0",
|
|
||||||
"dependencies": {
|
|
||||||
"Microsoft.AspNetCore.OpenApi": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[10.0.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": "/home/vitali/.dotnet/sdk/10.0.100/PortableRuntimeIdentifierGraph.json",
|
|
||||||
"packagesToPrune": {
|
|
||||||
"Microsoft.AspNetCore": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.App": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Cors": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Identity": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Localization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Razor": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Routing": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.Session": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
|
|
||||||
"Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
|
|
||||||
"Microsoft.CSharp": "(,4.7.32767]",
|
|
||||||
"Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Features": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Hosting": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Http": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Localization": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Options": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Primitives": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.Validation": "(,10.0.32767]",
|
|
||||||
"Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
|
|
||||||
"Microsoft.JSInterop": "(,10.0.32767]",
|
|
||||||
"Microsoft.Net.Http.Headers": "(,10.0.32767]",
|
|
||||||
"Microsoft.VisualBasic": "(,10.4.32767]",
|
|
||||||
"Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"Microsoft.Win32.Registry": "(,5.0.32767]",
|
|
||||||
"runtime.any.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Collections": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.IO": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
|
|
||||||
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
||||||
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
||||||
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Console": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
||||||
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.AppContext": "(,4.3.32767]",
|
|
||||||
"System.Buffers": "(,5.0.32767]",
|
|
||||||
"System.Collections": "(,4.3.32767]",
|
|
||||||
"System.Collections.Concurrent": "(,4.3.32767]",
|
|
||||||
"System.Collections.Immutable": "(,10.0.32767]",
|
|
||||||
"System.Collections.NonGeneric": "(,4.3.32767]",
|
|
||||||
"System.Collections.Specialized": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Annotations": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.Primitives": "(,4.3.32767]",
|
|
||||||
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
|
|
||||||
"System.Console": "(,4.3.32767]",
|
|
||||||
"System.Data.Common": "(,4.3.32767]",
|
|
||||||
"System.Data.DataSetExtensions": "(,4.4.32767]",
|
|
||||||
"System.Diagnostics.Contracts": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Debug": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
|
|
||||||
"System.Diagnostics.EventLog": "(,10.0.32767]",
|
|
||||||
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Process": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.StackTrace": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tools": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.TraceSource": "(,4.3.32767]",
|
|
||||||
"System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
||||||
"System.Drawing.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Dynamic.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Formats.Asn1": "(,10.0.32767]",
|
|
||||||
"System.Formats.Cbor": "(,10.0.32767]",
|
|
||||||
"System.Formats.Tar": "(,10.0.32767]",
|
|
||||||
"System.Globalization": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Calendars": "(,4.3.32767]",
|
|
||||||
"System.Globalization.Extensions": "(,4.3.32767]",
|
|
||||||
"System.IO": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression": "(,4.3.32767]",
|
|
||||||
"System.IO.Compression.ZipFile": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
|
|
||||||
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
|
|
||||||
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
|
|
||||||
"System.IO.IsolatedStorage": "(,4.3.32767]",
|
|
||||||
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipelines": "(,10.0.32767]",
|
|
||||||
"System.IO.Pipes": "(,4.3.32767]",
|
|
||||||
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
|
|
||||||
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
|
|
||||||
"System.Linq": "(,4.3.32767]",
|
|
||||||
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
|
|
||||||
"System.Linq.Expressions": "(,4.3.32767]",
|
|
||||||
"System.Linq.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Linq.Queryable": "(,4.3.32767]",
|
|
||||||
"System.Memory": "(,5.0.32767]",
|
|
||||||
"System.Net.Http": "(,4.3.32767]",
|
|
||||||
"System.Net.Http.Json": "(,10.0.32767]",
|
|
||||||
"System.Net.NameResolution": "(,4.3.32767]",
|
|
||||||
"System.Net.NetworkInformation": "(,4.3.32767]",
|
|
||||||
"System.Net.Ping": "(,4.3.32767]",
|
|
||||||
"System.Net.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Net.Requests": "(,4.3.32767]",
|
|
||||||
"System.Net.Security": "(,4.3.32767]",
|
|
||||||
"System.Net.ServerSentEvents": "(,10.0.32767]",
|
|
||||||
"System.Net.Sockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebHeaderCollection": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets": "(,4.3.32767]",
|
|
||||||
"System.Net.WebSockets.Client": "(,4.3.32767]",
|
|
||||||
"System.Numerics.Vectors": "(,5.0.32767]",
|
|
||||||
"System.ObjectModel": "(,4.3.32767]",
|
|
||||||
"System.Private.DataContractSerialization": "(,4.3.32767]",
|
|
||||||
"System.Private.Uri": "(,4.3.32767]",
|
|
||||||
"System.Reflection": "(,4.3.32767]",
|
|
||||||
"System.Reflection.DispatchProxy": "(,6.0.32767]",
|
|
||||||
"System.Reflection.Emit": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
|
|
||||||
"System.Reflection.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Reflection.Metadata": "(,10.0.32767]",
|
|
||||||
"System.Reflection.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Reflection.TypeExtensions": "(,4.3.32767]",
|
|
||||||
"System.Resources.Reader": "(,4.3.32767]",
|
|
||||||
"System.Resources.ResourceManager": "(,4.3.32767]",
|
|
||||||
"System.Resources.Writer": "(,4.3.32767]",
|
|
||||||
"System.Runtime": "(,4.3.32767]",
|
|
||||||
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
|
|
||||||
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Handles": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices": "(,4.3.32767]",
|
|
||||||
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Loader": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Numerics": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Json": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
|
|
||||||
"System.Security.AccessControl": "(,6.0.32767]",
|
|
||||||
"System.Security.Claims": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Cng": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Csp": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
|
|
||||||
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
|
|
||||||
"System.Security.Cryptography.Xml": "(,10.0.32767]",
|
|
||||||
"System.Security.Principal": "(,4.3.32767]",
|
|
||||||
"System.Security.Principal.Windows": "(,5.0.32767]",
|
|
||||||
"System.Security.SecureString": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding": "(,4.3.32767]",
|
|
||||||
"System.Text.Encoding.CodePages": "(,10.0.32767]",
|
|
||||||
"System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
||||||
"System.Text.Encodings.Web": "(,10.0.32767]",
|
|
||||||
"System.Text.Json": "(,10.0.32767]",
|
|
||||||
"System.Text.RegularExpressions": "(,4.3.32767]",
|
|
||||||
"System.Threading": "(,4.3.32767]",
|
|
||||||
"System.Threading.AccessControl": "(,10.0.32767]",
|
|
||||||
"System.Threading.Channels": "(,10.0.32767]",
|
|
||||||
"System.Threading.Overlapped": "(,4.3.32767]",
|
|
||||||
"System.Threading.RateLimiting": "(,10.0.32767]",
|
|
||||||
"System.Threading.Tasks": "(,4.3.32767]",
|
|
||||||
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
|
|
||||||
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
|
|
||||||
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
|
|
||||||
"System.Threading.Thread": "(,4.3.32767]",
|
|
||||||
"System.Threading.ThreadPool": "(,4.3.32767]",
|
|
||||||
"System.Threading.Timer": "(,4.3.32767]",
|
|
||||||
"System.ValueTuple": "(,4.5.32767]",
|
|
||||||
"System.Xml.ReaderWriter": "(,4.3.32767]",
|
|
||||||
"System.Xml.XDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlDocument": "(,4.3.32767]",
|
|
||||||
"System.Xml.XmlSerializer": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath": "(,4.3.32767]",
|
|
||||||
"System.Xml.XPath.XDocument": "(,5.0.32767]"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,15 +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)' == '' ">/home/vitali/.nuget/packages/</NuGetPackageRoot>
|
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/vitali/.nuget/packages/</NuGetPackageFolders>
|
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
||||||
<SourceRoot Include="/home/vitali/.nuget/packages/" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
<?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.aspnetcore.openapi/10.0.0/build/Microsoft.AspNetCore.OpenApi.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.openapi/10.0.0/build/Microsoft.AspNetCore.OpenApi.targets')" />
|
|
||||||
</ImportGroup>
|
|
||||||
</Project>
|
|
||||||
Reference in New Issue
Block a user