├── .gitignore ├── DotEnvGenerator.sln ├── Example ├── Example.csproj ├── Program.cs └── example.env ├── Generator ├── DotEnvGenerator.csproj ├── DotEnvSourceGenerator.cs ├── EnvEntry.cs ├── StringExtensions.cs ├── TypeExtensions.cs ├── build │ └── DotEnvGenerator.props └── buildMultiTargeting │ └── DotEnvGenerator.props ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /DotEnvGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/DotEnvGenerator.sln -------------------------------------------------------------------------------- /Example/Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Example/Example.csproj -------------------------------------------------------------------------------- /Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Example/Program.cs -------------------------------------------------------------------------------- /Example/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Example/example.env -------------------------------------------------------------------------------- /Generator/DotEnvGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Generator/DotEnvGenerator.csproj -------------------------------------------------------------------------------- /Generator/DotEnvSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Generator/DotEnvSourceGenerator.cs -------------------------------------------------------------------------------- /Generator/EnvEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Generator/EnvEntry.cs -------------------------------------------------------------------------------- /Generator/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Generator/StringExtensions.cs -------------------------------------------------------------------------------- /Generator/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Generator/TypeExtensions.cs -------------------------------------------------------------------------------- /Generator/build/DotEnvGenerator.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Generator/build/DotEnvGenerator.props -------------------------------------------------------------------------------- /Generator/buildMultiTargeting/DotEnvGenerator.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/Generator/buildMultiTargeting/DotEnvGenerator.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betwixt-labs/dot-env-generator/HEAD/README.md --------------------------------------------------------------------------------