mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-03 11:20:35 +00:00
[.Net] Remove Workflow class && bump version to 0.0.14 (#2675)
* remove workflow class * bump version to 0.0.14
This commit is contained in:
parent
d50f654748
commit
5f7c34ac72
@ -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>
|
||||
|
||||
@ -8,19 +8,6 @@ using System.Threading.Tasks;
|
||||
|
||||
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>();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user