├── .gitattributes ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .paket ├── paket.bootstrapper.exe └── paket.targets ├── .travis.yml ├── LICENSE.md ├── README.md ├── RELEASE_NOTES.md ├── appveyor.yml ├── docs ├── content │ ├── index.fsx │ └── tutorial.fsx ├── files │ └── img │ │ ├── logo-template.pdn │ │ └── logo.png └── tools │ ├── generate.fsx │ └── templates │ └── template.cshtml ├── fstoml.sln ├── paket.dependencies ├── paket.lock ├── sample ├── lib │ ├── sample.fs │ ├── sample.fsproj │ ├── sample.fstoml │ └── sample2.fs └── script │ ├── sample.fstoml │ └── script.fsx ├── spec ├── spec-0.0.2.toml └── spec-0.0.3.toml ├── src ├── FsToml.MsBuild │ ├── App.config │ ├── AssemblyInfo.fs │ ├── FsToml.MsBuild.fs │ ├── FsToml.MsBuild.fsproj │ ├── Package.fs │ ├── Transform.fs │ └── paket.references ├── FsToml.Sdk │ └── FsToml.Sdk.targets └── FsToml │ ├── App.config │ ├── AssemblyInfo.fs │ ├── Conditions.fs │ ├── Constants.fs │ ├── FsToml.fsproj │ ├── Parser.fs │ ├── Prelude.fs │ ├── ProjectSystem.fs │ ├── Target.fs │ └── paket.references └── test └── FsToml.Tests ├── App.config ├── FsToml.Tests.fsproj ├── Main.fs ├── Tests.fs └── paket.references /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/paket.bootstrapper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/.paket/paket.bootstrapper.exe -------------------------------------------------------------------------------- /.paket/paket.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/.paket/paket.targets -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/content/index.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/docs/content/index.fsx -------------------------------------------------------------------------------- /docs/content/tutorial.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/docs/content/tutorial.fsx -------------------------------------------------------------------------------- /docs/files/img/logo-template.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/docs/files/img/logo-template.pdn -------------------------------------------------------------------------------- /docs/files/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/docs/files/img/logo.png -------------------------------------------------------------------------------- /docs/tools/generate.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/docs/tools/generate.fsx -------------------------------------------------------------------------------- /docs/tools/templates/template.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/docs/tools/templates/template.cshtml -------------------------------------------------------------------------------- /fstoml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/fstoml.sln -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/paket.lock -------------------------------------------------------------------------------- /sample/lib/sample.fs: -------------------------------------------------------------------------------- 1 | module Sample 2 | 3 | let x = 1 -------------------------------------------------------------------------------- /sample/lib/sample.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/sample/lib/sample.fsproj -------------------------------------------------------------------------------- /sample/lib/sample.fstoml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/sample/lib/sample.fstoml -------------------------------------------------------------------------------- /sample/lib/sample2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/sample/lib/sample2.fs -------------------------------------------------------------------------------- /sample/script/sample.fstoml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/sample/script/sample.fstoml -------------------------------------------------------------------------------- /sample/script/script.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/sample/script/script.fsx -------------------------------------------------------------------------------- /spec/spec-0.0.2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/spec/spec-0.0.2.toml -------------------------------------------------------------------------------- /spec/spec-0.0.3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/spec/spec-0.0.3.toml -------------------------------------------------------------------------------- /src/FsToml.MsBuild/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml.MsBuild/App.config -------------------------------------------------------------------------------- /src/FsToml.MsBuild/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml.MsBuild/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FsToml.MsBuild/FsToml.MsBuild.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml.MsBuild/FsToml.MsBuild.fs -------------------------------------------------------------------------------- /src/FsToml.MsBuild/FsToml.MsBuild.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml.MsBuild/FsToml.MsBuild.fsproj -------------------------------------------------------------------------------- /src/FsToml.MsBuild/Package.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml.MsBuild/Package.fs -------------------------------------------------------------------------------- /src/FsToml.MsBuild/Transform.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml.MsBuild/Transform.fs -------------------------------------------------------------------------------- /src/FsToml.MsBuild/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml.MsBuild/paket.references -------------------------------------------------------------------------------- /src/FsToml.Sdk/FsToml.Sdk.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml.Sdk/FsToml.Sdk.targets -------------------------------------------------------------------------------- /src/FsToml/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml/App.config -------------------------------------------------------------------------------- /src/FsToml/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FsToml/Conditions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml/Conditions.fs -------------------------------------------------------------------------------- /src/FsToml/Constants.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml/Constants.fs -------------------------------------------------------------------------------- /src/FsToml/FsToml.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml/FsToml.fsproj -------------------------------------------------------------------------------- /src/FsToml/Parser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml/Parser.fs -------------------------------------------------------------------------------- /src/FsToml/Prelude.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml/Prelude.fs -------------------------------------------------------------------------------- /src/FsToml/ProjectSystem.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml/ProjectSystem.fs -------------------------------------------------------------------------------- /src/FsToml/Target.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/src/FsToml/Target.fs -------------------------------------------------------------------------------- /src/FsToml/paket.references: -------------------------------------------------------------------------------- 1 | FSharp.Core 2 | Nett -------------------------------------------------------------------------------- /test/FsToml.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/test/FsToml.Tests/App.config -------------------------------------------------------------------------------- /test/FsToml.Tests/FsToml.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/test/FsToml.Tests/FsToml.Tests.fsproj -------------------------------------------------------------------------------- /test/FsToml.Tests/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/test/FsToml.Tests/Main.fs -------------------------------------------------------------------------------- /test/FsToml.Tests/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionide/fstoml/HEAD/test/FsToml.Tests/Tests.fs -------------------------------------------------------------------------------- /test/FsToml.Tests/paket.references: -------------------------------------------------------------------------------- 1 | FSharp.Core 2 | 3 | group Test 4 | Expecto --------------------------------------------------------------------------------