csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
777 B
26 lines
777 B
// (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
|