Blazed.ExchangeRates.EUR 0.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global Blazed.ExchangeRates.EUR --version 0.0.1
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local Blazed.ExchangeRates.EUR --version 0.0.1
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Blazed.ExchangeRates.EUR&version=0.0.1
nuke :add-package Blazed.ExchangeRates.EUR --version 0.0.1

Currency Exchange rates to 1.00EUR

Currency Exchange Rates of the EUR.
Data is retrieved from the European Central Bank which updates at least once per 30mins.

The rates based to 1EUR can utilized by this class:

 public class CurrencyRate
        {
            public Currency TheCurrency;
            public decimal Rate;
        }

Sample on how to use this nuget pack:

using Blazed.ExchangeRates.EUR;

ExchangeRate ER = new ExchangeRate(new HttpClient());

   foreach(CurrencyRate rate in ER.CurrencyRates)
    {
        Console.WriteLine($"{rate.TheCurrency}, {rate.Rate}");
    }

The Currency enum has around 20-30 currencies which are listed by the ECB.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
0.0.2 123 6/5/2023
0.0.1 138 6/5/2023