diff --git a/.gitignore b/.gitignore index 0fe79fb..dfe1fe0 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ BenchmarkDotNet.Artifacts .idea local.settings.json .env +*.local *.suo *.sdf diff --git a/.netconfig b/.netconfig index b9b80fe..8b1e2cb 100644 --- a/.netconfig +++ b/.netconfig @@ -57,8 +57,8 @@ skip [file ".gitignore"] url = https://github.com/devlooped/oss/blob/main/.gitignore - sha = 3776526342afb3f57da7e80f2095e5fdca3c31c9 - etag = 11767f73556aa4c6c8bcc153b77ee8e8114f99fa3b885b0a7d66d082f91e77b3 + sha = a225b7a9f609f26bcc24e0d84f663387be251a7d + etag = 20a8b49d57024abbd85aac5b0020c30e5eb68e0384b2761e93727c8780c4a991 weak [file "Directory.Build.rsp"] url = https://github.com/devlooped/oss/blob/main/Directory.Build.rsp @@ -136,3 +136,13 @@ sha = 77e83f238196d2723640abef0c7b6f43994f9747 etag = fcb9759a96966df40dcd24906fd328ddec05953b7e747a6bb8d0d1e4c3865274 weak +[file "oss.cs"] + url = https://github.com/devlooped/oss/blob/main/oss.cs + sha = 9c2f8c729d7cd3dd052b5a09d12fb1f3926247e5 + etag = e195cacdb0c6ea7ca768514ec94f8595d008c7f5aae805b39beec330895045e3 + weak +[file "readme.tmp.md"] + url = https://github.com/devlooped/oss/blob/main/readme.tmp.md + sha = 2cc4ada8059b1e2e3f32089e67dab27a8ddeb7fb + etag = c7c0694bd13d2d7fdc8b0530c80d5cf032cb9fdaaa5e1f814e951e9e6489746a + weak diff --git a/oss.cs b/oss.cs new file mode 100644 index 0000000..4288b77 --- /dev/null +++ b/oss.cs @@ -0,0 +1,100 @@ +// First run: dnx runfile https://github.com/devlooped/oss/blob/main/oss.cs --yes --alias oss +// Subsequently: dnx runfile oss --yes +#:package Spectre.Console@* +#:package CliWrap@* + +using System; +using System.IO; +using System.Net.Http; +using System.Runtime.InteropServices; +using System.Threading.Tasks; +using CliWrap; +using Spectre.Console; + +string dotnet = Path.GetFullPath( + Path.Combine(RuntimeEnvironment.GetRuntimeDirectory(), "..", "..", "..", + RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? "dotnet.exe" : "dotnet")); + +AnsiConsole.Write(new FigletText("devlooped oss").Color(Color.Green)); +AnsiConsole.WriteLine(); + +var projectName = AnsiConsole.Prompt( + new TextPrompt("[green]Project name[/]:") + .PromptStyle("yellow") + .ValidationErrorMessage("[red]Project name cannot be empty[/]") + .Validate(v => !string.IsNullOrWhiteSpace(v))); + +var repoName = AnsiConsole.Prompt( + new TextPrompt("[green]Repo name[/]:") + .PromptStyle("yellow") + .DefaultValue(projectName)); + +var packageId = AnsiConsole.Prompt( + new TextPrompt("[green]Package ID[/]:") + .PromptStyle("yellow") + .DefaultValue($"Devlooped.{projectName}")); + +AnsiConsole.WriteLine(); +AnsiConsole.Write(new Rule("[yellow]Setting up OSS project[/]").RuleStyle("grey").LeftJustified()); +AnsiConsole.WriteLine(); + +await RunDotNet("file init https://github.com/devlooped/oss/blob/main/.netconfig", "Initializing dotnet file sync from devlooped/oss"); +await RunDotNet($"new classlib -n {projectName} -o src/{projectName} -f net10.0", $"Creating class library src/{projectName}"); +await RunDotNet($"new xunit -n Tests -o src/Tests -f net10.0", "Creating xUnit test project src/Tests"); +await RunDotNet($"add src/Tests/Tests.csproj reference src/{projectName}/{projectName}.csproj", $"Adding reference from Tests to {projectName}"); +await RunDotNet($"new solution -n {projectName}", $"Creating solution {projectName}.slnx"); +await RunDotNet($"sln {projectName}.slnx add src/{projectName}/{projectName}.csproj src/Tests/Tests.csproj", $"Adding projects to {projectName}.slnx"); + +await AnsiConsole.Status() + .Spinner(Spinner.Known.Dots) + .SpinnerStyle(Style.Parse("green")) + .StartAsync("Downloading readme.md template...", async ctx => + { + using var http = new HttpClient(); + var readmeContent = await http.GetStringAsync( + "https://raw.githubusercontent.com/devlooped/oss/main/readme.tmp.md"); + + readmeContent = readmeContent + .Replace("{{PROJECT_NAME}}", projectName) + .Replace("{{PACKAGE_ID}}", packageId) + .Replace("{{REPO_NAME}}", repoName); + + await File.WriteAllTextAsync("readme.md", readmeContent); + ctx.Status("Downloaded and processed readme.md"); + }); + +AnsiConsole.MarkupLine("[green]✓[/] Created [yellow]readme.md[/]"); + +await File.WriteAllTextAsync( + Path.Combine("src", projectName, "readme.md"), + $""" + [![EULA](https://img.shields.io/badge/EULA-OSMF-blue?labelColor=black&color=C9FF30)](osmfeula.txt) + [![OSS](https://img.shields.io/github/license/devlooped/oss.svg?color=blue)](license.txt) + [![GitHub](https://img.shields.io/badge/-source-181717.svg?logo=GitHub)](https://github.com/devlooped/{repoName}) + + + + + + + + + """); + +AnsiConsole.WriteLine(); +AnsiConsole.Write(new Rule("[green]Done![/]").RuleStyle("grey").LeftJustified()); +AnsiConsole.WriteLine(); +AnsiConsole.MarkupLine($"[bold]Project:[/] [yellow]{projectName}[/]"); +AnsiConsole.MarkupLine($"[bold]Repo:[/] [yellow]{repoName}[/]"); +AnsiConsole.MarkupLine($"[bold]Package ID:[/] [yellow]{packageId}[/]"); + +async Task RunDotNet(string command, string description) +{ + AnsiConsole.MarkupLine($"[grey]{Markup.Escape(description)}...[/]"); + await Cli.Wrap(dotnet) + .WithArguments(command) + .WithStandardOutputPipe(PipeTarget.ToStream(Console.OpenStandardOutput())) + .WithStandardErrorPipe(PipeTarget.ToStream(Console.OpenStandardError())) + .ExecuteAsync(); + AnsiConsole.MarkupLine($"[green]✓[/] {Markup.Escape(description)}"); +} \ No newline at end of file diff --git a/readme.md b/readme.md index fba7bb2..9a10b53 100644 --- a/readme.md +++ b/readme.md @@ -168,7 +168,6 @@ See [Program.cs](src/Sample/Program.cs) for a complete example. [![Jacob Foshee](https://avatars.githubusercontent.com/u/480334?v=4&s=39 "Jacob Foshee")](https://github.com/jfoshee) [![](https://avatars.githubusercontent.com/u/33566379?u=bf62e2b46435a267fa246a64537870fd2449410f&v=4&s=39 "")](https://github.com/Mrxx99) [![Eric Johnson](https://avatars.githubusercontent.com/u/26369281?u=41b560c2bc493149b32d384b960e0948c78767ab&v=4&s=39 "Eric Johnson")](https://github.com/eajhnsn1) -[![David JENNI](https://avatars.githubusercontent.com/u/3200210?v=4&s=39 "David JENNI")](https://github.com/davidjenni) [![Jonathan ](https://avatars.githubusercontent.com/u/5510103?u=98dcfbef3f32de629d30f1f418a095bf09e14891&v=4&s=39 "Jonathan ")](https://github.com/Jonathan-Hickey) [![Ken Bonny](https://avatars.githubusercontent.com/u/6417376?u=569af445b6f387917029ffb5129e9cf9f6f68421&v=4&s=39 "Ken Bonny")](https://github.com/KenBonny) [![Simon Cropp](https://avatars.githubusercontent.com/u/122666?v=4&s=39 "Simon Cropp")](https://github.com/SimonCropp) @@ -177,14 +176,13 @@ See [Program.cs](src/Sample/Program.cs) for a complete example. [![Vezel](https://avatars.githubusercontent.com/u/87844133?v=4&s=39 "Vezel")](https://github.com/vezel-dev) [![ChilliCream](https://avatars.githubusercontent.com/u/16239022?v=4&s=39 "ChilliCream")](https://github.com/ChilliCream) [![4OTC](https://avatars.githubusercontent.com/u/68428092?v=4&s=39 "4OTC")](https://github.com/4OTC) -[![Vincent Limo](https://avatars.githubusercontent.com/devlooped-user?s=39 "Vincent Limo")](https://github.com/v-limo) [![domischell](https://avatars.githubusercontent.com/u/66068846?u=0a5c5e2e7d90f15ea657bc660f175605935c5bea&v=4&s=39 "domischell")](https://github.com/DominicSchell) [![Adrian Alonso](https://avatars.githubusercontent.com/u/2027083?u=129cf516d99f5cb2fd0f4a0787a069f3446b7522&v=4&s=39 "Adrian Alonso")](https://github.com/adalon) -[![Michael Hagedorn](https://avatars.githubusercontent.com/u/61711586?u=8f653dfcb641e8c18cc5f78692ebc6bb3a0c92be&v=4&s=39 "Michael Hagedorn")](https://github.com/Eule02) -[![](https://avatars.githubusercontent.com/devlooped-user?s=39 "")](https://github.com/henkmartijn) [![torutek](https://avatars.githubusercontent.com/u/33917059?v=4&s=39 "torutek")](https://github.com/torutek) -[![mccaffers](https://avatars.githubusercontent.com/u/16667079?u=739e110e62a75870c981640447efa5eb2cb3bc8f&v=4&s=39 "mccaffers")](https://github.com/mccaffers) -[![Cleosia](https://avatars.githubusercontent.com/u/85127128?u=3c889baa39bbe3607998c931490bd67c6ed854f2&v=4&s=39 "Cleosia")](https://github.com/cleosia) +[![mccaffers](https://avatars.githubusercontent.com/u/16667079?u=110034edf51097a5ee82cb6a94ae5483568e3469&v=4&s=39 "mccaffers")](https://github.com/mccaffers) +[![Seika Logiciel](https://avatars.githubusercontent.com/u/2564602?v=4&s=39 "Seika Logiciel")](https://github.com/SeikaLogiciel) +[![Andrew Grant](https://avatars.githubusercontent.com/devlooped-user?s=39 "Andrew Grant")](https://github.com/wizardness) +[![Lars](https://avatars.githubusercontent.com/u/1727124?v=4&s=39 "Lars")](https://github.com/latonz) diff --git a/readme.tmp.md b/readme.tmp.md new file mode 100644 index 0000000..1bd8e2f --- /dev/null +++ b/readme.tmp.md @@ -0,0 +1,63 @@ +# {{PROJECT_NAME}} + +[![Version](https://img.shields.io/nuget/vpre/{{PACKAGE_ID}}.svg?color=royalblue)](https://www.nuget.org/packages/{{PACKAGE_ID}}) +[![Downloads](https://img.shields.io/nuget/dt/{{PACKAGE_ID}}.svg?color=darkmagenta)](https://www.nuget.org/packages/{{PACKAGE_ID}}) +[![EULA](https://img.shields.io/badge/EULA-OSMF-blue?labelColor=black&color=C9FF30)](https://github.com/devlooped/oss/blob/main/osmfeula.txt) +[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/devlooped/oss/blob/main/license.txt) + + +## Open Source Maintenance Fee + +To ensure the long-term sustainability of this project, users of this package who generate +revenue must pay an [Open Source Maintenance Fee](https://opensourcemaintenancefee.org). +While the source code is freely available under the terms of the [License](license.txt), +this package and other aspects of the project require [adherence to the Maintenance Fee](osmfeula.txt). + +To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/devlooped) at the proper +OSMF tier. A single fee covers all of [Devlooped packages](https://www.nuget.org/profiles/Devlooped). + + + +## Usage +*{{PROJECT_NAME}}* + +--- + +# Sponsors + + +[![Clarius Org](https://avatars.githubusercontent.com/u/71888636?v=4&s=39 "Clarius Org")](https://github.com/clarius) +[![MFB Technologies, Inc.](https://avatars.githubusercontent.com/u/87181630?v=4&s=39 "MFB Technologies, Inc.")](https://github.com/MFB-Technologies-Inc) +[![SandRock](https://avatars.githubusercontent.com/u/321868?u=99e50a714276c43ae820632f1da88cb71632ec97&v=4&s=39 "SandRock")](https://github.com/sandrock) +[![DRIVE.NET, Inc.](https://avatars.githubusercontent.com/u/15047123?v=4&s=39 "DRIVE.NET, Inc.")](https://github.com/drivenet) +[![Keith Pickford](https://avatars.githubusercontent.com/u/16598898?u=64416b80caf7092a885f60bb31612270bffc9598&v=4&s=39 "Keith Pickford")](https://github.com/Keflon) +[![Thomas Bolon](https://avatars.githubusercontent.com/u/127185?u=7f50babfc888675e37feb80851a4e9708f573386&v=4&s=39 "Thomas Bolon")](https://github.com/tbolon) +[![Kori Francis](https://avatars.githubusercontent.com/u/67574?u=3991fb983e1c399edf39aebc00a9f9cd425703bd&v=4&s=39 "Kori Francis")](https://github.com/kfrancis) +[![Uno Platform](https://avatars.githubusercontent.com/u/52228309?v=4&s=39 "Uno Platform")](https://github.com/unoplatform) +[![Reuben Swartz](https://avatars.githubusercontent.com/u/724704?u=2076fe336f9f6ad678009f1595cbea434b0c5a41&v=4&s=39 "Reuben Swartz")](https://github.com/rbnswartz) +[![Jacob Foshee](https://avatars.githubusercontent.com/u/480334?v=4&s=39 "Jacob Foshee")](https://github.com/jfoshee) +[![](https://avatars.githubusercontent.com/u/33566379?u=bf62e2b46435a267fa246a64537870fd2449410f&v=4&s=39 "")](https://github.com/Mrxx99) +[![Eric Johnson](https://avatars.githubusercontent.com/u/26369281?u=41b560c2bc493149b32d384b960e0948c78767ab&v=4&s=39 "Eric Johnson")](https://github.com/eajhnsn1) +[![Jonathan ](https://avatars.githubusercontent.com/u/5510103?u=98dcfbef3f32de629d30f1f418a095bf09e14891&v=4&s=39 "Jonathan ")](https://github.com/Jonathan-Hickey) +[![Ken Bonny](https://avatars.githubusercontent.com/u/6417376?u=569af445b6f387917029ffb5129e9cf9f6f68421&v=4&s=39 "Ken Bonny")](https://github.com/KenBonny) +[![Simon Cropp](https://avatars.githubusercontent.com/u/122666?v=4&s=39 "Simon Cropp")](https://github.com/SimonCropp) +[![agileworks-eu](https://avatars.githubusercontent.com/u/5989304?v=4&s=39 "agileworks-eu")](https://github.com/agileworks-eu) +[![Zheyu Shen](https://avatars.githubusercontent.com/u/4067473?v=4&s=39 "Zheyu Shen")](https://github.com/arsdragonfly) +[![Vezel](https://avatars.githubusercontent.com/u/87844133?v=4&s=39 "Vezel")](https://github.com/vezel-dev) +[![ChilliCream](https://avatars.githubusercontent.com/u/16239022?v=4&s=39 "ChilliCream")](https://github.com/ChilliCream) +[![4OTC](https://avatars.githubusercontent.com/u/68428092?v=4&s=39 "4OTC")](https://github.com/4OTC) +[![domischell](https://avatars.githubusercontent.com/u/66068846?u=0a5c5e2e7d90f15ea657bc660f175605935c5bea&v=4&s=39 "domischell")](https://github.com/DominicSchell) +[![Adrian Alonso](https://avatars.githubusercontent.com/u/2027083?u=129cf516d99f5cb2fd0f4a0787a069f3446b7522&v=4&s=39 "Adrian Alonso")](https://github.com/adalon) +[![torutek](https://avatars.githubusercontent.com/u/33917059?v=4&s=39 "torutek")](https://github.com/torutek) +[![mccaffers](https://avatars.githubusercontent.com/u/16667079?u=110034edf51097a5ee82cb6a94ae5483568e3469&v=4&s=39 "mccaffers")](https://github.com/mccaffers) +[![Seika Logiciel](https://avatars.githubusercontent.com/u/2564602?v=4&s=39 "Seika Logiciel")](https://github.com/SeikaLogiciel) +[![Andrew Grant](https://avatars.githubusercontent.com/devlooped-user?s=39 "Andrew Grant")](https://github.com/wizardness) +[![Lars](https://avatars.githubusercontent.com/u/1727124?v=4&s=39 "Lars")](https://github.com/latonz) + + + +[![Sponsor this project](https://avatars.githubusercontent.com/devlooped-sponsor?s=118 "Sponsor this project")](https://github.com/sponsors/devlooped) + +[Learn more about GitHub Sponsors](https://github.com/sponsors) + +