Last active
November 22, 2023 03:31
-
-
Save gistlyn/c3bb227c31dd930ed1b274ff327f3eff to your computer and use it in GitHub Desktop.
C# .NET 6 Console App
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<TargetFramework>net8.0</TargetFramework> | |
<Nullable>enable</Nullable> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<OutputType>Exe</OutputType> | |
<NoWarn>1591</NoWarn> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="ServiceStack.Common" Version="8.*" /> | |
</ItemGroup> | |
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Linq; | |
using ServiceStack; | |
using ServiceStack.Text; | |
var orgName = "dotnet"; | |
var orgRepos = $"https://api.github.com/orgs/{orgName}/repos" | |
.GetJsonFromUrl(c => c.With(x => x.UserAgent = "gist.cafe")) | |
.FromJson<GithubRepo[]>() | |
.OrderByDescending(x => x.Watchers); | |
$"Top 3 '{orgName}' Github Repos:".Print(); | |
orgRepos.Take(3).ToList().PrintDump(); | |
$"\nTop 10 {orgName} Github Repos:\n".Print(); | |
orgRepos.Take(10).Map(x => new { | |
x.Name, x.Language, x.Watchers, x.Forks }).PrintDumpTable(); | |
Inspect.vars(new { orgRepos }); | |
public class GithubRepo | |
{ | |
public string? Name { get; set; } | |
public string? Description { get; set; } | |
public string? Url { get; set; } | |
public string? Homepage { get; set; } | |
public string? Language { get; set; } | |
public int Watchers { get; set; } | |
public int Forks { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment