From 916019f0153e6065e7c565388fe1abb7140af387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ton=C4=87i=20Vatavuk?= Date: Tue, 23 Sep 2025 16:18:52 +0200 Subject: [PATCH] RadzenTextEditor.placeholder.cs in RadzenTextEditor for docs This is just a placeholder file It is necessary for the documentation to successfully build this project. Reason is that docfx will run the .net compiler and find references to this class in the project. But since the real class is just a .razor file, ATM docfx will fail. --- .../Radzen/RadzenTextEditor.placeholder.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Oqtane.Client/Modules/Controls/TextEditors/Radzen/RadzenTextEditor.placeholder.cs diff --git a/Oqtane.Client/Modules/Controls/TextEditors/Radzen/RadzenTextEditor.placeholder.cs b/Oqtane.Client/Modules/Controls/TextEditors/Radzen/RadzenTextEditor.placeholder.cs new file mode 100644 index 00000000..b8623e51 --- /dev/null +++ b/Oqtane.Client/Modules/Controls/TextEditors/Radzen/RadzenTextEditor.placeholder.cs @@ -0,0 +1,12 @@ +// This is just a placeholder file +// It is necessary for the documentation to successfully build this project. +// Reason is that docfx will run the .net compiler and find references +// to this class in the project. +// But since the real class is just a .razor file, ATM docfx will fail. +// +// Note added 2025-09-23 by @tvatavuk. +// We hope that as .net and docfx improve, the razor-compiler will work in that scenario +// as well, and this file can be removed. + +namespace Oqtane.Modules.Controls; +public partial class RadzenTextEditor;