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:
2026-02-17 22:02:12 -08:00
commit 0a327f3a8b
187 changed files with 9282 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,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.

View File

@@ -0,0 +1 @@
247d469fafbaff1ffc06a3764d1d3ae7ce60f660e19e338fc1ad2077094a38ba

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
d5ac7ab69059af111e9d7125adeb7b174ca570725d4b64a544cca7bd11ac7ca0

View File

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

View File

@@ -0,0 +1 @@
7b9c41d166a802deb354c91076c5ca8b7680e8ae9768f2e30afa73a3afc96193

View File

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

View File

@@ -0,0 +1 @@
7ae15a6e57cb2acf462dfa046a842738ecc3cc90feee85d0f2cc2f34287d6e19

Binary file not shown.

View File

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

View File

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

View File

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

View File

@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}

View File

@@ -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":[]}

View File

@@ -0,0 +1 @@
ZwqjLM14yH594rRb+4IeAbNI/VL03qjACPvlIk8NNxU=

View File

@@ -0,0 +1 @@
{"ContentRoots":["E:\\rr3\\RR3CommunityServer\\RR3CommunityServer\\wwwroot\\"],"Root":{"Children":null,"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}}