public List <string> getListOfReferencedAssembliesToUse()
        {
            // let's add everything in the current executabled dir :)
            var referencedAssemblies = new List <string>();

            //referencedAssemblies.add_OnlyNewItems(getListOfO2AssembliesInExecutionDir());
            referencedAssemblies.add_OnlyNewItems(lsGACExtraReferencesToAdd); // the a couple from the GAC
            return(referencedAssemblies);
        }
Exemplo n.º 2
0
        public static List <string> allTraces_SourceCode(this List <IO2Finding> iO2Findings)
        {
            var sourceCodes = new List <string>();

            foreach (var iO2Finding in iO2Findings)
            {
                sourceCodes.add_OnlyNewItems(iO2Finding.allTraces_SourceCode());
            }
            return(sourceCodes);
        }
		public static List<string> allTraces_SourceCode(this List<IO2Finding> iO2Findings)
		{
			var sourceCodes = new List<string>();
			foreach(var iO2Finding in iO2Findings)
				sourceCodes.add_OnlyNewItems(iO2Finding.allTraces_SourceCode());
			return sourceCodes;
		}
Exemplo n.º 4
0
 public List<string> getListOfReferencedAssembliesToUse()
 {
     // let's add everything in the current executabled dir :)
     var referencedAssemblies = new List<string>();
     //referencedAssemblies.add_OnlyNewItems(getListOfO2AssembliesInExecutionDir());
     referencedAssemblies.add_OnlyNewItems(lsGACExtraReferencesToAdd); // the a couple from the GAC
     return referencedAssemblies;
 }
 public static List <string> add_OnlyNewItems(this List <string> targetList, params string[] itemsToAdd)
 {
     return(targetList.add_OnlyNewItems(itemsToAdd.toList()));
 }