|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net7.0</TargetFramework> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <Nullable>enable</Nullable> |
| 7 | + <AllowUnsafeBlocks>True</AllowUnsafeBlocks> |
| 8 | + <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
| 9 | + <Title>UnmanagedMemoryUtils</Title> |
| 10 | + <VersionPrefix>1.0.5</VersionPrefix> |
| 11 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 12 | + <Description>A .NET collection of utilities for working with unmanaged memory. |
| 13 | +Provides faster alternatives to Memory<T> and ReadOnlyMemory<T> in addition to accessing unmanaged string from managed code. |
| 14 | +Allows to manipulate array of unmanaged pointers with the UnmanagedArrayPointer<T> struct.</Description> |
| 15 | + <Authors>Azengar</Authors> |
| 16 | + <RepositoryUrl>https://github.com/Azengar/UnmanagedMemoryUtils</RepositoryUrl> |
| 17 | + <RepositoryType>git</RepositoryType> |
| 18 | + <PackageTags>.NET;C#</PackageTags> |
| 19 | + <Copyright>BSD-3-Clause license</Copyright> |
| 20 | + <PackageProjectUrl>https://github.com/Azengar/UnmanagedMemoryUtils</PackageProjectUrl> |
| 21 | + <PackageReleaseNotes>Version 1.0.2 |
| 22 | + |
| 23 | +* Changed from `Unsafe.CopyBlock` to `Unsafe.CopyBlockUnaligned`. |
| 24 | + |
| 25 | +Version 1.0.3 |
| 26 | + |
| 27 | +* Added Aggressive Inlining for Allocate methods. |
| 28 | + |
| 29 | +Version 1.0.4 |
| 30 | + |
| 31 | +* Added the UnmanagedPointerArray<T> struct used to manipulate array of pointers. |
| 32 | +* Marked all properties as 'readonly' as they don't modify the state of the structs. |
| 33 | +* Use the new 'namespace' syntax for less indentation levels. |
| 34 | + |
| 35 | +Version 1.0.5 |
| 36 | + |
| 37 | +* Fixed an issue that made it impossible to retrieve the string value of an UnmanagedString with the 'ToString' method.</PackageReleaseNotes> |
| 38 | + </PropertyGroup> |
| 39 | + <ItemGroup> |
| 40 | + <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
| 41 | + </ItemGroup> |
| 42 | +</Project> |
0 commit comments