Initial commit: RR3 Community Server with web admin panel
- ASP.NET Core 8 REST API server - 12 API endpoints matching EA Synergy protocol - SQLite database with Entity Framework Core - Web admin panel with Bootstrap 5 - User, Catalog, Session, Purchase management - Comprehensive documentation Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
@@ -0,0 +1,22 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("RR3CommunityServer")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("RR3CommunityServer")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("RR3CommunityServer")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
247d469fafbaff1ffc06a3764d1d3ae7ce60f660e19e338fc1ad2077094a38ba
|
||||
@@ -0,0 +1,55 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v8.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 = RR3CommunityServer
|
||||
build_property.RootNamespace = RR3CommunityServer
|
||||
build_property.ProjectDir = E:\rr3\RR3CommunityServer\RR3CommunityServer\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 8.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = E:\rr3\RR3CommunityServer\RR3CommunityServer
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
||||
[E:/rr3/RR3CommunityServer/RR3CommunityServer/Pages/Admin.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRtaW4uY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[E:/rr3/RR3CommunityServer/RR3CommunityServer/Pages/Catalog.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQ2F0YWxvZy5jc2h0bWw=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[E:/rr3/RR3CommunityServer/RR3CommunityServer/Pages/Purchases.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcUHVyY2hhc2VzLmNzaHRtbA==
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[E:/rr3/RR3CommunityServer/RR3CommunityServer/Pages/Sessions.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2Vzc2lvbnMuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[E:/rr3/RR3CommunityServer/RR3CommunityServer/Pages/Settings.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2V0dGluZ3MuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[E:/rr3/RR3CommunityServer/RR3CommunityServer/Pages/Users.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcVXNlcnMuY3NodG1s
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[E:/rr3/RR3CommunityServer/RR3CommunityServer/Pages/_Layout.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
|
||||
[E:/rr3/RR3CommunityServer/RR3CommunityServer/Pages/_ViewStart.cshtml]
|
||||
build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX1ZpZXdTdGFydC5jc2h0bWw=
|
||||
build_metadata.AdditionalFiles.CssScope =
|
||||
@@ -0,0 +1,17 @@
|
||||
// <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;
|
||||
@@ -0,0 +1,17 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
|
||||
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0
|
||||
@@ -0,0 +1,17 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute(("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" +
|
||||
"ory, Microsoft.AspNetCore.Mvc.Razor"))]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
7b9c41d166a802deb354c91076c5ca8b7680e8ae9768f2e30afa73a3afc96193
|
||||
@@ -0,0 +1,140 @@
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\appsettings.Development.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\appsettings.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\RR3CommunityServer.staticwebassets.endpoints.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\RR3CommunityServer.exe
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\RR3CommunityServer.deps.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\RR3CommunityServer.runtimeconfig.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\RR3CommunityServer.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\RR3CommunityServer.pdb
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Humanizer.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Sqlite.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.Extensions.Options.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Microsoft.OpenApi.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Mono.TextTemplating.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\SQLitePCLRaw.core.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\System.CodeDom.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\System.Composition.AttributedModel.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\System.Composition.Convention.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\System.Composition.Hosting.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\System.Composition.Runtime.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\System.Composition.TypedParts.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.csproj.AssemblyReference.cache
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\rpswa.dswa.cache.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.GeneratedMSBuildEditorConfig.editorconfig
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.AssemblyInfoInputs.cache
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.AssemblyInfo.cs
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.csproj.CoreCompileInputs.cache
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.MvcApplicationPartsAssemblyInfo.cs
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.MvcApplicationPartsAssemblyInfo.cache
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\rjimswa.dswa.cache.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\rjsmrazor.dswa.cache.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\rjsmcshtml.dswa.cache.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\scopedcss\bundle\RR3CommunityServer.styles.css
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\staticwebassets.build.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\staticwebassets.build.json.cache
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\staticwebassets.development.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\staticwebassets.build.endpoints.json
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\swae.build.ex.cache
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3Commu.F00FCF04.Up2Date
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\refint\RR3CommunityServer.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.pdb
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.genruntimeconfig.cache
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\ref\RR3CommunityServer.dll
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.RazorAssemblyInfo.cache
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\obj\Debug\net8.0\RR3CommunityServer.RazorAssemblyInfo.cs
|
||||
E:\rr3\RR3CommunityServer\RR3CommunityServer\bin\Debug\net8.0\RR3CommunityServer.staticwebassets.runtime.json
|
||||
BIN
RR3CommunityServer/obj/Debug/net8.0/RR3CommunityServer.dll
Normal file
BIN
RR3CommunityServer/obj/Debug/net8.0/RR3CommunityServer.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
7ae15a6e57cb2acf462dfa046a842738ecc3cc90feee85d0f2cc2f34287d6e19
|
||||
BIN
RR3CommunityServer/obj/Debug/net8.0/RR3CommunityServer.pdb
Normal file
BIN
RR3CommunityServer/obj/Debug/net8.0/RR3CommunityServer.pdb
Normal file
Binary file not shown.
BIN
RR3CommunityServer/obj/Debug/net8.0/apphost.exe
Normal file
BIN
RR3CommunityServer/obj/Debug/net8.0/apphost.exe
Normal file
Binary file not shown.
BIN
RR3CommunityServer/obj/Debug/net8.0/ref/RR3CommunityServer.dll
Normal file
BIN
RR3CommunityServer/obj/Debug/net8.0/ref/RR3CommunityServer.dll
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"FVgSwAD+RSUSlX55EychRC3hFo+vn7vEvO4TyMJprcM=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["7Gcs8uTS1W2TjgmuuoBwaL/zy\u002B2wcKht3msEI7xtxEM=","XWz/ezyQ/zz6q7gqbUREA6BRKDpL7J8X2Ypj\u002B1WdnYY=","iUFHKbFkxn8iaI0bHeIV4nOGAutHm6k6dJU9\u002BSSYLIQ=","hnhSRoeFpk3C6XWICUlX/lNip6TfbZWFYZv4weSCyrw=","EoVh8vBcGohUnEMEoZuTXrpZ9uBDHT19VmDHc/D\u002Bm0I=","JVRe\u002Be2d47FunIfxVYRpqRFtljZ8gqrK3xMRy6TCd\u002BQ=","DQG0T8n9f5ohwv9akihU55D4/3WR7\u002BlDnvkdsAHHSgc=","VxDQNRQXYUU41o9SG4HrkKWR59FJIv8lmnwBolB/wE0=","a9FH5hytzDFEyjm0/3AEvB9CbH390Co3sJ98XgvtghY=","0Slg2/xnc5E9nXprYyph/57wQou\u002BhGSGgKchbo4aNOg=","\u002BlXcvLfSHF8FbrWk2UQSf\u002BodPwZSm4MA4RTIFOtI\u002BaY=","/s1pOdMacXOJO2AeBKr2KfMWu1ai23zb2OZjCcapnp8=","rCNj8v70TKdA3\u002BbzzsVp5kRTPAJJIlWMMUL8klqXfoo="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"77IoXRXzqsXjiL49gpciOThHZJG/7UPKC1BPuiFQdlk=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["7Gcs8uTS1W2TjgmuuoBwaL/zy\u002B2wcKht3msEI7xtxEM=","XWz/ezyQ/zz6q7gqbUREA6BRKDpL7J8X2Ypj\u002B1WdnYY=","iUFHKbFkxn8iaI0bHeIV4nOGAutHm6k6dJU9\u002BSSYLIQ=","hnhSRoeFpk3C6XWICUlX/lNip6TfbZWFYZv4weSCyrw=","EoVh8vBcGohUnEMEoZuTXrpZ9uBDHT19VmDHc/D\u002Bm0I=","JVRe\u002Be2d47FunIfxVYRpqRFtljZ8gqrK3xMRy6TCd\u002BQ=","DQG0T8n9f5ohwv9akihU55D4/3WR7\u002BlDnvkdsAHHSgc=","VxDQNRQXYUU41o9SG4HrkKWR59FJIv8lmnwBolB/wE0=","a9FH5hytzDFEyjm0/3AEvB9CbH390Co3sJ98XgvtghY=","0Slg2/xnc5E9nXprYyph/57wQou\u002BhGSGgKchbo4aNOg=","\u002BlXcvLfSHF8FbrWk2UQSf\u002BodPwZSm4MA4RTIFOtI\u002BaY=","/s1pOdMacXOJO2AeBKr2KfMWu1ai23zb2OZjCcapnp8=","rCNj8v70TKdA3\u002BbzzsVp5kRTPAJJIlWMMUL8klqXfoo="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
@@ -0,0 +1 @@
|
||||
{"GlobalPropertiesHash":"gdYA/PLOQysRMD9wt3+IrqBqQw0g/GZFOcojepf8P6w=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["7Gcs8uTS1W2TjgmuuoBwaL/zy\u002B2wcKht3msEI7xtxEM=","XWz/ezyQ/zz6q7gqbUREA6BRKDpL7J8X2Ypj\u002B1WdnYY=","iUFHKbFkxn8iaI0bHeIV4nOGAutHm6k6dJU9\u002BSSYLIQ=","hnhSRoeFpk3C6XWICUlX/lNip6TfbZWFYZv4weSCyrw=","EoVh8vBcGohUnEMEoZuTXrpZ9uBDHT19VmDHc/D\u002Bm0I=","JVRe\u002Be2d47FunIfxVYRpqRFtljZ8gqrK3xMRy6TCd\u002BQ=","DQG0T8n9f5ohwv9akihU55D4/3WR7\u002BlDnvkdsAHHSgc=","VxDQNRQXYUU41o9SG4HrkKWR59FJIv8lmnwBolB/wE0=","a9FH5hytzDFEyjm0/3AEvB9CbH390Co3sJ98XgvtghY=","0Slg2/xnc5E9nXprYyph/57wQou\u002BhGSGgKchbo4aNOg="],"CachedAssets":{},"CachedCopyCandidates":{}}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"ManifestType":"Build","Endpoints":[]}
|
||||
@@ -0,0 +1 @@
|
||||
{"Version":1,"Hash":"ZwqjLM14yH594rRb+4IeAbNI/VL03qjACPvlIk8NNxU=","Source":"RR3CommunityServer","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"RR3CommunityServer\\wwwroot","Source":"RR3CommunityServer","ContentRoot":"E:\\rr3\\RR3CommunityServer\\RR3CommunityServer\\wwwroot\\","BasePath":"/","Pattern":"**"}],"Assets":[],"Endpoints":[]}
|
||||
@@ -0,0 +1 @@
|
||||
ZwqjLM14yH594rRb+4IeAbNI/VL03qjACPvlIk8NNxU=
|
||||
@@ -0,0 +1 @@
|
||||
{"ContentRoots":["E:\\rr3\\RR3CommunityServer\\RR3CommunityServer\\wwwroot\\"],"Root":{"Children":null,"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}
|
||||
@@ -0,0 +1,101 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\rr3\\RR3CommunityServer\\RR3CommunityServer\\RR3CommunityServer.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\rr3\\RR3CommunityServer\\RR3CommunityServer\\RR3CommunityServer.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\rr3\\RR3CommunityServer\\RR3CommunityServer\\RR3CommunityServer.csproj",
|
||||
"projectName": "RR3CommunityServer",
|
||||
"projectPath": "E:\\rr3\\RR3CommunityServer\\RR3CommunityServer\\RR3CommunityServer.csproj",
|
||||
"packagesPath": "C:\\Users\\admin\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\rr3\\RR3CommunityServer\\RR3CommunityServer\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.200"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore.OpenApi": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.24, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.11, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Design": {
|
||||
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[8.0.11, )"
|
||||
},
|
||||
"Microsoft.EntityFrameworkCore.Sqlite": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.11, )"
|
||||
},
|
||||
"Swashbuckle.AspNetCore": {
|
||||
"target": "Package",
|
||||
"version": "[6.6.2, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.AspNetCore.App": {
|
||||
"privateAssets": "none"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.200-preview.0.26103.119/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\admin\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\admin\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\6.6.2\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\6.6.2\build\Swashbuckle.AspNetCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.11\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.11\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\8.0.11\build\net8.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\8.0.11\build\net8.0\Microsoft.EntityFrameworkCore.Design.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\admin\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5</PkgMicrosoft_Extensions_ApiDescription_Server>
|
||||
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\admin\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.6\buildTransitive\net8.0\SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3\2.1.6\buildTransitive\net8.0\SQLitePCLRaw.lib.e_sqlite3.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Options.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
2952
RR3CommunityServer/obj/project.assets.json
Normal file
2952
RR3CommunityServer/obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
60
RR3CommunityServer/obj/project.nuget.cache
Normal file
60
RR3CommunityServer/obj/project.nuget.cache
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "EgnTyLkcYZw=",
|
||||
"success": true,
|
||||
"projectFilePath": "E:\\rr3\\RR3CommunityServer\\RR3CommunityServer\\RR3CommunityServer.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\admin\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.24\\microsoft.aspnetcore.openapi.8.0.24.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.codeanalysis.common\\4.5.0\\microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.5.0\\microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.5.0\\microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.5.0\\microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.11\\microsoft.data.sqlite.core.8.0.11.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.11\\microsoft.entityframeworkcore.8.0.11.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.11\\microsoft.entityframeworkcore.abstractions.8.0.11.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.11\\microsoft.entityframeworkcore.analyzers.8.0.11.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.11\\microsoft.entityframeworkcore.design.8.0.11.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.11\\microsoft.entityframeworkcore.relational.8.0.11.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\8.0.11\\microsoft.entityframeworkcore.sqlite.8.0.11.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\8.0.11\\microsoft.entityframeworkcore.sqlite.core.8.0.11.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\microsoft.openapi\\1.6.14\\microsoft.openapi.1.6.14.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\swashbuckle.aspnetcore\\6.6.2\\swashbuckle.aspnetcore.6.6.2.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.6.2\\swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.6.2\\swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.6.2\\swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.reflection.metadata\\6.0.1\\system.reflection.metadata.6.0.1.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512",
|
||||
"C:\\Users\\admin\\.nuget\\packages\\system.threading.channels\\6.0.0\\system.threading.channels.6.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user