Skip to content

Commit 9a26bd7

Browse files
.NET update nightly build feed to use AGPublic (#4284)
* update nightly build feed * Update README.md --------- Co-authored-by: Ryan Sweet <[email protected]>
1 parent 072a1c1 commit 9a26bd7

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

dotnet/README.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
# AutoGen for .NET
22

33
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
55
Microsoft.AutoGen.* the new packages for .NET that use the event-driven model - These APIs are not yet stable and are subject to change.
66

77
To get started with the new packages, please see the [samples](./samples/) and in particular the [Hello](./samples/Hello) sample.
88

9-
The remaining content is for the older Autogen.* packages.
9+
You can install both new and old packages from the following feeds:
1010

1111
[![dotnet-ci](https://github.com/microsoft/autogen/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/microsoft/autogen/actions/workflows/dotnet-build.yml)
1212
[![NuGet version](https://badge.fury.io/nu/AutoGen.Core.svg)](https://badge.fury.io/nu/AutoGen.Core)
1313

1414
> [!NOTE]
1515
> Nightly build is available at:
1616
>
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>
2018
2119
Firstly, following the [installation guide](./website/articles/Installation.md) to install AutoGen packages.
2220

dotnet/website/articles/Installation.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,14 @@ dotnet add package AUTOGEN_PACKAGES
3232

3333
### Consume nightly build
3434
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>
3836
3937
To add a local `NuGet.config`, create a file named `NuGet.config` in the root of your project and add the following content:
4038
```xml
4139
<?xml version="1.0" encoding="utf-8"?>
4240
<configuration>
4341
<packageSources>
4442
<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" />
4743
<add key="AutoGen" value="$(FEED_URL)" /> <!-- replace $(FEED_URL) with the feed url -->
4844
<!-- other feeds -->
4945
</packageSources>

0 commit comments

Comments
 (0)