diff --git a/docs/fsharp/language-reference/compiler-options.md b/docs/fsharp/language-reference/compiler-options.md index 10960742abe17..acd1a58fe968e 100644 --- a/docs/fsharp/language-reference/compiler-options.md +++ b/docs/fsharp/language-reference/compiler-options.md @@ -53,6 +53,7 @@ The following table shows compiler options listed alphabetically. Some of the F# |**--out:<output-filename>**

**-o:<output-filename>**|Specifies the name of the compiled assembly or module.

This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/out (C# Compiler Options)](https://msdn.microsoft.com/library/bw3t50f3.aspx).| |**--pdb:<pdb-filename>**|Names the output debug PDB (program database) file. This option only applies when **--debug** is also enabled.

This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/pdb (C# Compiler Options)](https://msdn.microsoft.com/library/ms228625.aspx).| |**--platform:<platform-name>**|Specifies that the generated code will only run on the specified platform (**x86**, **Itanium**, or **x64**), or, if the platform-name **anycpu** is chosen, specifies that the generated code can run on any platform.

This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/platform (C# Compiler Options)](https://msdn.microsoft.com/library/zekwfyz4.aspx).| +|**--preferreduilang:<lang>**| Specifies the preferred output language culture name (for example, es-ES, ja-JP). | |**--quotations-debug**|Specifies that extra debugging information should be emitted for expressions that are derived from F# quotation literals and reflected definitions. The debug information is added to the custom attributes of an F# expression tree node. See [Code Quotations](code-quotations.md) and [Expr.CustomAttributes](https://msdn.microsoft.com/library/eb89943f-5f5b-474e-b125-030ca412edb3).| |**--reference:<assembly-filename>**

**-r** <**assembly-filename>**|Makes code from an F# or .NET Framework assembly available to the code being compiled.

This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/reference (C# Compiler Options)](https://msdn.microsoft.com/library/yabyz3h4.aspx).| |**--resource:<resource-filename>**|Embeds a managed resource file into the generated assembly.

This compiler option is equivalent to the C# compiler option of the same name. For more information, see [/resource (C# Compiler Options)](https://msdn.microsoft.com/library/c0tyye07.aspx).| diff --git a/docs/fsharp/tutorials/fsharp-interactive/fsharp-interactive-options.md b/docs/fsharp/language-reference/fsharp-interactive-options.md similarity index 98% rename from docs/fsharp/tutorials/fsharp-interactive/fsharp-interactive-options.md rename to docs/fsharp/language-reference/fsharp-interactive-options.md index a25f38f5043b0..b78170a6cd43d 100644 --- a/docs/fsharp/tutorials/fsharp-interactive/fsharp-interactive-options.md +++ b/docs/fsharp/language-reference/fsharp-interactive-options.md @@ -52,6 +52,7 @@ Where lists appear in F# Interactive option arguments, list elements are separat |**--nologo**|Same as the **fsc.exe** compiler option. For more information, see [Compiler Options](../../language-reference/compiler-options.md).| |**--nowarn:<warning-list>**|Same as the **fsc.exe** compiler option. For more information, see [Compiler Options](../../language-reference/compiler-options.md).| |**--optimize**[**+**|**-**]|Same as the **fsc.exe** compiler option. For more information, see [Compiler Options](../../language-reference/compiler-options.md).| +|**--preferreduilang:<lang>**| Specifies the preferred output language culture name (for example, es-ES, ja-JP). | |**--quiet**|Suppress F# Interactive's output to the **stdout** stream.| |**--quotations-debug**|Specifies that extra debugging information should be emitted for expressions that are derived from F# quotation literals and reflected definitions. The debug information is added to the custom attributes of an F# expression tree node. See [Code Quotations](../../language-reference/code-quotations.md) and [Expr.CustomAttributes](https://msdn.microsoft.com/library/eb89943f-5f5b-474e-b125-030ca412edb3).| |**--readline**[**+**|**-**]|Enable or disable tab completion in interactive mode.| diff --git a/docs/fsharp/tutorials/fsharp-interactive/index.md b/docs/fsharp/tutorials/fsharp-interactive/index.md index 6e9a8b6900d9d..6664848c0f744 100644 --- a/docs/fsharp/tutorials/fsharp-interactive/index.md +++ b/docs/fsharp/tutorials/fsharp-interactive/index.md @@ -94,5 +94,5 @@ test |Title|Description| |-----|-----------| -|[F# Interactive Options](fsharp-interactive-options.md)|Describes command line syntax and options for the F# Interactive, fsi.exe.| +|[F# Interactive Options](../../language-reference/fsharp-interactive-options.md)|Describes command-line syntax and options for the F# Interactive, fsi.exe.| |[F# Interactive Library Reference](https://msdn.microsoft.com/visualfsharpdocs/conceptual/fsharp-interactive-library-reference)|Describes library functionality available when executing code in F# interactive.| diff --git a/docs/toc.md b/docs/toc.md index bb40d73851200..d31fc2002b30a 100644 --- a/docs/toc.md +++ b/docs/toc.md @@ -282,7 +282,6 @@ ## Tutorials ### [F# Interactive](fsharp/tutorials/fsharp-interactive/index.md) -#### [F# Interactive Options](fsharp/tutorials/fsharp-interactive/fsharp-interactive-options.md) ### [Type Providers](fsharp/tutorials/type-providers/index.md) #### [Accessing a SQL Database by Using Type Providers](fsharp/tutorials/type-providers/accessing-a-sql-database.md) #### [Accessing a SQL Database by Using Type Providers and Entities](fsharp/tutorials/type-providers/accessing-a-sql-database-entities.md) @@ -408,6 +407,7 @@ ### [Fixed keyword](fsharp/language-reference/fixed.md) ### [Compiler Directives](fsharp/language-reference/compiler-directives.md) ### [Compiler Options](fsharp/language-reference/compiler-options.md) +### [F# Interactive Options](fsharp/language-reference/fsharp-interactive-options.md) ### [Source Line, File, and Path Identifiers](fsharp/language-reference/source-line-file-path-identifiers.md) ### [Caller Information](fsharp/language-reference/caller-information.md) ### [Verbose Syntax](fsharp/language-reference/verbose-syntax.md)