in generators/app/index.js [49:65]
writing() {
var libPath = "REPLACE_SFLIBSPATH";
var isAddNewService = false;
if (this.props.frameworkType == "Reliable Actor Service") {
this.composeWith("azuresfcsharp:CoreCLRStatefulActor", {
options: { libPath: libPath, isAddNewService: isAddNewService }
});
} else if (this.props.frameworkType == "Reliable Stateless Service") {
this.composeWith("azuresfcsharp:CoreCLRStatelessService", {
options: { libPath: libPath, isAddNewService: isAddNewService }
});
} else if (this.props.frameworkType == "Reliable Stateful Service") {
this.composeWith("azuresfcsharp:CoreCLRStatefulService", {
options: { libPath: libPath, isAddNewService: isAddNewService }
});
}
}