aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/dotnet.ts
diff options
context:
space:
mode:
authorJeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com>2023-02-22 17:45:55 -0500
committerGitHub <noreply@github.com>2023-02-22 17:45:55 -0500
commit563b220cb9243ea19a49cfe82cf9fcadda79b600 (patch)
tree158e3737e83ca4e3c00f647a13c74b070549e315 /lib/compilers/dotnet.ts
parent17ac75facd403c7f476546707645989191fe4864 (diff)
downloadcompiler-explorer-563b220cb9243ea19a49cfe82cf9fcadda79b600.tar.gz
compiler-explorer-563b220cb9243ea19a49cfe82cf9fcadda79b600.zip
Type work for some handlers and stuff related to the compiler-finder (#4752)gh-6407
Diffstat (limited to 'lib/compilers/dotnet.ts')
-rw-r--r--lib/compilers/dotnet.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/dotnet.ts b/lib/compilers/dotnet.ts
index 994fee5d5..5f154fe03 100644
--- a/lib/compilers/dotnet.ts
+++ b/lib/compilers/dotnet.ts
@@ -28,7 +28,7 @@ import fs from 'fs-extra';
import _ from 'underscore';
import {CompilationResult, ExecutionOptions} from '../../types/compilation/compilation.interfaces';
-import {CompilerInfo} from '../../types/compiler.interfaces';
+import {PreliminaryCompilerInfo} from '../../types/compiler.interfaces';
import {
BasicExecutionResult,
ExecutableExecutionOptions,
@@ -51,7 +51,7 @@ class DotNetCompiler extends BaseCompiler {
private crossgen2VersionString: string;
- constructor(compilerInfo: CompilerInfo, env) {
+ constructor(compilerInfo: PreliminaryCompilerInfo, env) {
super(compilerInfo, env);
this.sdkBaseDir = path.join(path.dirname(compilerInfo.exe), 'sdk');