Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
a6228f3704 | |||
572f2f6be1 | |||
db63447052 | |||
37c418a869 | |||
b3b39f583a | |||
92c554e854 | |||
29fe3dfd0b | |||
985e50d415 | |||
11150b6a10 | |||
391827222e | |||
c1721bd1a1 | |||
f6630ae241 | |||
424cab64a8 |
25
.gitea/workflows/build-container.yml
Normal file
25
.gitea/workflows/build-container.yml
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
name: build-docker-imge
|
||||||
|
on:
|
||||||
|
- push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: Build the docker container
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: "Git clone"
|
||||||
|
run: git clone ${{ gitea.server_url }}/${{ gitea.repository }}.git .
|
||||||
|
- name: "Git checkout"
|
||||||
|
run: git checkout "${{ gitea.sha }}"
|
||||||
|
- uses: aevea/action-kaniko@master
|
||||||
|
name: Run Kaniko to build our api docker container.
|
||||||
|
with:
|
||||||
|
image: kocoded/oqtane.framework
|
||||||
|
tag: ${{ git.workflow_sha }}
|
||||||
|
tag_with_latest: github.ref == 'refs/heads/master'
|
||||||
|
registry: git.kocoder.xyz
|
||||||
|
username: ${{ secrets.CI_RUNNER_USER }}
|
||||||
|
password: ${{ secrets.CI_RUNNER_TOKEN }}
|
||||||
|
build_file: Dockerfile
|
||||||
|
target: deploy
|
||||||
|
|
24
Dockerfile
Normal file
24
Dockerfile
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Build
|
||||||
|
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
|
||||||
|
|
||||||
|
WORKDIR /source
|
||||||
|
|
||||||
|
COPY --link . .
|
||||||
|
|
||||||
|
RUN dotnet restore /source/Oqtane.sln
|
||||||
|
|
||||||
|
RUN dotnet build "/source/Oqtane.sln" -c Release -o /source/build/
|
||||||
|
|
||||||
|
# Publish
|
||||||
|
FROM build AS publish
|
||||||
|
|
||||||
|
RUN dotnet publish "Oqtane.Server/Oqtane.Server.csproj" -c Release -o /source/publish/
|
||||||
|
|
||||||
|
# Deploy
|
||||||
|
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS deploy
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
||||||
|
COPY --from=publish /source/publish/ /app/
|
||||||
|
ENTRYPOINT ["dotnet", "Oqtane.Server.dll"]
|
44
Oqtane.Client/Themes/Controls/Theme/Register.razor
Normal file
44
Oqtane.Client/Themes/Controls/Theme/Register.razor
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
@namespace Oqtane.Themes.Controls
|
||||||
|
@using System.Net
|
||||||
|
@inherits ThemeControlBase
|
||||||
|
@inject IStringLocalizer<Login> Localizer
|
||||||
|
@inject ISettingService SettingService
|
||||||
|
@inject IStringLocalizer<SharedResources> SharedLocalizer
|
||||||
|
|
||||||
|
<a href="@_registerurl" class="@CssClass">@SharedLocalizer["Register"]</a>
|
||||||
|
|
||||||
|
@code
|
||||||
|
{
|
||||||
|
private string _returnurl;
|
||||||
|
private string _registerurl;
|
||||||
|
|
||||||
|
[Parameter]
|
||||||
|
public string CssClass { get; set; } = "btn btn-secondary";
|
||||||
|
|
||||||
|
|
||||||
|
protected override void OnParametersSet()
|
||||||
|
{
|
||||||
|
if (!PageState.QueryString.ContainsKey("returnurl"))
|
||||||
|
{
|
||||||
|
// remember current url
|
||||||
|
_returnurl = WebUtility.UrlEncode(PageState.Route.PathAndQuery);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// use existing value
|
||||||
|
_returnurl = PageState.QueryString["returnurl"];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!string.IsNullOrEmpty(SettingService.GetSetting(PageState.Site.Settings, "LoginOptions:RegisterUrl", "")))
|
||||||
|
{
|
||||||
|
_registerurl = SettingService.GetSetting(PageState.Site.Settings, "LoginOptions:RegisterUrl", "");
|
||||||
|
_registerurl += (!_registerurl.Contains("?") ? "?" : "&") + "returnurl=" + (_registerurl.Contains("://") ? WebUtility.UrlEncode(PageState.Route.RootUrl) + _returnurl : _returnurl);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_registerurl = NavigateUrl("register", "returnurl=" + _returnurl);
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.WriteLine($"Register URL: {_registerurl}");
|
||||||
|
}
|
||||||
|
}
|
11
README.md
11
README.md
@ -1,4 +1,4 @@
|
|||||||
# Oqtane Framework
|
# Oqtane Framewo
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
@ -12,7 +12,7 @@ Oqtane is being developed based on some fundamental principles which are outline
|
|||||||
|
|
||||||
# Latest Release
|
# Latest Release
|
||||||
|
|
||||||
[6.1.2](https://github.com/oqtane/oqtane.framework/releases/tag/v6.1.2) was released on April 10, 2025 and is a maintenance release including 41 pull requests by 3 different contributors, pushing the total number of project commits all-time to over 6500. The Oqtane framework continues to evolve at a rapid pace to meet the needs of .NET developers.
|
[6.1.3](https://github.com/oqtane/oqtane.framework/releases/tag/v6.1.3) was released on May 29, 2025 and is a maintenance release including 59 pull requests by 5 different contributors, pushing the total number of project commits all-time to over 6600. The Oqtane framework continues to evolve at a rapid pace to meet the needs of .NET developers.
|
||||||
|
|
||||||
# Try It Now!
|
# Try It Now!
|
||||||
|
|
||||||
@ -22,11 +22,11 @@ Microsoft's Public Cloud (requires an Azure account)
|
|||||||
A free ASP.NET hosting account. No hidden fees. No credit card required.
|
A free ASP.NET hosting account. No hidden fees. No credit card required.
|
||||||
[](https://www.monsterasp.net/)
|
[](https://www.monsterasp.net/)
|
||||||
|
|
||||||
# Getting Started (Version 6.1.2)
|
# Getting Started (Version 6)
|
||||||
|
|
||||||
**Installing using source code from the Dev/Master branch:**
|
**Installing using source code from the Dev/Master branch:**
|
||||||
|
|
||||||
- Install **[.NET 9.0.4 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)**.
|
- Install **[.NET 9.0.5 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)**.
|
||||||
|
|
||||||
- Install the latest edition (v17.12 or higher) of [Visual Studio 2022](https://visualstudio.microsoft.com/downloads) with the **ASP.NET and web development** workload enabled. Oqtane works with ALL editions of Visual Studio from Community to Enterprise. If you wish to use LocalDB for development ( not a requirement as Oqtane supports SQLite, mySQL, and PostgreSQL ) you must also install the **Data storage and processing**.
|
- Install the latest edition (v17.12 or higher) of [Visual Studio 2022](https://visualstudio.microsoft.com/downloads) with the **ASP.NET and web development** workload enabled. Oqtane works with ALL editions of Visual Studio from Community to Enterprise. If you wish to use LocalDB for development ( not a requirement as Oqtane supports SQLite, mySQL, and PostgreSQL ) you must also install the **Data storage and processing**.
|
||||||
|
|
||||||
@ -92,6 +92,9 @@ Connect with other developers, get support, and share ideas by joining the Oqtan
|
|||||||
# Roadmap
|
# Roadmap
|
||||||
This project is open source, and therefore is a work in progress...
|
This project is open source, and therefore is a work in progress...
|
||||||
|
|
||||||
|
[6.1.3](https://github.com/oqtane/oqtane.framework/releases/tag/v6.1.3) (May 29, 2025)
|
||||||
|
- [x] Stabilization improvements
|
||||||
|
|
||||||
[6.1.2](https://github.com/oqtane/oqtane.framework/releases/tag/v6.1.2) (Apr 10, 2025)
|
[6.1.2](https://github.com/oqtane/oqtane.framework/releases/tag/v6.1.2) (Apr 10, 2025)
|
||||||
- [x] Stabilization improvements
|
- [x] Stabilization improvements
|
||||||
|
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
"apiVersion": "2024-04-01",
|
"apiVersion": "2024-04-01",
|
||||||
"name": "[concat(parameters('BlazorWebsiteName'), '/ZipDeploy')]",
|
"name": "[concat(parameters('BlazorWebsiteName'), '/ZipDeploy')]",
|
||||||
"properties": {
|
"properties": {
|
||||||
"packageUri": "https://github.com/oqtane/oqtane.framework/releases/download/v6.1.2/Oqtane.Framework.6.1.2.Install.zip"
|
"packageUri": "https://github.com/oqtane/oqtane.framework/releases/download/v6.1.3/Oqtane.Framework.6.1.3.Install.zip"
|
||||||
},
|
},
|
||||||
"dependsOn": [
|
"dependsOn": [
|
||||||
"[resourceId('Microsoft.Web/sites', parameters('BlazorWebsiteName'))]"
|
"[resourceId('Microsoft.Web/sites', parameters('BlazorWebsiteName'))]"
|
||||||
|
BIN
publish/Azure.Core.dll
Executable file
BIN
publish/Azure.Core.dll
Executable file
Binary file not shown.
BIN
publish/Azure.Identity.dll
Executable file
BIN
publish/Azure.Identity.dll
Executable file
Binary file not shown.
BIN
publish/BlazorDebugProxy/BrowserDebugHost.dll
Executable file
BIN
publish/BlazorDebugProxy/BrowserDebugHost.dll
Executable file
Binary file not shown.
21
publish/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json
Executable file
21
publish/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json
Executable file
@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net9.0",
|
||||||
|
"rollForward": "Major",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "9.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App",
|
||||||
|
"version": "9.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"System.GC.Server": true,
|
||||||
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
BIN
publish/BlazorDebugProxy/BrowserDebugProxy.dll
Executable file
BIN
publish/BlazorDebugProxy/BrowserDebugProxy.dll
Executable file
Binary file not shown.
BIN
publish/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.Scripting.dll
Executable file
BIN
publish/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.Scripting.dll
Executable file
Binary file not shown.
BIN
publish/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll
Executable file
BIN
publish/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll
Executable file
Binary file not shown.
BIN
publish/BlazorDebugProxy/Microsoft.CodeAnalysis.Scripting.dll
Executable file
BIN
publish/BlazorDebugProxy/Microsoft.CodeAnalysis.Scripting.dll
Executable file
Binary file not shown.
BIN
publish/BlazorDebugProxy/Microsoft.CodeAnalysis.dll
Executable file
BIN
publish/BlazorDebugProxy/Microsoft.CodeAnalysis.dll
Executable file
Binary file not shown.
BIN
publish/BlazorDebugProxy/Microsoft.FileFormats.dll
Executable file
BIN
publish/BlazorDebugProxy/Microsoft.FileFormats.dll
Executable file
Binary file not shown.
BIN
publish/BlazorDebugProxy/Microsoft.NET.WebAssembly.Webcil.dll
Executable file
BIN
publish/BlazorDebugProxy/Microsoft.NET.WebAssembly.Webcil.dll
Executable file
Binary file not shown.
BIN
publish/BlazorDebugProxy/Microsoft.SymbolStore.dll
Executable file
BIN
publish/BlazorDebugProxy/Microsoft.SymbolStore.dll
Executable file
Binary file not shown.
BIN
publish/BlazorDebugProxy/Newtonsoft.Json.dll
Executable file
BIN
publish/BlazorDebugProxy/Newtonsoft.Json.dll
Executable file
Binary file not shown.
45
publish/Content/Log/error.log
Normal file
45
publish/Content/Log/error.log
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
[2025-05-30 14:16:14+00:00] [Error] [Oqtane.Infrastructure.NotificationJob] An Error Occurred Stopping Scheduled Job: Notification Job - System.InvalidOperationException: No database provider has been configured for this DbContext. A provider can be configured by overriding the 'DbContext.OnConfiguring' method or by using 'AddDbContext' on the application service provider. If 'AddDbContext' is used, then also ensure that your DbContext type accepts a DbContextOptions<TContext> object in its constructor and passes it to the base constructor for DbContext.
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.DbContextServices.Initialize(IServiceProvider scopedProvider, DbContextOptions contextOptions, DbContext context)
|
||||||
|
at Microsoft.EntityFrameworkCore.DbContext.get_ContextServices()
|
||||||
|
at Microsoft.EntityFrameworkCore.DbContext.get_Model()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.get_EntityType()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.CheckState()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.get_EntityQueryable()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.System.Collections.Generic.IEnumerable<TEntity>.GetEnumerator()
|
||||||
|
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
|
||||||
|
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
|
||||||
|
at Oqtane.Repository.JobRepository.<GetJobs>b__3_0(ICacheEntry entry) in /home/kocoder/src/dotnet/oqtane.framework/oqtane.framework/Oqtane.Server/Repository/JobRepository.cs:line 26
|
||||||
|
at Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreate[TItem](IMemoryCache cache, Object key, Func`2 factory, MemoryCacheEntryOptions createOptions)
|
||||||
|
at Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreate[TItem](IMemoryCache cache, Object key, Func`2 factory)
|
||||||
|
at Oqtane.Repository.JobRepository.GetJobs() in /home/kocoder/src/dotnet/oqtane.framework/oqtane.framework/Oqtane.Server/Repository/JobRepository.cs:line 23
|
||||||
|
at Oqtane.Infrastructure.HostedServiceBase.StopAsync(CancellationToken cancellationToken) in /home/kocoder/src/dotnet/oqtane.framework/oqtane.framework/Oqtane.Server/Infrastructure/Jobs/HostedServiceBase.cs:line 288
|
||||||
|
[2025-05-30 14:16:14+00:00] [Error] [Oqtane.Infrastructure.PurgeJob] An Error Occurred Stopping Scheduled Job: Purge Job - System.InvalidOperationException: No database provider has been configured for this DbContext. A provider can be configured by overriding the 'DbContext.OnConfiguring' method or by using 'AddDbContext' on the application service provider. If 'AddDbContext' is used, then also ensure that your DbContext type accepts a DbContextOptions<TContext> object in its constructor and passes it to the base constructor for DbContext.
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.DbContextServices.Initialize(IServiceProvider scopedProvider, DbContextOptions contextOptions, DbContext context)
|
||||||
|
at Microsoft.EntityFrameworkCore.DbContext.get_ContextServices()
|
||||||
|
at Microsoft.EntityFrameworkCore.DbContext.get_Model()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.get_EntityType()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.CheckState()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.get_EntityQueryable()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.System.Collections.Generic.IEnumerable<TEntity>.GetEnumerator()
|
||||||
|
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
|
||||||
|
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
|
||||||
|
at Oqtane.Repository.JobRepository.<GetJobs>b__3_0(ICacheEntry entry) in /home/kocoder/src/dotnet/oqtane.framework/oqtane.framework/Oqtane.Server/Repository/JobRepository.cs:line 26
|
||||||
|
at Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreate[TItem](IMemoryCache cache, Object key, Func`2 factory, MemoryCacheEntryOptions createOptions)
|
||||||
|
at Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreate[TItem](IMemoryCache cache, Object key, Func`2 factory)
|
||||||
|
at Oqtane.Repository.JobRepository.GetJobs() in /home/kocoder/src/dotnet/oqtane.framework/oqtane.framework/Oqtane.Server/Repository/JobRepository.cs:line 23
|
||||||
|
at Oqtane.Infrastructure.HostedServiceBase.StopAsync(CancellationToken cancellationToken) in /home/kocoder/src/dotnet/oqtane.framework/oqtane.framework/Oqtane.Server/Infrastructure/Jobs/HostedServiceBase.cs:line 288
|
||||||
|
[2025-05-30 14:16:14+00:00] [Error] [Oqtane.Infrastructure.SearchIndexJob] An Error Occurred Stopping Scheduled Job: Search Index Job - System.InvalidOperationException: No database provider has been configured for this DbContext. A provider can be configured by overriding the 'DbContext.OnConfiguring' method or by using 'AddDbContext' on the application service provider. If 'AddDbContext' is used, then also ensure that your DbContext type accepts a DbContextOptions<TContext> object in its constructor and passes it to the base constructor for DbContext.
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.DbContextServices.Initialize(IServiceProvider scopedProvider, DbContextOptions contextOptions, DbContext context)
|
||||||
|
at Microsoft.EntityFrameworkCore.DbContext.get_ContextServices()
|
||||||
|
at Microsoft.EntityFrameworkCore.DbContext.get_Model()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.get_EntityType()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.CheckState()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.get_EntityQueryable()
|
||||||
|
at Microsoft.EntityFrameworkCore.Internal.InternalDbSet`1.System.Collections.Generic.IEnumerable<TEntity>.GetEnumerator()
|
||||||
|
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
|
||||||
|
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
|
||||||
|
at Oqtane.Repository.JobRepository.<GetJobs>b__3_0(ICacheEntry entry) in /home/kocoder/src/dotnet/oqtane.framework/oqtane.framework/Oqtane.Server/Repository/JobRepository.cs:line 26
|
||||||
|
at Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreate[TItem](IMemoryCache cache, Object key, Func`2 factory, MemoryCacheEntryOptions createOptions)
|
||||||
|
at Microsoft.Extensions.Caching.Memory.CacheExtensions.GetOrCreate[TItem](IMemoryCache cache, Object key, Func`2 factory)
|
||||||
|
at Oqtane.Repository.JobRepository.GetJobs() in /home/kocoder/src/dotnet/oqtane.framework/oqtane.framework/Oqtane.Server/Repository/JobRepository.cs:line 23
|
||||||
|
at Oqtane.Infrastructure.HostedServiceBase.StopAsync(CancellationToken cancellationToken) in /home/kocoder/src/dotnet/oqtane.framework/oqtane.framework/Oqtane.Server/Infrastructure/Jobs/HostedServiceBase.cs:line 288
|
BIN
publish/Content/Tenants/1/Sites/1/logo-white.png
Normal file
BIN
publish/Content/Tenants/1/Sites/1/logo-white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.8 KiB |
BIN
publish/Data/Oqtane-202505301417.db
Normal file
BIN
publish/Data/Oqtane-202505301417.db
Normal file
Binary file not shown.
BIN
publish/EFCore.NamingConventions.dll
Executable file
BIN
publish/EFCore.NamingConventions.dll
Executable file
Binary file not shown.
BIN
publish/HtmlAgilityPack.dll
Executable file
BIN
publish/HtmlAgilityPack.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Authorization.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Authorization.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Components.Authorization.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Components.Authorization.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Components.Forms.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Components.Forms.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Components.Web.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Components.Web.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Components.WebAssembly.Authentication.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Components.WebAssembly.Server.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Components.WebAssembly.Server.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Components.WebAssembly.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Components.WebAssembly.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Components.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Components.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Cryptography.Internal.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Cryptography.Internal.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.AspNetCore.Metadata.dll
Executable file
BIN
publish/Microsoft.AspNetCore.Metadata.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Bcl.AsyncInterfaces.dll
Executable file
BIN
publish/Microsoft.Bcl.AsyncInterfaces.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Bcl.Cryptography.dll
Executable file
BIN
publish/Microsoft.Bcl.Cryptography.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Data.SqlClient.dll
Executable file
BIN
publish/Microsoft.Data.SqlClient.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Data.Sqlite.dll
Executable file
BIN
publish/Microsoft.Data.Sqlite.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.EntityFrameworkCore.Abstractions.dll
Executable file
BIN
publish/Microsoft.EntityFrameworkCore.Abstractions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.EntityFrameworkCore.Relational.dll
Executable file
BIN
publish/Microsoft.EntityFrameworkCore.Relational.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.EntityFrameworkCore.SqlServer.dll
Executable file
BIN
publish/Microsoft.EntityFrameworkCore.SqlServer.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.EntityFrameworkCore.Sqlite.dll
Executable file
BIN
publish/Microsoft.EntityFrameworkCore.Sqlite.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.EntityFrameworkCore.dll
Executable file
BIN
publish/Microsoft.EntityFrameworkCore.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Caching.Abstractions.dll
Executable file
BIN
publish/Microsoft.Extensions.Caching.Abstractions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Caching.Memory.dll
Executable file
BIN
publish/Microsoft.Extensions.Caching.Memory.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Configuration.Abstractions.dll
Executable file
BIN
publish/Microsoft.Extensions.Configuration.Abstractions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Configuration.Binder.dll
Executable file
BIN
publish/Microsoft.Extensions.Configuration.Binder.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Configuration.FileExtensions.dll
Executable file
BIN
publish/Microsoft.Extensions.Configuration.FileExtensions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Configuration.Json.dll
Executable file
BIN
publish/Microsoft.Extensions.Configuration.Json.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Configuration.dll
Executable file
BIN
publish/Microsoft.Extensions.Configuration.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll
Executable file
BIN
publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.DependencyInjection.dll
Executable file
BIN
publish/Microsoft.Extensions.DependencyInjection.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Diagnostics.Abstractions.dll
Executable file
BIN
publish/Microsoft.Extensions.Diagnostics.Abstractions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Diagnostics.dll
Executable file
BIN
publish/Microsoft.Extensions.Diagnostics.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.FileProviders.Abstractions.dll
Executable file
BIN
publish/Microsoft.Extensions.FileProviders.Abstractions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.FileProviders.Physical.dll
Executable file
BIN
publish/Microsoft.Extensions.FileProviders.Physical.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.FileSystemGlobbing.dll
Executable file
BIN
publish/Microsoft.Extensions.FileSystemGlobbing.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Http.dll
Executable file
BIN
publish/Microsoft.Extensions.Http.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Identity.Core.dll
Executable file
BIN
publish/Microsoft.Extensions.Identity.Core.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Identity.Stores.dll
Executable file
BIN
publish/Microsoft.Extensions.Identity.Stores.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Localization.Abstractions.dll
Executable file
BIN
publish/Microsoft.Extensions.Localization.Abstractions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Localization.dll
Executable file
BIN
publish/Microsoft.Extensions.Localization.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Logging.Abstractions.dll
Executable file
BIN
publish/Microsoft.Extensions.Logging.Abstractions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Logging.dll
Executable file
BIN
publish/Microsoft.Extensions.Logging.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Options.ConfigurationExtensions.dll
Executable file
BIN
publish/Microsoft.Extensions.Options.ConfigurationExtensions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Options.dll
Executable file
BIN
publish/Microsoft.Extensions.Options.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Extensions.Primitives.dll
Executable file
BIN
publish/Microsoft.Extensions.Primitives.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Identity.Client.Extensions.Msal.dll
Executable file
BIN
publish/Microsoft.Identity.Client.Extensions.Msal.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.Identity.Client.dll
Executable file
BIN
publish/Microsoft.Identity.Client.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.IdentityModel.Abstractions.dll
Executable file
BIN
publish/Microsoft.IdentityModel.Abstractions.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.IdentityModel.JsonWebTokens.dll
Executable file
BIN
publish/Microsoft.IdentityModel.JsonWebTokens.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.IdentityModel.Logging.dll
Executable file
BIN
publish/Microsoft.IdentityModel.Logging.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
Executable file
BIN
publish/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.IdentityModel.Protocols.dll
Executable file
BIN
publish/Microsoft.IdentityModel.Protocols.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.IdentityModel.Tokens.dll
Executable file
BIN
publish/Microsoft.IdentityModel.Tokens.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.JSInterop.WebAssembly.dll
Executable file
BIN
publish/Microsoft.JSInterop.WebAssembly.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.JSInterop.dll
Executable file
BIN
publish/Microsoft.JSInterop.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.OpenApi.dll
Executable file
BIN
publish/Microsoft.OpenApi.dll
Executable file
Binary file not shown.
BIN
publish/Microsoft.SqlServer.Server.dll
Executable file
BIN
publish/Microsoft.SqlServer.Server.dll
Executable file
Binary file not shown.
BIN
publish/MySql.Data.dll
Executable file
BIN
publish/MySql.Data.dll
Executable file
Binary file not shown.
BIN
publish/Npgsql.EntityFrameworkCore.PostgreSQL.dll
Executable file
BIN
publish/Npgsql.EntityFrameworkCore.PostgreSQL.dll
Executable file
Binary file not shown.
BIN
publish/Npgsql.dll
Executable file
BIN
publish/Npgsql.dll
Executable file
Binary file not shown.
BIN
publish/Oqtane.Client.dll
Normal file
BIN
publish/Oqtane.Client.dll
Normal file
Binary file not shown.
BIN
publish/Oqtane.Client.pdb
Normal file
BIN
publish/Oqtane.Client.pdb
Normal file
Binary file not shown.
BIN
publish/Oqtane.Database.MySQL.dll
Normal file
BIN
publish/Oqtane.Database.MySQL.dll
Normal file
Binary file not shown.
BIN
publish/Oqtane.Database.MySQL.pdb
Normal file
BIN
publish/Oqtane.Database.MySQL.pdb
Normal file
Binary file not shown.
BIN
publish/Oqtane.Database.PostgreSQL.dll
Normal file
BIN
publish/Oqtane.Database.PostgreSQL.dll
Normal file
Binary file not shown.
BIN
publish/Oqtane.Database.PostgreSQL.pdb
Normal file
BIN
publish/Oqtane.Database.PostgreSQL.pdb
Normal file
Binary file not shown.
BIN
publish/Oqtane.Database.SqlServer.dll
Normal file
BIN
publish/Oqtane.Database.SqlServer.dll
Normal file
Binary file not shown.
BIN
publish/Oqtane.Database.SqlServer.pdb
Normal file
BIN
publish/Oqtane.Database.SqlServer.pdb
Normal file
Binary file not shown.
BIN
publish/Oqtane.Database.Sqlite.dll
Normal file
BIN
publish/Oqtane.Database.Sqlite.dll
Normal file
Binary file not shown.
BIN
publish/Oqtane.Database.Sqlite.pdb
Normal file
BIN
publish/Oqtane.Database.Sqlite.pdb
Normal file
Binary file not shown.
BIN
publish/Oqtane.Server
Executable file
BIN
publish/Oqtane.Server
Executable file
Binary file not shown.
5456
publish/Oqtane.Server.deps.json
Normal file
5456
publish/Oqtane.Server.deps.json
Normal file
File diff suppressed because it is too large
Load Diff
BIN
publish/Oqtane.Server.dll
Normal file
BIN
publish/Oqtane.Server.dll
Normal file
Binary file not shown.
BIN
publish/Oqtane.Server.pdb
Normal file
BIN
publish/Oqtane.Server.pdb
Normal file
Binary file not shown.
21
publish/Oqtane.Server.runtimeconfig.json
Normal file
21
publish/Oqtane.Server.runtimeconfig.json
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net9.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "9.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App",
|
||||||
|
"version": "9.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"System.GC.Server": true,
|
||||||
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||||
|
"System.Reflection.NullabilityInfoContext.IsSupported": true,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
112258
publish/Oqtane.Server.staticwebassets.endpoints.json
Normal file
112258
publish/Oqtane.Server.staticwebassets.endpoints.json
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user