Skip to content
Snippets Groups Projects
Commit 64c137c4 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

select runtime dir

parent bbe601ab
No related branches found
No related tags found
No related merge requests found
...@@ -526,10 +526,11 @@ class CSharpLanguage(object): ...@@ -526,10 +526,11 @@ class CSharpLanguage(object):
assembly_extension = '.exe' assembly_extension = '.exe'
if self.args.compiler == 'coreclr': if self.args.compiler == 'coreclr':
# TODO(jtattermusch): make the runtime string platform-specific if self.platform == 'linux':
#assembly_subdir += '/netstandard1.5/debian.8-x64' assembly_subdir += '/netstandard1.5/debian.8-x64'
#assembly_extension = '' assembly_extension = ''
assembly_subdir += '/netstandard1.5/win7-x64' else:
assembly_subdir += '/netstandard1.5/win7-x64'
runtime_cmd = [] runtime_cmd = []
else: else:
nunit_args += ['--noresult', '--workers=1'] nunit_args += ['--noresult', '--workers=1']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment