├── .config └── dotnet-tools.json ├── .github ├── dependabot.yml └── workflows │ ├── docs.yml │ └── pr.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── F# Compiler Guide.sln ├── FSharp.Compiler.Service └── FSharp.Compiler.Service.fsproj ├── LICENSE ├── README.md └── dummyVersion.txt /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /F# Compiler Guide.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/F# Compiler Guide.sln -------------------------------------------------------------------------------- /FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsharp/fsharp-compiler-docs/HEAD/README.md -------------------------------------------------------------------------------- /dummyVersion.txt: -------------------------------------------------------------------------------- 1 | 1 2 | --------------------------------------------------------------------------------