DotNetEnv 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package DotNetEnv --version 1.1.0
NuGet\Install-Package DotNetEnv -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DotNetEnv" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotNetEnv --version 1.1.0
#r "nuget: DotNetEnv, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DotNetEnv as a Cake Addin
#addin nuget:?package=DotNetEnv&version=1.1.0

// Install DotNetEnv as a Cake Tool
#tool nuget:?package=DotNetEnv&version=1.1.0

Windows build status License: MIT NuGet version

dotnet-env

A .NET library to load environment variables from .env files. Supports .NET Core and .NET Framework

Installation

Available on NuGet

Visual Studio:

PM> Install-Package DotNetEnv

.NET Core CLI:

dotnet add package DotNetEnv

Usage

Load env file

Will automatically look for a .env file in the current directory

DotNetEnv.Env.Load();

You can also specify the path to the .env file

DotNetEnv.Env.Load("./path/to/.env");

The variables in the .env can then be accessed through the System.Environment class

System.Environment.GetEnvironmentVariable("IP")

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section.

License

This project is licensed under the MIT license. See the LICENSE file for more info.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (21)

Showing the top 5 NuGet packages that depend on DotNetEnv:

Package Downloads
hexasync.infrastructure.dotnetenv

Package Description

Corgibytes.Freshli.Lib

Core library for collecting historical metrics about a project's dependencies

CatConsult.EnvConfigurationProvider

A .NET Configuration Provider that offers a fluent API for loading and transforming environment variables from the OS and .env files

CatConsult.Extensions.EnvFileConfigurationProvider

Package Description

Rave.NET

Flutterwave RAVE Payment API Library for .NET.

GitHub repositories (7)

Showing the top 5 popular GitHub repositories that depend on DotNetEnv:

Repository Stars
mehdihadeli/food-delivery-microservices
🍔 A practical food delivery microservices, built with .Net 7, MassTransit, Domain-Driven Design, CQRS, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
Azure/data-api-builder
Data API builder provides modern REST and GraphQL endpoints to your Azure Databases and on-prem stores.
spark-dotnet/framework
Build production ready, full-stack web applications fast without sweating the small stuff.
mehdihadeli/food-delivery-modular-monolith
🌭 A practical food delivery modular monolith, built with .Net 7, Domain-Driven Design, CQRS, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
streetwriters/notesnook-sync-server
Sync server for Notesnook (not yet self-hostable)
Version Downloads Last updated
3.0.0 190,468 1/6/2024
2.5.0 1,244,623 2/3/2023
2.3.0 1,477,909 1/15/2022
2.2.0 391,625 9/18/2021
2.1.1 660,569 3/2/2021
2.1.0 10,027 2/22/2021
2.0.0 140,017 12/16/2020
1.4.0 803,896 12/9/2019
1.3.1 769 12/5/2019
1.2.0 468,170 4/5/2018
1.1.0 10,292 11/2/2017
1.0.1 4,110 6/18/2017
1.0.0 6,601 7/7/2016

Features and Enhancements
* Handles presence of `=` in value in env file
E.g.
```bash
CONNECTION=user=test;password=secret
```

Thanks
@lazytesting