From 7adb7f0526f9157509767d2fe2031bd605c0b06f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20James?= Date: Thu, 8 Feb 2024 10:46:30 +0100 Subject: [PATCH 1/5] =?UTF-8?q?=F0=9F=90=9B=20Try=20to=20fix=20random=20cr?= =?UTF-8?q?ash=20at=20startup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CodeMirror6/NodeLib/src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CodeMirror6/NodeLib/src/index.ts b/CodeMirror6/NodeLib/src/index.ts index 34d5a7df..687ad9e3 100644 --- a/CodeMirror6/NodeLib/src/index.ts +++ b/CodeMirror6/NodeLib/src/index.ts @@ -230,6 +230,8 @@ export function getAllSupportedLanguageNames(id: string) async function updateListenerExtension(id: string, update: ViewUpdate) { const dotnetHelper = CMInstances[id].dotNetHelper + if (dotnetHelper === undefined) + return const setup = CMInstances[id].setup if (update.docChanged) { if (setup.bindValueMode === 'OnInput') From 4ea914b892d6c400f20391471f0cad02cd2f70a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20James?= Date: Thu, 8 Feb 2024 16:37:50 +0100 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=94=8A=20Add=20DebugLogs=20setup=20pa?= =?UTF-8?q?rameter=20to=20print=20debug=20logs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CodeMirror6/CodeMirror6.csproj | 2 +- ...rror6WrapperInternal.razor.JsInvokables.cs | 7 + .../CodeMirror6WrapperInternal.razor.cs | 135 ++++++++++-------- CodeMirror6/Models/CodeMirrorSetup.cs | 5 + CodeMirror6/NodeLib/src/CmSetup.ts | 1 + CodeMirror6/NodeLib/src/index.ts | 28 +++- 6 files changed, 108 insertions(+), 70 deletions(-) diff --git a/CodeMirror6/CodeMirror6.csproj b/CodeMirror6/CodeMirror6.csproj index 1d9a99dd..090503a8 100644 --- a/CodeMirror6/CodeMirror6.csproj +++ b/CodeMirror6/CodeMirror6.csproj @@ -63,4 +63,4 @@ - \ No newline at end of file + diff --git a/CodeMirror6/CodeMirror6WrapperInternal.razor.JsInvokables.cs b/CodeMirror6/CodeMirror6WrapperInternal.razor.JsInvokables.cs index 1ab3eb92..2e888ae2 100644 --- a/CodeMirror6/CodeMirror6WrapperInternal.razor.JsInvokables.cs +++ b/CodeMirror6/CodeMirror6WrapperInternal.razor.JsInvokables.cs @@ -1,5 +1,6 @@ using GaelJ.BlazorCodeMirror6.Models; using Microsoft.AspNetCore.Components; +using Microsoft.Extensions.Logging; using Microsoft.JSInterop; namespace GaelJ.BlazorCodeMirror6; @@ -22,6 +23,7 @@ public partial class CodeMirror6WrapperInternal : ComponentBase, IAsyncDisposabl /// [JSInvokable] public async Task DocChangedFromJS(string value) { + if (Setup.DebugLogs) Logger.LogInformation("DocChangedFromJS: {value}", value); if (Doc?.Replace("\r", "") == value?.Replace("\r", "")) return; Doc = value?.Replace("\r", "") ?? ""; Config.Doc = Doc; @@ -35,6 +37,7 @@ [JSInvokable] public async Task DocChangedFromJS(string value) /// [JSInvokable] public async Task FocusChangedFromJS(bool value) { + if (Setup.DebugLogs) Logger.LogInformation("FocusChangedFromJS: {value}", value); if (State.HasFocus == value) return; State.HasFocus = value; await FocusChanged.InvokeAsync(State.HasFocus); @@ -47,6 +50,7 @@ [JSInvokable] public async Task FocusChangedFromJS(bool value) /// [JSInvokable] public async Task SelectionSetFromJS(IEnumerable? values) { + if (Setup.DebugLogs) Logger.LogInformation("SelectionChangedFromJS: @{values}", values); Selection = values?.ToList(); await SelectionChanged.InvokeAsync(Selection); } @@ -58,6 +62,7 @@ [JSInvokable] public async Task SelectionSetFromJS(IEnumerable? /// [JSInvokable] public async Task MarkdownStyleChangedFromJS(IEnumerable? values) { + if (Setup.DebugLogs) Logger.LogInformation("MarkdownStyleChangedFromJS: @{values}", values); State.MarkdownStylesAtSelections = new(values?.ToList() ?? []); await MarkdownStylesAtSelectionsChanged.InvokeAsync(State.MarkdownStylesAtSelections); } @@ -69,6 +74,7 @@ [JSInvokable] public async Task MarkdownStyleChangedFromJS(IEnumerable? /// [JSInvokable] public async Task> LintingRequestedFromJS(string document) { + if (Setup.DebugLogs) Logger.LogInformation("LintingRequestedFromJS: {document}", document); if (Setup.BindMode == DocumentBindMode.OnDelayedInput) { await DocChangedFromJS(document); } @@ -100,6 +106,7 @@ [JSInvokable] public async Task> LintingRequestedFrom /// [JSInvokable] public async Task UploadFileFromJS(byte[] fileBytes, string fileName, string contentType, DateTime lastModified) { + if (Setup.DebugLogs) Logger.LogInformation("UploadFileFromJS: {fileName}", fileName); using var fileStream = new MemoryStream(fileBytes); var customFormFile = new CustomFormFile(fileStream, fileName, contentType); var customBrowserFile = new CustomBrowserFile(fileStream, fileName, contentType, lastModified); diff --git a/CodeMirror6/CodeMirror6WrapperInternal.razor.cs b/CodeMirror6/CodeMirror6WrapperInternal.razor.cs index f6a4dfbb..4c3d5c53 100644 --- a/CodeMirror6/CodeMirror6WrapperInternal.razor.cs +++ b/CodeMirror6/CodeMirror6WrapperInternal.razor.cs @@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components.Forms; using Microsoft.AspNetCore.Http; +using Microsoft.Extensions.Logging; using Microsoft.JSInterop; namespace GaelJ.BlazorCodeMirror6; @@ -13,6 +14,8 @@ namespace GaelJ.BlazorCodeMirror6; public partial class CodeMirror6WrapperInternal : ComponentBase, IAsyncDisposable { [Inject] private IJSRuntime JSRuntime { get; set; } = null!; + [Inject] private ILogger Logger { get; set; } = null!; + /// /// /// Gets or sets the unique identifier for the CodeMirror6 editor. /// Defaults to CodeMirror6_Editor_{NewGuid}. @@ -264,71 +267,78 @@ protected override async Task OnParametersSetAsync() shouldRender = true; if (CmJsInterop is null) return; shouldRender = false; - if (Config.TabSize != TabSize) { - Config.TabSize = TabSize; - await CmJsInterop.PropertySetters.SetTabSize(); - } - if (Config.IndentationUnit != IndentationUnit) { - Config.IndentationUnit = IndentationUnit; - await CmJsInterop.PropertySetters.SetIndentUnit(); - } - if (Config.Doc?.Replace("\r", "") != Doc?.Replace("\r", "")) { - Config.Doc = Doc; - await CmJsInterop.PropertySetters.SetDoc(); - } - if (Config.Placeholder != Placeholder) { - Config.Placeholder = Placeholder; - await CmJsInterop.PropertySetters.SetPlaceholderText(); - } - if (Config.ThemeName != Theme) { - Config.ThemeName = Theme; - await CmJsInterop.PropertySetters.SetTheme(); - } - if (Config.ReadOnly != ReadOnly) { - Config.ReadOnly = ReadOnly; - await CmJsInterop.PropertySetters.SetReadOnly(); - } - if (Config.Editable != Editable) { - Config.Editable = Editable; - await CmJsInterop.PropertySetters.SetEditable(); - } - if (Config.LanguageName != Language) { - Config.LanguageName = Language; - await CmJsInterop.PropertySetters.SetLanguage(); - } - if (Config.FileNameOrExtension != FileNameOrExtension) { - Config.FileNameOrExtension = FileNameOrExtension; - await CmJsInterop.PropertySetters.SetLanguage(); - } - if (Config.AutoFormatMarkdown != AutoFormatMarkdown) { - Config.AutoFormatMarkdown = AutoFormatMarkdown; - await CmJsInterop.PropertySetters.SetAutoFormatMarkdown(); - } - if (Config.ReplaceEmojiCodes != ReplaceEmojiCodes) { - Config.ReplaceEmojiCodes = ReplaceEmojiCodes; - await CmJsInterop.PropertySetters.SetReplaceEmojiCodes(); - } - if (Config.Resize != ResizeStyle) { - Config.Resize = ResizeStyle; - await CmJsInterop.PropertySetters.SetResize(); - } - if (Config.LineWrapping != LineWrapping) { - Config.LineWrapping = LineWrapping; - await CmJsInterop.PropertySetters.SetLineWrapping(); - } - if (Config.MergeViewConfiguration != MergeViewConfiguration) { - Config.MergeViewConfiguration = MergeViewConfiguration; - await CmJsInterop.PropertySetters.SetUnifiedMergeView(); + try { + if (Config.TabSize != TabSize) { + Config.TabSize = TabSize; + await CmJsInterop.PropertySetters.SetTabSize(); + } + if (Config.IndentationUnit != IndentationUnit) { + Config.IndentationUnit = IndentationUnit; + await CmJsInterop.PropertySetters.SetIndentUnit(); + } + if (Config.Doc?.Replace("\r", "") != Doc?.Replace("\r", "")) { + Config.Doc = Doc; + await CmJsInterop.PropertySetters.SetDoc(); + } + if (Config.Placeholder != Placeholder) { + Config.Placeholder = Placeholder; + await CmJsInterop.PropertySetters.SetPlaceholderText(); + } + if (Config.ThemeName != Theme) { + Config.ThemeName = Theme; + await CmJsInterop.PropertySetters.SetTheme(); + } + if (Config.ReadOnly != ReadOnly) { + Config.ReadOnly = ReadOnly; + await CmJsInterop.PropertySetters.SetReadOnly(); + } + if (Config.Editable != Editable) { + Config.Editable = Editable; + await CmJsInterop.PropertySetters.SetEditable(); + } + if (Config.LanguageName != Language) { + Config.LanguageName = Language; + await CmJsInterop.PropertySetters.SetLanguage(); + } + if (Config.FileNameOrExtension != FileNameOrExtension) { + Config.FileNameOrExtension = FileNameOrExtension; + await CmJsInterop.PropertySetters.SetLanguage(); + } + if (Config.AutoFormatMarkdown != AutoFormatMarkdown) { + Config.AutoFormatMarkdown = AutoFormatMarkdown; + await CmJsInterop.PropertySetters.SetAutoFormatMarkdown(); + } + if (Config.ReplaceEmojiCodes != ReplaceEmojiCodes) { + Config.ReplaceEmojiCodes = ReplaceEmojiCodes; + await CmJsInterop.PropertySetters.SetReplaceEmojiCodes(); + } + if (Config.Resize != ResizeStyle) { + Config.Resize = ResizeStyle; + await CmJsInterop.PropertySetters.SetResize(); + } + if (Config.LineWrapping != LineWrapping) { + Config.LineWrapping = LineWrapping; + await CmJsInterop.PropertySetters.SetLineWrapping(); + } + if (Config.MergeViewConfiguration != MergeViewConfiguration) { + Config.MergeViewConfiguration = MergeViewConfiguration; + await CmJsInterop.PropertySetters.SetUnifiedMergeView(); + } + if (Config.HighlightTrailingWhitespace != HighlightTrailingWhitespace) { + Config.HighlightTrailingWhitespace = HighlightTrailingWhitespace; + await CmJsInterop.PropertySetters.SetHighlightTrailingWhitespace(); + } + if (Config.HighlightWhitespace != HighlightWhitespace) { + Config.HighlightWhitespace = HighlightWhitespace; + await CmJsInterop.PropertySetters.SetHighlightWhitespace(); + } } - if (Config.HighlightTrailingWhitespace != HighlightTrailingWhitespace) { - Config.HighlightTrailingWhitespace = HighlightTrailingWhitespace; - await CmJsInterop.PropertySetters.SetHighlightTrailingWhitespace(); + catch (Exception ex) { + Logger.LogError(ex, "Error setting CodeMirror6 properties"); } - if (Config.HighlightWhitespace != HighlightWhitespace) { - Config.HighlightWhitespace = HighlightWhitespace; - await CmJsInterop.PropertySetters.SetHighlightWhitespace(); + finally { + shouldRender = true; } - shouldRender = true; } /// @@ -349,6 +359,7 @@ public async ValueTask DisposeAsync() { if (CmJsInterop?.IsJSReady == true) await CmJsInterop.DisposeAsync(); + CmJsInterop = null; try { LinterCancellationTokenSource.Cancel(); LinterCancellationTokenSource.Dispose(); diff --git a/CodeMirror6/Models/CodeMirrorSetup.cs b/CodeMirror6/Models/CodeMirrorSetup.cs index 94a8fadd..b9f27380 100644 --- a/CodeMirror6/Models/CodeMirrorSetup.cs +++ b/CodeMirror6/Models/CodeMirrorSetup.cs @@ -134,4 +134,9 @@ public CodeMirrorSetup() /// Can the user scroll past the end of the document /// [JsonPropertyName("scrollPastEnd")] public bool ScrollPastEnd { get; init; } = false; + + /// + /// Whether to show the debug logs + /// + [JsonPropertyName("debugLogs")] public bool DebugLogs { get; init; } = false; } diff --git a/CodeMirror6/NodeLib/src/CmSetup.ts b/CodeMirror6/NodeLib/src/CmSetup.ts index 2ecf869c..943cfc82 100644 --- a/CodeMirror6/NodeLib/src/CmSetup.ts +++ b/CodeMirror6/NodeLib/src/CmSetup.ts @@ -28,4 +28,5 @@ export class CmSetup public bindValueMode: string public krokiUrl: string public scrollPastEnd: boolean + public debugLogs: boolean } diff --git a/CodeMirror6/NodeLib/src/index.ts b/CodeMirror6/NodeLib/src/index.ts index 687ad9e3..c536686b 100644 --- a/CodeMirror6/NodeLib/src/index.ts +++ b/CodeMirror6/NodeLib/src/index.ts @@ -75,10 +75,13 @@ export async function initCodeMirror( initialConfig: CmConfiguration, setup: CmSetup ) { - if (CMInstances[id] !== undefined) - return; + if (CMInstances[id] !== undefined) { + consoleLog(id, `CodeMirror instance ${id} already exists`) + return + } - console.log(`Initializing CodeMirror instance ${id}`) + if (setup.debugLogs === true) + console.log(`Initializing CodeMirror instance ${id}`) try { const minDelay = new Promise(res => setTimeout(res, 100)) @@ -223,15 +226,23 @@ export async function initCodeMirror( } } -export function getAllSupportedLanguageNames(id: string) +function consoleLog(id: string, message: string) +{ + if (CMInstances[id].setup.debugLogs === true) + console.log(message) +} + +export function getAllSupportedLanguageNames() { return languages.map((language) => language.name) } async function updateListenerExtension(id: string, update: ViewUpdate) { const dotnetHelper = CMInstances[id].dotNetHelper - if (dotnetHelper === undefined) + if (dotnetHelper === undefined){ + consoleLog(id, `DotNetHelper is undefined`) return + } const setup = CMInstances[id].setup if (update.docChanged) { if (setup.bindValueMode === 'OnInput') @@ -353,7 +364,10 @@ export function setHighlightWhitespace(id: string, value: boolean) { export function forceRedraw(id: string) { const view = CMInstances[id].view - if (!view) return + if (!view) { + consoleLog(id, `View is undefined`) + return + } view.requestMeasure() view.update([]) @@ -469,7 +483,7 @@ export function dispatchCommand(id: string, functionName: string, ...args: any[] * @param id */ export function dispose(id: string) { - console.log(`Disposing of CodeMirror instance ${id}`) + consoleLog(id, `Disposing of CodeMirror instance ${id}`) CMInstances[id].dotNetHelper.dispose() CMInstances[id].dotNetHelper = undefined CMInstances[id].view.destroy() From d2e0cdf0d5e3c8dc8db0a8cef9724174cdc22de5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20James?= Date: Thu, 8 Feb 2024 16:40:47 +0100 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=92=A5=20Move=20Id=20from=20parameter?= =?UTF-8?q?=20to=20Setup,=20as=20it=20should=20never=20be=20changed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CodeMirror6/CodeMirror6Wrapper.razor | 1 - CodeMirror6/CodeMirror6WrapperInternal.razor | 2 +- CodeMirror6/CodeMirror6WrapperInternal.razor.JsInterop.cs | 4 ++-- CodeMirror6/CodeMirror6WrapperInternal.razor.cs | 8 +------- CodeMirror6/Models/CodeMirrorSetup.cs | 7 +++++++ 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CodeMirror6/CodeMirror6Wrapper.razor b/CodeMirror6/CodeMirror6Wrapper.razor index 4dc2a4bb..d148e9f5 100644 --- a/CodeMirror6/CodeMirror6Wrapper.razor +++ b/CodeMirror6/CodeMirror6Wrapper.razor @@ -13,7 +13,6 @@ Editable="@Editable" FocusChanged="@FocusChanged" GetMentionCompletions="@GetMentionCompletions" - Id="@Id" IndentationUnit="@IndentationUnit" IsWASM="@IsWASM" Language="@Language" diff --git a/CodeMirror6/CodeMirror6WrapperInternal.razor b/CodeMirror6/CodeMirror6WrapperInternal.razor index 270078f0..84bc69d9 100644 --- a/CodeMirror6/CodeMirror6WrapperInternal.razor +++ b/CodeMirror6/CodeMirror6WrapperInternal.razor @@ -16,7 +16,7 @@
diff --git a/CodeMirror6/CodeMirror6WrapperInternal.razor.JsInterop.cs b/CodeMirror6/CodeMirror6WrapperInternal.razor.JsInterop.cs index 534bf97b..de1e3d2b 100644 --- a/CodeMirror6/CodeMirror6WrapperInternal.razor.JsInterop.cs +++ b/CodeMirror6/CodeMirror6WrapperInternal.razor.JsInterop.cs @@ -39,7 +39,7 @@ internal async Task ModuleInvokeVoidAsync(string method, params object?[] args) try { var module = await _moduleTask.Value; if (module is null) return; - args = args.Prepend(cm6WrapperComponent.Id).ToArray(); + args = args.Prepend(cm6WrapperComponent.Setup.Id).ToArray(); await module.InvokeVoidAsync(method, args); } catch (Exception ex) @@ -61,7 +61,7 @@ internal async Task ModuleInvokeVoidAsync(string method, params object?[] args) try { var module = await _moduleTask.Value; if (module is null) return default; - args = args.Prepend(cm6WrapperComponent.Id).ToArray(); + args = args.Prepend(cm6WrapperComponent.Setup.Id).ToArray(); return await module.InvokeAsync(method, args); } catch (Exception ex) diff --git a/CodeMirror6/CodeMirror6WrapperInternal.razor.cs b/CodeMirror6/CodeMirror6WrapperInternal.razor.cs index 4c3d5c53..efcc699a 100644 --- a/CodeMirror6/CodeMirror6WrapperInternal.razor.cs +++ b/CodeMirror6/CodeMirror6WrapperInternal.razor.cs @@ -16,12 +16,6 @@ public partial class CodeMirror6WrapperInternal : ComponentBase, IAsyncDisposabl [Inject] private IJSRuntime JSRuntime { get; set; } = null!; [Inject] private ILogger Logger { get; set; } = null!; - /// - /// /// Gets or sets the unique identifier for the CodeMirror6 editor. - /// Defaults to CodeMirror6_Editor_{NewGuid}. - /// - /// - [Parameter] public string Id { get; set; } = $"CodeMirror6_Editor_{Guid.NewGuid()}"; /// /// The size of the tab character to use for the editor /// @@ -185,7 +179,7 @@ public partial class CodeMirror6WrapperInternal : ComponentBase, IAsyncDisposabl /// public CMCommandDispatcher? CommandDispatcher => CmJsInterop?.CommandDispatcher; - private string LoadingDivId => $"{Id}_Loading"; + private string LoadingDivId => $"{Setup.Id}_Loading"; private string ResizeStyle => AllowVerticalResize && AllowHorizontalResize ? "both" : AllowVerticalResize ? "vertical" diff --git a/CodeMirror6/Models/CodeMirrorSetup.cs b/CodeMirror6/Models/CodeMirrorSetup.cs index b9f27380..677ee785 100644 --- a/CodeMirror6/Models/CodeMirrorSetup.cs +++ b/CodeMirror6/Models/CodeMirrorSetup.cs @@ -15,6 +15,13 @@ public CodeMirrorSetup() { } + /// + /// /// Gets or sets the unique identifier for the CodeMirror6 editor. + /// Defaults to CodeMirror6_Editor_{NewGuid}. + /// + /// + [JsonPropertyName("id")] public string Id { get; init; } = $"CodeMirror6_Editor_{Guid.NewGuid()}"; + /// /// Whether to show line numbers to the left of the editor. /// From 2b09a874047eba74e6006367731fe0461893ae0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20James?= Date: Thu, 8 Feb 2024 16:41:32 +0100 Subject: [PATCH 4/5] =?UTF-8?q?=F0=9F=93=9D=20Update=20changelog=20for=200?= =?UTF-8?q?.3.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 14 ++++++++++++++ NEW_CHANGELOG.md | 12 ++++++------ 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c4c3ad2..f674d9eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.3.6 - 2024-02-08 + +### 🐛 Fix a bug + +- Try to fix random crash at startup + +### 💥 Introduce breaking changes + +- Move Id from parameter to Setup, as it should never be changed + +### 🔊 Add or update logs + +- Add DebugLogs setup parameter to print debug logs + ## 0.3.5 - 2024-02-07 ### ✨ Introduce new features diff --git a/NEW_CHANGELOG.md b/NEW_CHANGELOG.md index 4b4af429..28b63853 100644 --- a/NEW_CHANGELOG.md +++ b/NEW_CHANGELOG.md @@ -1,11 +1,11 @@ -### ✨ Introduce new features +### 🐛 Fix a bug -- Expose CodeMirrorState, for @ref access +- Try to fix random crash at startup -### 🐛 Fix a bug +### 💥 Introduce breaking changes -- Don't use no-cors header +- Move Id from parameter to Setup, as it should never be changed -### 📝 Add or update documentation +### 🔊 Add or update logs -- Fix menu title in example project +- Add DebugLogs setup parameter to print debug logs From 7588cbb8019f44a3cda639a6dc1f1189bac2671d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20James?= Date: Thu, 8 Feb 2024 16:41:32 +0100 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=94=96=20Bump=20version=20to=200.3.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CodeMirror6/CodeMirror6.csproj | 4 ++-- Examples.BlazorServer/Examples.BlazorServer.csproj | 2 +- .../Examples.BlazorServerInteractive.csproj | 2 +- Examples.BlazorWasm/Examples.BlazorWasm.csproj | 2 +- Examples.Common/Examples.Common.csproj | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CodeMirror6/CodeMirror6.csproj b/CodeMirror6/CodeMirror6.csproj index 090503a8..8d81be76 100644 --- a/CodeMirror6/CodeMirror6.csproj +++ b/CodeMirror6/CodeMirror6.csproj @@ -9,7 +9,7 @@ GaelJ.BlazorCodeMirror6 true GaelJ.BlazorCodeMirror6 - 0.3.5 + 0.3.6 true snupkg true @@ -63,4 +63,4 @@ - + \ No newline at end of file diff --git a/Examples.BlazorServer/Examples.BlazorServer.csproj b/Examples.BlazorServer/Examples.BlazorServer.csproj index 349259de..4c2b7bd7 100644 --- a/Examples.BlazorServer/Examples.BlazorServer.csproj +++ b/Examples.BlazorServer/Examples.BlazorServer.csproj @@ -4,7 +4,7 @@ enable false enable - 0.3.5 + 0.3.6 diff --git a/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj b/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj index d5698e85..fc3f175a 100644 --- a/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj +++ b/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj @@ -4,7 +4,7 @@ enable enable false - 0.3.5 + 0.3.6 diff --git a/Examples.BlazorWasm/Examples.BlazorWasm.csproj b/Examples.BlazorWasm/Examples.BlazorWasm.csproj index f8dcd7ca..a0c8b8e9 100644 --- a/Examples.BlazorWasm/Examples.BlazorWasm.csproj +++ b/Examples.BlazorWasm/Examples.BlazorWasm.csproj @@ -4,7 +4,7 @@ enable enable false - 0.3.5 + 0.3.6 diff --git a/Examples.Common/Examples.Common.csproj b/Examples.Common/Examples.Common.csproj index c0728ced..1b964875 100644 --- a/Examples.Common/Examples.Common.csproj +++ b/Examples.Common/Examples.Common.csproj @@ -5,7 +5,7 @@ enable enable false - 0.3.5 + 0.3.6