File tree Expand file tree Collapse file tree 2 files changed +48
-2
lines changed
Expand file tree Collapse file tree 2 files changed +48
-2
lines changed Original file line number Diff line number Diff line change 1+ name : dotnet package
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ubuntu-latest
9+ strategy :
10+ matrix :
11+ dotnet-version : ['3.0', '3.1.x', '5.0.x' ]
12+
13+ steps :
14+ - uses : actions/checkout@v2
15+ - name : Setup .NET Core SDK ${{ matrix.dotnet-version }}
16+ 17+ with :
18+ dotnet-version : ${{ matrix.dotnet-version }}
19+ - name : Install dependencies
20+ run : dotnet restore
21+ - name : Build
22+ run : dotnet build --configuration Release --no-restore
23+ - name : Test
24+ run : dotnet test --no-restore --verbosity normal
Original file line number Diff line number Diff line change 11# Global Data
22
3- - Counties
4- - Currencies (Fiat)
3+ - Countries
4+ - Currencies (Fiat and Cyrpto )
55- Banks
6+
7+
8+ ## Countries: ` Azihub.GlobalData.Base.Country `
9+ .NET built-in Country data also has many missing information such as an ENUM of strings to
10+ get ` ISO 3166-2 ` or ` ISO 3166-3 `
11+
12+ ## Currencies: ` Azihub.GlobalData.Base.Currency `
13+ This project aim to solve the missing data within .NET existing globalization, for example,
14+ number of decimal in currency is missing, or another example, the block of currency used for
15+ displaying 100 YEN of Japan.
16+
17+ Also list of Cryptocurrencies combined with Fiat currencies:
18+ - ` ICurrency.cs `
19+ - ` CurrencyCrypto.cs `
20+ - ` CurrencyFiat.cs `
21+
22+ ## Banks: ` Azihub.GlobalData.Base.Banks `
23+ List of banks by country, the website, IBAN support and variety of information
24+ Also combining list of Central banks
25+
26+ - ` Bank.cs `
27+ - ` CentralBank.cs `
You can’t perform that action at this time.
0 commit comments