├── .DS_Store ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Program.cs ├── Project.cs ├── README.md ├── Tags.cs ├── azure-pipelines.yml ├── docs ├── dotnet-upforgrabs_small.gif ├── examples.gif ├── no-issues.png └── random-issue.png └── upforgrabs.csproj /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | nupkg 2 | obj 3 | bin 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/Program.cs -------------------------------------------------------------------------------- /Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/Project.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/README.md -------------------------------------------------------------------------------- /Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/Tags.cs -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/dotnet-upforgrabs_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/docs/dotnet-upforgrabs_small.gif -------------------------------------------------------------------------------- /docs/examples.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/docs/examples.gif -------------------------------------------------------------------------------- /docs/no-issues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/docs/no-issues.png -------------------------------------------------------------------------------- /docs/random-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/docs/random-issue.png -------------------------------------------------------------------------------- /upforgrabs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spboyer/dotnet-upforgrabs/HEAD/upforgrabs.csproj --------------------------------------------------------------------------------