David Strickland

Results 5 issues of David Strickland

Task GetAllContents(string owner, string name, string path); Will currently only work with subdirectories ie: `client.Repository.Content.GetAllContents("octokit", "octokit.net", "Octokit")` returns 18 items. However `client.Repository.Content.GetAllContents("octokit", "octokit.net", "")` Throws a ArgumentException("String cannot be empty",...

category: bug

Seeing a lot of these kinds of statements in the content "Here's a standard Bot Framework message payload that can be delivered to any channel and display text to the...

adaptive-cards/prod
Pri1

'AdaptiveCardRenderer' does not contain a definition for 'Resources' and no accessible extension method 'Resources' accepting a first argument of type 'AdaptiveCardRenderer' could be found (are you missing a using directive...

adaptive-cards/prod
Pri2

**Issue description** [https://github.com/dotnet/samples/tree/main/core/hosting#visual-studio-support](url) Says to use Visual Studio 2019. However all the projects target .NetCore 6 so they wont work in 2019. If you open the .sln in 2022 it...

Trying to get a sample jeckyll app running in docker. My Current DockerFile looks like ``` # Pull base image. FROM jekyll/jekyll WORKDIR /src copy . ./ RUN bundle install...