https://github.com/gaprogman/raffleidgenerator
A .NET Core global tool for generating a pseudo-random winner id - for raffle draws
https://github.com/gaprogman/raffleidgenerator
Last synced: about 1 year ago
JSON representation
A .NET Core global tool for generating a pseudo-random winner id - for raffle draws
- Host: GitHub
- URL: https://github.com/gaprogman/raffleidgenerator
- Owner: GaProgMan
- License: mit
- Created: 2019-01-18T20:41:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-19T19:45:21.000Z (almost 7 years ago)
- Last Synced: 2025-03-05T10:14:47.675Z (over 1 year ago)
- Language: C#
- Size: 7.81 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# RaffleIdGenerator
An incredibly simple repo which can be used to generate a pseudo-random number for picking out a winner in a raffle.
## Support This Project
If you have found this project helpful, either as a library that you use or as a learning tool, please consider buying me a coffee:
## Requirements
The following need to be installed before building this repo:
- .NET Core SDK vLTS
- C# 7.1
## Installing From Source
- `cd` into the root of the project
- `dotnet pack --configuration Release src/RaffleIdGenerator.csproj --output ../nuget/`
- repo will be packed into a NuGet package in the `nuget` directory
- `dotnet tool install --global raffleWinnerGen --add-source ./nuget/`
## Uninstalling
- `dotnet tool uninstall -g raffleWinnerGen`
