public static void OpenCustomSolution() { UpdateCustomSolution(); var response = PrjInterface.RunPrj(PrjInterface.CreatePrjRequest("openCustomSolution")); if (!response.Succeeded) { PrjHelper.DisplayPrjError( "Opening C# Project", response.ErrorMessage); } }
static PrjPathVars() { var response = PrjInterface.RunPrj(PrjInterface.CreatePrjRequest("getPathVars")); if (response.Succeeded) { _varMap = YamlSerializer.Deserialize <Dictionary <string, string> >(response.Output); } else { PrjHelper.DisplayPrjError("Initializing Path Vars", response.ErrorMessage); } }
public static void UpdateCustomSolution() { // Need the unity solution for defines and references ProjenyEditorUtil.ForceGenerateUnitySolution(); var response = PrjInterface.RunPrj(PrjInterface.CreatePrjRequest("updateCustomSolution")); if (response.Succeeded) { Log.Info("Projeny: Custom solution has been updated"); } else { PrjHelper.DisplayPrjError( "Updating C# Project", response.ErrorMessage); } }