C#: Add output assembly to compilation

This commit is contained in:
Tamas Vajk
2021-01-08 09:35:57 +01:00
parent 7418c05594
commit 5cfa900828
10 changed files with 39 additions and 8 deletions

View File

@@ -7,11 +7,13 @@
* csc f1.cs f2.cs f3.cs
*
* The `id` simply identifies the invocation, while `cwd` is the working
* directory from which the compiler was invoked.
* directory from which the compiler was invoked. The `assembly` identifies
* the output assembly of the compilation.
*/
compilations(
unique int id : @compilation,
string cwd : string ref
string cwd : string ref,
int assembly: @assembly ref
);
/**