Minor fix in ThemeController.cs

update `SharedReference` to use "Oqtane.Shared" for PackageReference code
This commit is contained in:
Tonći Vatavuk 2025-02-11 14:35:13 +01:00 committed by GitHub
parent e55e0118c2
commit 1214a11704
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -280,7 +280,7 @@ namespace Oqtane.Controllers
{
{ "FrameworkVersion", theme.Version },
{ "ClientReference", $"<PackageReference Include=\"Oqtane.Client\" Version=\"{theme.Version}\" />" },
{ "SharedReference", $"<PackageReference Include=\"Oqtane.Client\" Version=\"{theme.Version}\" />" },
{ "SharedReference", $"<PackageReference Include=\"Oqtane.Shared\" Version=\"{theme.Version}\" />" },
};
});
}