Skip to content
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

Management of script references #5

Open
kkokosa opened this issue Oct 18, 2017 · 2 comments
Open

Management of script references #5

kkokosa opened this issue Oct 18, 2017 · 2 comments

Comments

@kkokosa
Copy link
Owner

kkokosa commented Oct 18, 2017

Currently, script references only mscorlib while it would be very nice to have possibly to reference any additional assembly.

@kkokosa
Copy link
Owner Author

kkokosa commented Mar 27, 2018

In my oppinion it would be nice to add references by some script "meta-tag", analyzed and removed before compilation. Something like;

#r "System.Numerics.Vectors"

using System;

namespace Samples
{
    public class Echoer
    {
        public string Write(string message)
        {
            return message;
        }
    }
}

norek added a commit to norek/Tune that referenced this issue Mar 27, 2018
norek added a commit to norek/Tune that referenced this issue Nov 1, 2018
norek added a commit to norek/Tune that referenced this issue Nov 1, 2018
@norek
Copy link

norek commented Nov 1, 2018

As I described in PR I've put //#r tag instead of #r. Comment sign allow me to use Roslyn Walker. Basicly im looking for all comments and those which contains #r are parsed to script.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants