diff --git a/README.md b/README.md index e53664b617..8909923348 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ A rich set of samples are available at [BotBuilder-Samples](https://github.com/m | Microsoft.Bot.Connector | [![BotBuilder Badge](https://buildstats.info/nuget/Microsoft.Bot.Connector)](https://www.nuget.org/packages/Microsoft.Bot.Connector/) | [![BotBuilder Badge](https://buildstats.info/myget/botbuilder/botbuilder-v4-dotnet-daily/Microsoft.Bot.Connector?includePreReleases=true)](https://botbuilder.myget.org/feed/botbuilder-v4-dotnet-daily/package/nuget/Microsoft.Bot.Connector) | | Microsoft.Bot.Schema | [![BotBuilder Badge](https://buildstats.info/nuget/Microsoft.Bot.Schema)](https://www.nuget.org/packages/Microsoft.Bot.Schema/) | [![BotBuilder Badge](https://buildstats.info/myget/botbuilder/botbuilder-v4-dotnet-daily/Microsoft.Bot.Schema?includePreReleases=true)](https://botbuilder.myget.org/feed/botbuilder-v4-dotnet-daily/package/nuget/Microsoft.Bot.Schema) | +To use the daily builds, which are published to MyGet, please follow the instructions [here](UsingMyGet.md). + ## Contributing This project welcomes contributions and suggestions. Most contributions require you to agree to a diff --git a/UsingMyGet.md b/UsingMyGet.md new file mode 100644 index 0000000000..3edf18905a --- /dev/null +++ b/UsingMyGet.md @@ -0,0 +1,20 @@ +# Using MyGet to consume daily builds +The BotBuilder SDK daily build feed is found on [MyGet](https://botbuilder.myget.org). For .Net development, use the [dotnet daily build feed](https://botbuilder.myget.org/gallery/botbuilder-v4-dotnet-daily). + +To consume the latest daily builds of the Bot Framework, you'll need to register MyGet as a package source in Visual Studio. + +# Register Myget in Visual Studio +You can register a MyGet feed the same way you register any NuGet package source by using the **Package Manager Settings** dialog. You can find it under Tools > Library Package Manager > Package Manager Settings in the Visual Studio menu. + +![image](https://user-images.githubusercontent.com/11055362/45443270-066e7380-b679-11e8-9279-725fa9690d35.png) + +In the Options dialog, choose **Package Sources** then click the green + button. This will create a new package source entry. Fill in the **Name** field, and add the [v4 feed url](https://botbuilder.myget.org/gallery/botbuilder-v4-dotnet-daily) as the **Source**: + +      https://botbuilder.myget.org/F/botbuilder-v4-dotnet-daily/api/v3/index.json + +![image](https://user-images.githubusercontent.com/11055362/45443422-78df5380-b679-11e8-947b-4e9530379ca8.png) + +Lastly, click **Update** then **OK** + +This package source will now be available when managing packages for a solution or project: +![image](https://user-images.githubusercontent.com/11055362/45443611-0ae75c00-b67a-11e8-8767-29a1a6ac3485.png)