I am trying to create a server script something like the code below:
using System;
using System.Data;
using System.Collections.Generic;
using Metastorm.Ide.Extensibility;
using Metastorm.Runtime.Core;
using Metastorm.Runtime.Types;
using System.ComponentModel;
using Metastorm.Runtime.Models.TESTSQLPROJECT;
namespace Metastorm.Runtime.Models.TESTSQLPROJECT
{
public class ServerScript1
{
[Promote(PromotionTargets.ExpressionBuilder)]
[Category("UserCategory")]
public static string sGetNextSeqeunce(BusinessObject1 conn)
{
// do something with BusinessObject1
//and return a string
}
}
}
When I validate, I get the error:
The type or namespace name 'TESTSQLPROCESS' does not exist in the namespace 'Metastorm.Runtime.Models.TESTSQLPROJECT' (are you missing an assembly reference?)

any suggestions please