Skip to content

Commit

Permalink
[.Net] Remove Workflow class && bump version to 0.0.14 (#2675)
Browse files Browse the repository at this point in the history
* remove workflow class

* bump version to 0.0.14
  • Loading branch information
LittleLittleCloud committed May 13, 2024
1 parent d50f654 commit 5f7c34a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
2 changes: 1 addition & 1 deletion dotnet/eng/MetaInfo.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>0.0.13</VersionPrefix>
<VersionPrefix>0.0.14</VersionPrefix>
<Authors>AutoGen</Authors>
<PackageProjectUrl>https://microsoft.github.io/autogen-for-net/</PackageProjectUrl>
<RepositoryUrl>https://github.com/microsoft/autogen</RepositoryUrl>
Expand Down
13 changes: 0 additions & 13 deletions dotnet/src/AutoGen.Core/GroupChat/Graph.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,6 @@

namespace AutoGen.Core;

/// <summary>
/// Obsolete: please use <see cref="Graph"/>
/// </summary>
[Obsolete("please use Graph")]
public class Workflow : Graph
{
[Obsolete("please use Graph")]
public Workflow(IEnumerable<Transition> transitions)
: base(transitions)
{
}
}

public class Graph
{
private readonly List<Transition> transitions = new List<Transition>();
Expand Down

0 comments on commit 5f7c34a

Please sign in to comment.