Skip to content

Commit

Permalink
.Net: CancelKernelEventArgs is marked with SKEXP0003 Experimental Att…
Browse files Browse the repository at this point in the history
…ribute 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 😄
  • Loading branch information
Gwenn-B authored Jan 19, 2024
1 parent b2bbd41 commit 82304a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Microsoft.SemanticKernel;
/// Provides an <see cref="EventArgs"/> for cancelable operations related
/// to <see cref="Kernel"/>-based operations.
/// </summary>
[Experimental("SKEXP0003")]
[Experimental("SKEXP0004")]
public abstract class CancelKernelEventArgs : KernelEventArgs
{
/// <summary>
Expand Down

0 comments on commit 82304a9

Please sign in to comment.