Skip to content

Commit 1e9a1b9

Browse files
authored
Mark ITemplateCache as experimental (#790)
1 parent f9d57f0 commit 1e9a1b9

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.editorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,9 @@ csharp_prefer_system_threading_lock = true:suggestion
9292
# IDE0078: Use pattern matching
9393
dotnet_diagnostic.IDE0078.severity = silent
9494

95+
# FLUID001: Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
96+
dotnet_diagnostic.FLUID001.severity = none
97+
9598
[*.{cs,vb}]
9699
#### Naming styles ####
97100

Fluid/ITemplateCache.cs

+3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
using System.Diagnostics.CodeAnalysis;
2+
13
namespace Fluid;
24

35
/// <summary>
46
/// Interface for caching parsed templates in memory.
57
/// </summary>
8+
[Experimental("FLUID001")]
69
public interface ITemplateCache
710
{
811
/// <summary>

0 commit comments

Comments
 (0)