Skip to content

Commit 6b4e23a

Browse files
LittleLittleCloudvictordibia
authored andcommitted
[.Net] Remove Workflow class && bump version to 0.0.14 (#2675)
* remove workflow class * bump version to 0.0.14
1 parent 40411d7 commit 6b4e23a

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

dotnet/eng/MetaInfo.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<VersionPrefix>0.0.13</VersionPrefix>
4+
<VersionPrefix>0.0.14</VersionPrefix>
55
<Authors>AutoGen</Authors>
66
<PackageProjectUrl>https://microsoft.github.io/autogen-for-net/</PackageProjectUrl>
77
<RepositoryUrl>https://github.com/microsoft/autogen</RepositoryUrl>

dotnet/src/AutoGen.Core/GroupChat/Graph.cs

-13
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,6 @@
88

99
namespace AutoGen.Core;
1010

11-
/// <summary>
12-
/// Obsolete: please use <see cref="Graph"/>
13-
/// </summary>
14-
[Obsolete("please use Graph")]
15-
public class Workflow : Graph
16-
{
17-
[Obsolete("please use Graph")]
18-
public Workflow(IEnumerable<Transition> transitions)
19-
: base(transitions)
20-
{
21-
}
22-
}
23-
2411
public class Graph
2512
{
2613
private readonly List<Transition> transitions = new List<Transition>();

0 commit comments

Comments
 (0)