Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Frends.Files.ReadBytes/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.2.0] - 2026-05-08
### Fixed
- Fix documentation of result

## [1.1.0] - 2025-03-19
### Changed
- Update packages:
Expand All @@ -15,4 +19,4 @@

## [1.0.0] - 2023-04-20
### Added
- Initial implementation
- Initial implementation
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>Latest</LangVersion>
<Version>1.1.0</Version>
<Version>1.2.0</Version>
<Authors>Frends</Authors>
<Copyright>Frends</Copyright>
<Company>Frends</Company>
Expand Down Expand Up @@ -31,4 +31,4 @@
<PackageReference Include="System.DirectoryServices" Version="8.0.0" />
</ItemGroup>

</Project>
</Project>
2 changes: 1 addition & 1 deletion Frends.Files.ReadBytes/Frends.Files.ReadBytes/ReadBytes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Files
/// <param name="input">Input parameters</param>
/// <param name="options">Options parameters</param>
/// <param name="cancellationToken"></param>
/// <returns>Object { string ContentBytes, string Path, double SizeInMegaBytes, DateTime CreationTime, DateTime LastWriteTime }</returns>
/// <returns>Object { byte[] ContentBytes, string Path, double SizeInMegaBytes, DateTime CreationTime, DateTime LastWriteTime }</returns>
public static async Task<Result> ReadBytes([PropertyTab] Input input, [PropertyTab] Options options, CancellationToken cancellationToken)
{
return await ExecuteActionAsync(
Expand Down
Loading