Skip to content

Mark ITemplateCache as experimental #790

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ csharp_prefer_system_threading_lock = true:suggestion
# IDE0078: Use pattern matching
dotnet_diagnostic.IDE0078.severity = silent

# FLUID001: Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
dotnet_diagnostic.FLUID001.severity = none

[*.{cs,vb}]
#### Naming styles ####

Expand Down
3 changes: 3 additions & 0 deletions Fluid/ITemplateCache.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
using System.Diagnostics.CodeAnalysis;

namespace Fluid;

/// <summary>
/// Interface for caching parsed templates in memory.
/// </summary>
[Experimental("FLUID001")]
public interface ITemplateCache
{
/// <summary>
Expand Down