public void RefExample(ITaskContext context) { //// Just an example that using of other .cs files work. BuildHelper.SomeMethod(); //// Just an example that referencing external assemblies work. var exampleSerialization = JsonConvert.SerializeObject("Example serialization"); var client = new RestClient("http://example.com"); }
public void ExternalMethodExample() { BuildHelper.SomeMethod(); }