writing: function()

in generators/AddService/index.js [40:56]


    writing: function() {
        var libPath = "REPLACE_SFLIBSPATH";
        var isAddNewService = true; 
        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 }
           });
        }
    },