Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 20 additions & 0 deletions UsingMyGet.md
Original file line number Diff line number Diff line change
@@ -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)