Hi,
I don’t know what is wrong with my DynamoCustomization.xml
, I have remapped the namespace of the package but unfortunately, the remapping in the classes is not reflected. Am I doing something wrong here?
My class looks like this:
namespace ZeroTouchProject {
public static class HelloDynamo {
public static string SayHello(string name) {
return String.Format("Hello {0}!", name);
}
}
}