
В исходном коде:
///
/// Executes all queued file system creation operations and returns the resulting file system.
///
/// An instance representing the created file system.
///
/// Thrown when the root directory has not been set via .
///
///
/// Thrown when file system operations (create directory, create file, etc.) fail.
///
///
///
/// This method performs the following actions:
///
///
/// Creates the root directory if it doesn't exist
/// Executes all actions added via in the order they were added
/// If any exception occurs, attempts to clean up the entire file structure
/// Returns a ready-to-use instance
///
///
/// After calling this method, the builder should not be reused.
///
///
IFileSystem Build();
Но в декомпилированном коде:
using System;
#nullable enable
namespace TheMakarik.Testing.FileSystem.Core;
public interface IFileSystemBuilder
{
string RootDirectory { get; }
IFileSystemBuilder AddRoot(string root);
IFileSystemBuilder Add(
string rootRelativePath,
Action additionalAction);
IFileSystem Build();
}
XML-документа нет.
Я использую пакет dotnet для создания файла .nuspec
.csproject файл:
netstandard2.1
enable
latest
TheMakarik.Testing.FileSystem
2026.0.0
TheMakarik, RikitavTimur
Simple package for creating and asserting file system at your integrational tests
icon.png
https://github.com/TheMakarik/TheMakari ... FileSystem
Testings, Tests, FileSystem
True
Подробнее здесь: https://stackoverflow.com/questions/798 ... et-package
Мобильная версия