-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/add reference #28
base: master
Are you sure you want to change the base?
Conversation
- allow to download from beta releases from frijters.net
@@ -204,6 +205,9 @@ class Ikvm extends ConventionTask { | |||
if (platform) { | |||
commandLineArgs += "-platform:${platform}" | |||
} | |||
if (reference) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any reason not to use the supported list of references (through the configuration)? (maybe lack of documentation on how to use it ?) - see getReferences()
I planned to implement the Is it the same as What I want is to compile against .NET 2.0 |
today you can add references using a configuration like:
(which will add Where do you need to reference libs from ? |
Currently I use this command and the dll I am referencing is mscorelib 2.0
|
As per https://docs.gradle.org/current/userguide/dependency_management.html#sub:file_dependencies did you try something like:
? |
Note that after having merged the support for www.frijters.net, I rollback'ed it because it caused CI build issues (timeouts on the URL).
Thx |
I wonder how I could resolve this issue after setting
is there some sort of exclude in ikvm or the plugin or
I need to compile against mscorlib 2.0 because the dll will be used with an .NET 2.0 application. It seems Its not possible to create a 2.0 compatible version with a 4.5 corlib. |
@gluck I still have an issue as the mscorlib.dll is added twice. |
I also added the dependency 'commons-io:commons-io:2.5' without it the project didn't compile.