File tree 2 files changed +4
-10
lines changed
2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 1
1
# AutoGen for .NET
2
2
3
3
Thre are two sets of packages here:
4
- Autogen .\* the older packages derived from Autogen 0.2 for .NET - these will gradually be deprecated and ported into the new packages
4
+ AutoGen .\* the older packages derived from AutoGen 0.2 for .NET - these will gradually be deprecated and ported into the new packages
5
5
Microsoft.AutoGen.* the new packages for .NET that use the event-driven model - These APIs are not yet stable and are subject to change.
6
6
7
7
To get started with the new packages, please see the [ samples] ( ./samples/ ) and in particular the [ Hello] ( ./samples/Hello ) sample.
8
8
9
- The remaining content is for the older Autogen. * packages.
9
+ You can install both new and old packages from the following feeds:
10
10
11
11
[ ![ dotnet-ci] ( https://github.com/microsoft/autogen/actions/workflows/dotnet-build.yml/badge.svg )] ( https://github.com/microsoft/autogen/actions/workflows/dotnet-build.yml )
12
12
[ ![ NuGet version] ( https://badge.fury.io/nu/AutoGen.Core.svg )] ( https://badge.fury.io/nu/AutoGen.Core )
13
13
14
14
> [ !NOTE]
15
15
> Nightly build is available at:
16
16
>
17
- > - ![ Static Badge] ( https://img.shields.io/badge/public-blue?style=flat ) ![ Static Badge] ( https://img.shields.io/badge/nightly-yellow?style=flat ) ![ Static Badge] ( https://img.shields.io/badge/github-grey?style=flat ) : < https://nuget.pkg.github.com/microsoft/index.json >
18
- > - ![ Static Badge] ( https://img.shields.io/badge/public-blue?style=flat ) ![ Static Badge] ( https://img.shields.io/badge/nightly-yellow?style=flat ) ![ Static Badge] ( https://img.shields.io/badge/myget-grey?style=flat ) : < https://www.myget.org/F/agentchat/api/v3/index.json >
19
- > - ![ Static Badge] ( https://img.shields.io/badge/internal-blue?style=flat ) ![ Static Badge] ( https://img.shields.io/badge/nightly-yellow?style=flat ) ![ Static Badge] ( https://img.shields.io/badge/azure_devops-grey?style=flat ) : < https://devdiv.pkgs.visualstudio.com/DevDiv/_packaging/AutoGen/nuget/v3/index.json >
17
+ > - [ ![ Static Badge] ( https://img.shields.io/badge/azure_devops-grey?style=flat )] ( https://dev.azure.com/AGPublish/AGPublic/_artifacts/feed/AutoGen-Nightly ) : < https://pkgs.dev.azure.com/AGPublish/AGPublic/_packaging/AutoGen-Nightly/nuget/v3/index.json >
20
18
21
19
Firstly, following the [ installation guide] ( ./website/articles/Installation.md ) to install AutoGen packages.
22
20
Original file line number Diff line number Diff line change @@ -32,18 +32,14 @@ dotnet add package AUTOGEN_PACKAGES
32
32
33
33
### Consume nightly build
34
34
To consume nightly build, you can add one of the following feeds to your ` NuGet.config ` or global nuget config:
35
- - ![ Static Badge] ( https://img.shields.io/badge/public-blue?style=flat ) ![ Static Badge] ( https://img.shields.io/badge/github-grey?style=flat ) : https://nuget.pkg.github.com/microsoft/index.json
36
- - ![ Static Badge] ( https://img.shields.io/badge/public-blue?style=flat ) ![ Static Badge] ( https://img.shields.io/badge/myget-grey?style=flat ) : https://www.myget.org/F/agentchat/api/v3/index.json
37
- - ![ Static Badge] ( https://img.shields.io/badge/internal-blue?style=flat ) ![ Static Badge] ( https://img.shields.io/badge/azure_devops-grey?style=flat ) : https://devdiv.pkgs.visualstudio.com/DevDiv/_packaging/AutoGen/nuget/v3/index.json
35
+ > - [ ![ Static Badge] ( https://img.shields.io/badge/azure_devops-grey?style=flat )] ( https://dev.azure.com/AGPublish/AGPublic/_artifacts/feed/AutoGen-Nightly ) : < https://pkgs.dev.azure.com/AGPublish/AGPublic/_packaging/AutoGen-Nightly/nuget/v3/index.json >
38
36
39
37
To add a local ` NuGet.config ` , create a file named ` NuGet.config ` in the root of your project and add the following content:
40
38
``` xml
41
39
<?xml version =" 1.0" encoding =" utf-8" ?>
42
40
<configuration >
43
41
<packageSources >
44
42
<clear />
45
- <!-- dotnet-tools contains Microsoft.DotNet.Interactive.VisualStudio package, which is used by AutoGen.DotnetInteractive -->
46
- <add key =" dotnet-tools" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
47
43
<add key =" AutoGen" value =" $(FEED_URL)" /> <!-- replace $(FEED_URL) with the feed url -->
48
44
<!-- other feeds -->
49
45
</packageSources >
You can’t perform that action at this time.
0 commit comments