├── .config └── dotnet-tools.json ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── Directory.Build.targets ├── FSharp.Data.LiteralProviders.sln ├── LICENSE ├── README.md ├── after.FSharp.Data.LiteralProviders.sln.targets ├── netfx.props ├── paket.dependencies ├── paket.lock ├── src ├── FSharp.Data.LiteralProviders.DesignTime │ ├── AssemblyInfo.fs │ ├── BuildDate.fs │ ├── Conditional.fs │ ├── Env.fs │ ├── Exec.fs │ ├── FSharp.Data.LiteralProviders.DesignTime.fsproj │ ├── Provider.fs │ ├── TextFile.fs │ ├── Value.fs │ └── paket.references └── FSharp.Data.LiteralProviders.Runtime │ ├── AssemblyInfo.fs │ ├── FSharp.Data.LiteralProviders.Runtime.fs │ ├── FSharp.Data.LiteralProviders.Runtime.fsproj │ ├── paket.references │ └── paket.template ├── tests ├── FSharp.Data.LiteralProviders.Tests │ ├── .env │ ├── BuildDate.fs │ ├── Conditional.fs │ ├── Env.fs │ ├── Exec.fs │ ├── FSharp.Data.LiteralProviders.Tests.fsproj │ ├── TextFile.fs │ ├── paket.references │ └── subdir │ │ ├── binFile.bin │ │ ├── boolean.txt │ │ ├── number.txt │ │ ├── textFile.txt │ │ ├── textFileWithBom.txt │ │ └── textFileWithoutBom.txt └── parentTextFile.txt └── version.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /FSharp.Data.LiteralProviders.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/FSharp.Data.LiteralProviders.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/README.md -------------------------------------------------------------------------------- /after.FSharp.Data.LiteralProviders.sln.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/after.FSharp.Data.LiteralProviders.sln.targets -------------------------------------------------------------------------------- /netfx.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/netfx.props -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/paket.lock -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/BuildDate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/BuildDate.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/Conditional.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/Conditional.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/Env.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/Env.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/Exec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/Exec.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/FSharp.Data.LiteralProviders.DesignTime.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/FSharp.Data.LiteralProviders.DesignTime.fsproj -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/Provider.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/Provider.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/TextFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/TextFile.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/Value.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/Value.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.DesignTime/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.DesignTime/paket.references -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.Runtime/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.Runtime/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.Runtime/FSharp.Data.LiteralProviders.Runtime.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.Runtime/FSharp.Data.LiteralProviders.Runtime.fs -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.Runtime/FSharp.Data.LiteralProviders.Runtime.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.Runtime/FSharp.Data.LiteralProviders.Runtime.fsproj -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.Runtime/paket.references: -------------------------------------------------------------------------------- 1 | FSharp.Core -------------------------------------------------------------------------------- /src/FSharp.Data.LiteralProviders.Runtime/paket.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/src/FSharp.Data.LiteralProviders.Runtime/paket.template -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/.env -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/BuildDate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/BuildDate.fs -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/Conditional.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/Conditional.fs -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/Env.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/Env.fs -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/Exec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/Exec.fs -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/FSharp.Data.LiteralProviders.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/FSharp.Data.LiteralProviders.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/TextFile.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/TextFile.fs -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/paket.references: -------------------------------------------------------------------------------- 1 | group Test 2 | Unquote 3 | NUnit 4 | FSharp.Core -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/subdir/binFile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/subdir/binFile.bin -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/subdir/boolean.txt: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/subdir/number.txt: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/subdir/textFile.txt: -------------------------------------------------------------------------------- 1 | This is some 2 | text content. -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/subdir/textFileWithBom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/subdir/textFileWithBom.txt -------------------------------------------------------------------------------- /tests/FSharp.Data.LiteralProviders.Tests/subdir/textFileWithoutBom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/tests/FSharp.Data.LiteralProviders.Tests/subdir/textFileWithoutBom.txt -------------------------------------------------------------------------------- /tests/parentTextFile.txt: -------------------------------------------------------------------------------- 1 | This is some 2 | text content. -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tarmil/FSharp.Data.LiteralProviders/HEAD/version.json --------------------------------------------------------------------------------