like roslyn. it's not because is roslyn, i think is useful
add @file argument to fsc
ref https://msdn.microsoft.com/en-us/library/8a1fs1tb.aspx
Long story short:
A file that lists compiler options or source code files to compile, instead of pass compiler arguments.
Goodies:
- Response files can have comments that begin with the # symbol.
- Combine multiple options. @file1.rsp @file2.rsp
- command line arguments can override previously listed options in response files.
- options in a response file will override options listed previously on the command line or in other response files
it's nice to have a base configuration, and two files, for example debug, test or perf as additional
more easy to track in source control ( it's a text file ) instead of concat argument list in script
like roslyn. it's not because is roslyn, i think is useful
add
@fileargument tofscref https://msdn.microsoft.com/en-us/library/8a1fs1tb.aspx
Long story short:
A file that lists compiler options or source code files to compile, instead of pass compiler arguments.
Goodies:
it's nice to have a base configuration, and two files, for example debug, test or perf as additional
more easy to track in source control ( it's a text file ) instead of concat argument list in script