Beispiel #1
0
        private PackageFeed File(string relativePath, Func <MemoryStream> streamFunc)
        {
            LastPackage.AddFile(relativePath, streamFunc);

            return(this);
        }
Beispiel #2
0
        /// <summary>
        /// Adds a custom file to a package.
        /// </summary>
        /// <param name="relativePath">The relative path of the file within the package.</param>
        /// <param name="sourceFileInfo">The <see cref="FileInfo" /> of the file to copy from.</param>
        /// <returns>The current <see cref="PackageFeed" />.</returns>
        public PackageFeed FileCustom(string relativePath, FileInfo sourceFileInfo)
        {
            LastPackage.AddFile(relativePath, sourceFileInfo);

            return(this);
        }