@@ -329,6 +329,7 @@ public interface IContainerBuilder<out TBuilderEntity, out TContainerEntity> : I
329329 /// <param name="target">The target directory or file path to copy the file to.</param>
330330 /// <param name="fileMode">The POSIX file mode permission.</param>
331331 /// <returns>A configured instance of <typeparamref name="TBuilderEntity" />.</returns>
332+ [ PublicAPI ]
332333 [ Obsolete ( "Use WithResourceMapping(Uri, FileInfo, UnixFileModes) or WithResourceMapping(Uri, DirectoryInfo, UnixFileModes) instead." ) ]
333334 TBuilderEntity WithResourceMapping ( Uri source , string target , UnixFileModes fileMode = Unix . FileMode644 ) ;
334335
@@ -349,6 +350,7 @@ public interface IContainerBuilder<out TBuilderEntity, out TContainerEntity> : I
349350 /// <param name="target">The target directory path to copy the file to.</param>
350351 /// <param name="fileMode">The POSIX file mode permission.</param>
351352 /// <returns>A configured instance of <typeparamref name="TBuilderEntity" />.</returns>
353+ [ PublicAPI ]
352354 TBuilderEntity WithResourceMapping ( Uri source , DirectoryInfo target , UnixFileModes fileMode = Unix . FileMode644 ) ;
353355
354356 /// <summary>
@@ -365,6 +367,7 @@ public interface IContainerBuilder<out TBuilderEntity, out TContainerEntity> : I
365367 /// <param name="target">The target file path to copy the file to.</param>
366368 /// <param name="fileMode">The POSIX file mode permission.</param>
367369 /// <returns>A configured instance of <typeparamref name="TBuilderEntity" />.</returns>
370+ [ PublicAPI ]
368371 TBuilderEntity WithResourceMapping ( Uri source , FileInfo target , UnixFileModes fileMode = Unix . FileMode644 ) ;
369372
370373 /// <summary>
0 commit comments