Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phamhongphuc1999/csharp-practice
:butterfly:Simple C# package:crocodile:
https://github.com/phamhongphuc1999/csharp-practice
algorithms bignumber dotnet dotnet-commands rpc-client
Last synced: about 2 months ago
JSON representation
:butterfly:Simple C# package:crocodile:
- Host: GitHub
- URL: https://github.com/phamhongphuc1999/csharp-practice
- Owner: phamhongphuc1999
- Created: 2020-09-28T10:24:26.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-08-03T14:35:50.000Z (over 1 year ago)
- Last Synced: 2024-11-07T07:14:22.769Z (about 2 months ago)
- Topics: algorithms, bignumber, dotnet, dotnet-commands, rpc-client
- Language: C#
- Homepage:
- Size: 44.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
My C# Practice| ID | Solution | Note |
| :-: | :-------------------------- | :------------------- |
| 1 | [MyPractice](./MyPractice/) | MY practice solution |document [here](./documents/)
### Run
- To build
```shell
dotnet build
```- To run
```shell
dotnet run --project ./path-to-project
```- To test
```shell
dotnet test
```### Format
- The project use `pre-commit` and python environment to install some useful package that check your code before pushing code in github. If you want to try this solution, you must create python virtual environment firstly
```shell
python -m venv venv
```- After that, activate the environment and install pre-commit package
```shell
source ./venv/activate/bin
pip3 install -r requirements.txt
```- Install pre-commit to github hook
```shell
pre-commit install
```- Try to run
```shell
pre-commit run --all-file
```