diff options
author | Steve <hez2010@outlook.com> | 2022-11-25 22:39:10 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 07:39:10 -0600 |
commit | 201f848b5077bdb6610123c224dbd38355a250c0 (patch) | |
tree | 95ecd64047a5aafb5e79bb593d459108f89943fc /lib/compilers/dotnet.ts | |
parent | f1a4f169a9cb3e481ca12f0a5c9b8206a40601a0 (diff) | |
download | compiler-explorer-201f848b5077bdb6610123c224dbd38355a250c0.tar.gz compiler-explorer-201f848b5077bdb6610123c224dbd38355a250c0.zip |
Update dotnet script (#4337)gh-5030
* Uses new way to invoke compilers
* adds new
Diffstat (limited to 'lib/compilers/dotnet.ts')
-rw-r--r-- | lib/compilers/dotnet.ts | 46 |
1 files changed, 21 insertions, 25 deletions
diff --git a/lib/compilers/dotnet.ts b/lib/compilers/dotnet.ts index 264bad61e..146cf4e3f 100644 --- a/lib/compilers/dotnet.ts +++ b/lib/compilers/dotnet.ts @@ -31,29 +31,23 @@ import {BaseCompiler} from '../base-compiler'; import {DotNetAsmParser} from '../parsers/asm-parser-dotnet'; class DotNetCompiler extends BaseCompiler { - private rID: string; private targetFramework: string; private buildConfig: string; - private nugetPackagesPath: string; private clrBuildDir: string; - private additionalSources: string; private langVersion: string; constructor(compilerInfo, env) { super(compilerInfo, env); - this.rID = this.compilerProps(`compiler.${this.compiler.id}.runtimeId`); this.targetFramework = this.compilerProps(`compiler.${this.compiler.id}.targetFramework`); this.buildConfig = this.compilerProps(`compiler.${this.compiler.id}.buildConfig`); - this.nugetPackagesPath = this.compilerProps(`compiler.${this.compiler.id}.nugetPackages`); this.clrBuildDir = this.compilerProps(`compiler.${this.compiler.id}.clrDir`); - this.additionalSources = this.compilerProps(`compiler.${this.compiler.id}.additionalSources`); this.langVersion = this.compilerProps(`compiler.${this.compiler.id}.langVersion`); this.asm = new DotNetAsmParser(); } get compilerOptions() { - return ['publish', '-c', this.buildConfig, '--self-contained', '--runtime', this.rID, '-v', 'q', '--nologo']; + return ['build', '-c', this.buildConfig, '-v', 'q', '--nologo', '--no-restore']; } get configurableOptions() { @@ -98,17 +92,10 @@ class DotNetCompiler extends BaseCompiler { const projectFilePath = path.join(programDir, `CompilerExplorer${this.lang.extensions[0]}proj`); const crossgen2Path = path.join(this.clrBuildDir, 'crossgen2', 'crossgen2.dll'); + const nugetConfigPath = path.join(programDir, 'nuget.config'); - const programPublishPath = path.join( - programDir, - 'bin', - this.buildConfig, - this.targetFramework, - this.rID, - 'publish', - ); - - const programDllPath = path.join(programPublishPath, 'CompilerExplorer.dll'); + const programOutputPath = path.join(programDir, 'bin', this.buildConfig, this.targetFramework); + const programDllPath = path.join(programOutputPath, 'CompilerExplorer.dll'); const projectFileContent = `<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>${this.targetFramework}</TargetFramework> @@ -116,24 +103,28 @@ class DotNetCompiler extends BaseCompiler { <AssemblyName>CompilerExplorer</AssemblyName> <LangVersion>${this.langVersion}</LangVersion> <EnableDefaultCompileItems>false</EnableDefaultCompileItems> - <EnablePreviewFeatures>${this.langVersion === 'preview' ? 'true' : 'false'}</EnablePreviewFeatures> - <RestoreAdditionalProjectSources> - https://api.nuget.org/v3/index.json;${this.additionalSources ? this.additionalSources : ''} - </RestoreAdditionalProjectSources> </PropertyGroup> <ItemGroup> <Compile Include="${sourceFile}" /> </ItemGroup> </Project> `; + const nugetConfigFileContent = `<?xml version="1.0" encoding="utf-8"?> + <configuration> + <packageSources> + <clear /> + </packageSources> + </configuration> + `; execOptions.env.DOTNET_CLI_TELEMETRY_OPTOUT = 'true'; execOptions.env.DOTNET_SKIP_FIRST_TIME_EXPERIENCE = 'true'; - execOptions.env.NUGET_PACKAGES = this.nugetPackagesPath; + execOptions.env.NUGET_PACKAGES = path.join(programDir, '.nuget'); execOptions.env.DOTNET_NOLOGO = 'true'; execOptions.customCwd = programDir; await fs.writeFile(projectFilePath, projectFileContent); + await fs.writeFile(nugetConfigPath, nugetConfigFileContent); const crossgen2Options: string[] = []; const configurableOptions = this.configurableOptions; @@ -155,6 +146,9 @@ class DotNetCompiler extends BaseCompiler { crossgen2Options.push(options[switchIndex]); } + const restoreOptions = ['restore', '--configfile', nugetConfigPath, '-v', 'q', '--nologo']; + const restoreResult = await this.exec(compiler, restoreOptions, execOptions); + const compilerResult = await super.runCompiler(compiler, this.compilerOptions, inputFilename, execOptions); if (compilerResult.code !== 0) { @@ -165,7 +159,7 @@ class DotNetCompiler extends BaseCompiler { compiler, execOptions, crossgen2Path, - programPublishPath, + this.clrBuildDir, programDllPath, crossgen2Options, this.getOutputFilename(programDir, this.outputFilebase), @@ -182,17 +176,19 @@ class DotNetCompiler extends BaseCompiler { return this.compilerOptions; } - async runCrossgen2(compiler, execOptions, crossgen2Path, publishPath, dllPath, options, outputPath) { + async runCrossgen2(compiler, execOptions, crossgen2Path, bclPath, dllPath, options, outputPath) { const crossgen2Options = [ crossgen2Path, '-r', - path.join(publishPath, '*'), + path.join(bclPath, '*'), dllPath, '-o', 'CompilerExplorer.r2r.dll', '--codegenopt', 'NgenDisasm=*', '--codegenopt', + 'JitDisasm=*', + '--codegenopt', 'JitDiffableDasm=1', '--parallelism', '1', |