aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/dotnet.ts
diff options
context:
space:
mode:
authorMatt Godbolt <matt@godbolt.org>2023-04-01 20:29:06 -0500
committerGitHub <noreply@github.com>2023-04-01 20:29:06 -0500
commit54a99f6d5120cbbcd2d17978b12749adab4c4715 (patch)
tree171e20dc0cdde049197f03b5dc2bc2eb609afa4b /lib/compilers/dotnet.ts
parent13d16fcb7b72890787e6a0f51a336961453629a7 (diff)
downloadcompiler-explorer-54a99f6d5120cbbcd2d17978b12749adab4c4715.tar.gz
compiler-explorer-54a99f6d5120cbbcd2d17978b12749adab4c4715.zip
Upgrade all minor versions; format; bump sonar and css minimizer (#4920)gh-6999
Diffstat (limited to 'lib/compilers/dotnet.ts')
-rw-r--r--lib/compilers/dotnet.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compilers/dotnet.ts b/lib/compilers/dotnet.ts
index 95ac84ad7..192069267 100644
--- a/lib/compilers/dotnet.ts
+++ b/lib/compilers/dotnet.ts
@@ -313,7 +313,7 @@ class DotNetCompiler extends BaseCompiler {
) {
await this.ensureCrossgen2Version(execOptions);
- /* eslint-disable */
+ // prettier-ignore
const crossgen2Options = [
'-r', path.join(bclPath, '/'),
dllPath,
@@ -324,7 +324,6 @@ class DotNetCompiler extends BaseCompiler {
'--inputbubble',
'--compilebubblegenerics',
].concat(options);
- /* eslint-enable */
const compilerExecResult = await this.exec(this.crossgen2Path, crossgen2Options, execOptions);
const result = this.transformToCompilationResult(compilerExecResult, dllPath);