From 82304a91ec44c81739830af5d63383d91042205a Mon Sep 17 00:00:00 2001 From: Gwenn-B <102662300+Gwenn-B@users.noreply.github.com> Date: Fri, 19 Jan 2024 11:09:33 +0100 Subject: [PATCH] .Net: CancelKernelEventArgs is marked with SKEXP0003 Experimental Attribute instead of SKEXP0004 (#4657) ### Motivation and Context Closes #4650 ### Description Replace [Experimental("SKEXP0003")] by [Experimental("SKEXP0004")] above CancelKernelEventArgs type, to follow [documentation](https://github.com/microsoft/semantic-kernel/blob/main/dotnet/docs/EXPERIMENTS.md) ### Contribution Checklist - [x] The code builds clean without any errors or warnings - [x] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [x] All unit tests pass, and I have added new tests where possible - [x] I didn't break anyone :smile: --- .../SemanticKernel.Abstractions/Events/CancelKernelEventArgs.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/src/SemanticKernel.Abstractions/Events/CancelKernelEventArgs.cs b/dotnet/src/SemanticKernel.Abstractions/Events/CancelKernelEventArgs.cs index 97636cd9e15c8..6063812664221 100644 --- a/dotnet/src/SemanticKernel.Abstractions/Events/CancelKernelEventArgs.cs +++ b/dotnet/src/SemanticKernel.Abstractions/Events/CancelKernelEventArgs.cs @@ -10,7 +10,7 @@ namespace Microsoft.SemanticKernel; /// Provides an for cancelable operations related /// to -based operations. /// -[Experimental("SKEXP0003")] +[Experimental("SKEXP0004")] public abstract class CancelKernelEventArgs : KernelEventArgs { ///