gitextract_llx4ryxm/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── config.yml │ ├── actions/ │ │ └── dotnet/ │ │ └── action.yml │ ├── copilot-instructions.md │ ├── dependabot.yml │ ├── dotnet.json │ ├── release.yml │ └── workflows/ │ ├── build.yml │ ├── changelog.config │ ├── changelog.yml │ ├── combine-prs.yml │ ├── demos.yml │ ├── dotnet-env.yml │ ├── dotnet-file.yml │ ├── includes.yml │ ├── pages.yml │ ├── publish.yml │ └── triage.yml ├── .gitignore ├── .netconfig ├── Directory.Build.rsp ├── Gemfile ├── SmallSharp.slnx ├── _config.yml ├── assets/ │ └── css/ │ └── style.scss ├── changelog.md ├── license.txt ├── osmfeula.txt ├── readme.md └── src/ ├── Demo/ │ ├── .gitignore │ ├── Demo.csproj │ ├── Hello.cs │ ├── Humanizer.cs │ ├── Mcp.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── global.json │ └── nuget.config ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.props ├── Directory.targets ├── SmallSharp/ │ ├── ConsoleEncodingInitializer.cs │ ├── EmitTargets.cs │ ├── Sdk.Empty.props │ ├── Sdk.props │ ├── Sdk.targets │ ├── SmallSharp.Before.props │ ├── SmallSharp.Version.props │ ├── SmallSharp.csproj │ ├── SmallSharp.props │ ├── SmallSharp.targets │ ├── TaskItemFactory.cs │ └── readme.md ├── _._ ├── demo.ps1 └── nuget.config