Skip to content

Commit

Permalink
csplugin: add CodeAnalysis package ref to Jypeli
Browse files Browse the repository at this point in the history
  • Loading branch information
dezhidki committed Aug 9, 2024
1 parent 5c78940 commit 5edce58
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions timApp/modules/cs/languages.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,12 +691,15 @@ def __init__(self, query, sourcecode=""):
@staticmethod
@functools.cache
def get_build_refs():
return _csharp_get_build_refs_arg_list(["jypeli"])
return _csharp_get_build_refs_arg_list(["jypeli", "code_analysis"])

@staticmethod
@functools.cache
def get_runtime_deps_args():
return ["--additional-deps", _csharp_get_additional_deps(["jypeli"])]
return [
"--additional-deps",
_csharp_get_additional_deps(["jypeli", "code_analysis"]),
]

def get_cmdline(self):
mainfile = ""
Expand Down

0 comments on commit 5edce58

Please sign in to comment.