File: FSLex.Build.fsi

package info (click to toggle)
fsharp 3.1.1.26%2Bdfsg2-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 59,244 kB
  • ctags: 4,190
  • sloc: cs: 13,398; ml: 1,098; sh: 399; makefile: 293; xml: 82
file content (26 lines) | stat: -rwxr-xr-x 777 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// (c) Microsoft Corporation 2005-2009.

namespace Microsoft.FSharp.Build

type FsLex =
    inherit Microsoft.Build.Utilities.ToolTask

    new : unit -> FsLex
    
    override GenerateCommandLineCommands : unit -> System.String
    override GenerateFullPathToTool : unit -> System.String
    override ToolName : System.String
    
    member internal InternalGenerateCommandLineCommands : unit -> System.String
    
    member InputFile  : string with set
    [<Microsoft.Build.Framework.Output>]
    member OutputFile : string with set
    member CodePage   : string with set
    member OtherFlags : string with set
    member Unicode    : bool   with set
    member ToolPath   : string with set
#if FX_ATLEAST_35   
#else 
    member ToolExe    : string with set    
#endif