示例#1
0
        /// <summary>
        /// Include Dolittle libraries
        /// </summary>
        /// <param name="excludeAll"><see cref="ExcludeAll">configuration object</see></param>
        /// <returns>Chain of <see cref="ExcludeAll">configuration object</see></returns>
        public static ExcludeAll ExceptDolittleLibraries(this ExcludeAll excludeAll)
        {
            var specification = excludeAll.Specification;

            specification            = specification.Or(new NameStartsWith("Dolittle"));
            excludeAll.Specification = specification;
            return(excludeAll);
        }
示例#2
0
        /// <summary>
        /// Include specific assemblies that start with a specific name.
        /// </summary>
        /// <param name="excludeAll"><see cref="ExcludeAll">configuration object</see>.</param>
        /// <param name="names">Params of names to include.</param>
        /// <returns>Chain of <see cref="ExcludeAll">configuration object</see>.</returns>
        public static ExcludeAll ExceptAssembliesStartingWith(this ExcludeAll excludeAll, params string[] names)
        {
            var specification = excludeAll.Specification;

            names.ForEach(_ => specification = specification.Or(new NameStartsWith(_)));
            excludeAll.Specification         = specification;
            return(excludeAll);
        }
示例#3
0
        /// <summary>
        /// Include project libraries
        /// </summary>
        /// <param name="excludeAll"><see cref="ExcludeAll">configuration object</see></param>
        /// <returns>Chain of <see cref="ExcludeAll">configuration object</see></returns>
        public static ExcludeAll ExceptProjectLibraries(this ExcludeAll excludeAll)
        {
            var specification = excludeAll.Specification;

            specification = specification.Or(new ExceptProjectLibraries());

            excludeAll.Specification = specification;
            return(excludeAll);
        }