code-check / env-builder

Test environment builder
3 stars 2 forks source link

installing nuget cli tool #93

Closed takayukioda closed 7 years ago

takayukioda commented 7 years ago

Currently codecheck does not have a way to do nuget package installing.

At least, we know following command enables user to use nuget. Find out efficient and official way to install nuget cli tool and its cache directory.

$ wget --no-check-certificate https://nuget.org/nuget.exe
mono nuget.exe install Nancy

Add this installation on Dockerfile.

sukeshni commented 7 years ago

@takayukioda Should I specify the version of nuget and Nancy or by default latest version should be installed?

bschwind commented 7 years ago

Should I specify the version of nuget and Nancy or by default latest version should be installed?

Just my opinion but you should version everything you can so builds are more reproducible.

sukeshni commented 7 years ago

Yes I agree with you. I remember we had some issue before where version was not specified.

TsubasaK111 commented 7 years ago

fixed, merged!