mirror of
https://github.com/DarthAffe/ScreenCapture.NET.git
synced 2025-12-12 21:38:42 +00:00
Compare commits
3 Commits
b6132a4ee3
...
762e2fefe0
| Author | SHA1 | Date | |
|---|---|---|---|
| 762e2fefe0 | |||
| f2801667a6 | |||
| 2447747385 |
@ -27,11 +27,12 @@
|
|||||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||||
|
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
|
- Added .net8 build-target
|
||||||
</PackageReleaseNotes>
|
</PackageReleaseNotes>
|
||||||
|
|
||||||
<Version>2.0.2</Version>
|
<Version>2.0.3</Version>
|
||||||
<AssemblyVersion>2.0.2</AssemblyVersion>
|
<AssemblyVersion>2.0.3</AssemblyVersion>
|
||||||
<FileVersion>2.0.2</FileVersion>
|
<FileVersion>2.0.3</FileVersion>
|
||||||
|
|
||||||
<OutputPath>..\bin\</OutputPath>
|
<OutputPath>..\bin\</OutputPath>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
|||||||
@ -27,11 +27,12 @@
|
|||||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||||
|
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
|
- Added .net8 build-target
|
||||||
</PackageReleaseNotes>
|
</PackageReleaseNotes>
|
||||||
|
|
||||||
<Version>2.0.2</Version>
|
<Version>2.0.3</Version>
|
||||||
<AssemblyVersion>2.0.2</AssemblyVersion>
|
<AssemblyVersion>2.0.3</AssemblyVersion>
|
||||||
<FileVersion>2.0.2</FileVersion>
|
<FileVersion>2.0.3</FileVersion>
|
||||||
|
|
||||||
<OutputPath>..\bin\</OutputPath>
|
<OutputPath>..\bin\</OutputPath>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
|||||||
@ -27,11 +27,12 @@
|
|||||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||||
|
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
|
- Added .net8 build-target
|
||||||
</PackageReleaseNotes>
|
</PackageReleaseNotes>
|
||||||
|
|
||||||
<Version>2.0.2</Version>
|
<Version>2.0.3</Version>
|
||||||
<AssemblyVersion>2.0.2</AssemblyVersion>
|
<AssemblyVersion>2.0.3</AssemblyVersion>
|
||||||
<FileVersion>2.0.2</FileVersion>
|
<FileVersion>2.0.3</FileVersion>
|
||||||
|
|
||||||
<OutputPath>..\bin\</OutputPath>
|
<OutputPath>..\bin\</OutputPath>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
|||||||
@ -269,7 +269,7 @@ public sealed class Image<TColor> : IImage
|
|||||||
if (destination == null) throw new ArgumentNullException(nameof(destination));
|
if (destination == null) throw new ArgumentNullException(nameof(destination));
|
||||||
if (destination.Length < SizeInBytes) throw new ArgumentException("The destination is too small to fit this image.", nameof(destination));
|
if (destination.Length < SizeInBytes) throw new ArgumentException("The destination is too small to fit this image.", nameof(destination));
|
||||||
|
|
||||||
_buffer.AsSpan(_start, SizeInBytes).CopyTo(destination);
|
MemoryMarshal.Cast<byte, TColor>(_buffer).Slice(_start, _length).CopyTo(MemoryMarshal.Cast<byte, TColor>(destination));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
|
|||||||
@ -26,12 +26,13 @@
|
|||||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||||
|
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
Fixed issues with .NET 6
|
- Added .net8 build-target
|
||||||
|
- Fixed an issue in ImageRow.ToArray (and indirect Image.ToArray) that caused the resulting data to be weirdly interlaced
|
||||||
</PackageReleaseNotes>
|
</PackageReleaseNotes>
|
||||||
|
|
||||||
<Version>2.0.2</Version>
|
<Version>2.0.3</Version>
|
||||||
<AssemblyVersion>2.0.2</AssemblyVersion>
|
<AssemblyVersion>2.0.3</AssemblyVersion>
|
||||||
<FileVersion>2.0.2</FileVersion>
|
<FileVersion>2.0.3</FileVersion>
|
||||||
|
|
||||||
<OutputPath>..\bin\</OutputPath>
|
<OutputPath>..\bin\</OutputPath>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user