aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/dotnet.ts
Commit message (Collapse)AuthorAge
* Improve the type of ExecutionOptions.env (#5206)gh-8009Jeremy Rifkin2023-06-28
|
* Upgrade all minor versions; format; bump sonar and css minimizer (#4920)gh-6999Matt Godbolt2023-04-01
|
* add back --parallelism (#4885)gh-6902kasperk812023-03-17
| | | | missed --parallelism in https://github.com/compiler-explorer/compiler-explorer/pull/4821.
* Bump all minor versions - npm update; also bump webpack version ↵gh-6756Matt Godbolt2023-03-12
| | | | | speculatively... (#4851) also npm lint and format to make sure any changes turn up.
* rename jit option for dotnet 8 (#4821)gh-6737kasperk812023-03-11
|
* Transition to ECMAScript Modules (#4780)gh-6536Mats Jun Larsen2023-02-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes the Compiler Explorer app, and all the tooling ESM compatible. Things that have been done: 1. The package.json has `type: module` now 2. All relative imports have a .js ending 3. All directory imports are now directory/index.js to comply with ESM standards 4. Dependency node-graceful is now imported into tree, because the package is broken under esm 5. Dependency p-queue has been bumped to 7.x with ESM support 6. Dependency profanities has been bumped to 3.x with ESM support 7. Webpack config is now both ESM and CommonJS compatible 8. Non-ESM compatible imports have been rewritten 9. ESLint configuration has been tweaked to not fail on .js imports 10. Mocha is now hacked together and ran with ts-node-esm 11. Webpack is now hacked together and ran with ts-node-esm 12. Webpack config is now ESM compatible, so that it can be used in the dev server 13. Cypress code still runs commonjs, and has been excluded from the tsconfig 14. All sinon mock tests have been commented out, because sinon module mocks do not work with ESModules (because ESModules are immutable) A lot of tests are now giving warnings/errors to stdout, yet still pass. Docenizer codegenerator scripts have been updated, but I did not re-run them, and instead just changed their code. --------- Co-authored-by: Matt Godbolt <matt@godbolt.org>
* Fix trailing comma issue (#4775)gh-6504Jeremy Rifkin2023-02-26
| | | | | Make trailing commas more consistent throughout the project, fixes config conflict between eslint and prettier. Resolves an oversight in #4766.
* Turn some auto-fixable eslint rules back on (#4766)gh-6434Jeremy Rifkin2023-02-23
| | | | | | This PR turns comma-dangle and indent eslint rules on for lib/. These are rules inherited from the eslint config for static/, this PR just makes things more consistent. Also turned @typescript-eslint/no-var-requires back on while I was here.
* Type work for some handlers and stuff related to the compiler-finder (#4752)gh-6407Jeremy Rifkin2023-02-22
|
* Tsify lib/compilers (#4609)gh-6026Jeremy Rifkin2023-01-29
|
* display crossgen2 version in asm output (#4526)kasperk812023-01-02
| | | dotnet 6 and 7 will also show the version once there is a new deployment. for now they are showing 7.0.0-dev and <unknown version> respectively
* Slightly more controversial bumpings (#4503)gh-5552Matt Godbolt2022-12-28
| | | | | | | | | - latest sentry, tar-stream, which, some yamljs versions - latest eslint-* stuff - latest webpack manifest - Applies all the automatic fixes for newer lint rules - Bump the webpack version applies new tslint stuff
* Various enhancements for dotnet (#4362)Steve2022-12-27
|
* obsolete varsgh-5133partouf2022-11-29
|
* format and lintgh-5130partouf2022-11-28
|
* .net - compileToBinary fix (#4353)Patrick Quist2022-11-28
|
* dynamically set targetFramework (#4354)gh-5126kasperk812022-11-28
|
* refactor: renames the CompilerFilters type (#4346)gh-5117Marc Poulhiès2022-11-28
| | | | | | | | | | | | | | | The type which probably started as a real enum of possible post filtering options now also includes options used for compilers' invocations. The type was already split, but the naming was not reflecting this in the other part of the code. This changes tries to apply a simple renaming to the type only (corresponding variables are left as 'filters'). While doing so, some typing error were discovered around the GccDump feature. A fix for this will follow in a different PR. Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
* Support trunk and execution for .NET (#4351)gh-5100Steve2022-11-27
| | | | | | * Support trunk and execution for .NET * Adjust compilers order * Support stdin * Update samples
* Mg/props ts (#4340)gh-5089Jeremy Rifkin2022-11-26
| | | | | | | | | | | | | | | * WIP * Type changes to the property getter * Finish getting types working for properties.ts * Reduce type casts in exec.ts * Format files * Remove old comment Co-authored-by: Matt Godbolt <matt@godbolt.org>
* Fixes for .NET 7 (#4347)gh-5085Matt Godbolt2022-11-26
| | | | - check return code of restore - set env vars to prevent file size blowout
* Fix F# build failure (#4344)gh-5081Steve2022-11-26
| | | | * Fix FSharp compilation
* Fix crossgen2 arguments (#4342)gh-5058Steve2022-11-25
| | | | * Fix crossgen2 arguments
* Work in progress on net .NETgh-5031Matt Godbolt2022-11-25
| | | | | | | - uses new installs - works around issue where empty output would crash runCrossgen2 Not working yet (at least locally).
* Update dotnet script (#4337)gh-5030Steve2022-11-25
| | | | * Uses new way to invoke compilers * adds new
* tsify exec.js (#4026)gh-4152Patrick Quist2022-09-06
|
* Base-compiler to typescript (#3718)gh-3142Patrick Quist2022-05-27
|
* Dosbox + Turbo C 2.01 support (#3627)gh-2886Patrick Quist2022-05-13
|
* Add noImplicitOverride to tsc configRabsRincon2022-04-27
|
* Set comma-dangle to always in server code and es5 in client codegh-2532RabsRincon2022-04-26
|
* Unify comma configuration; and apply format to some files. (#3559)gh-2517Matt Godbolt2022-04-25
|
* Group some files to their own folders (#3384)gh-2075Rubén Rincón Blanco2022-02-22
| | | | | | | | | | | | | | * Group some files to their own folders In etc/scripts/, added disasms/, docenizers/, and util/ folders In lib/, added mapfiles/, and parsers/ folders (+moved google.js to shortener) In static/, added widgets/ folder Added cypress folder to .gitignore * Address Matt's PR reviews * Move new Pane renaming to folder
* Add strict tsc flag for the backend ts code (#3355)gh-1950Rubén Rincón Blanco2022-02-12
|
* Implement asm-parser for dotnet (#3334)gh-1926Steve2022-02-11
|
* Changes needed to make dotnet work with nsjail (#3307)gh-1805Patrick Quist2022-02-01