Skip to content

Commit

Permalink
Update Microsoft high performance toolkit
Browse files Browse the repository at this point in the history
  • Loading branch information
Nominom committed Mar 22, 2021
1 parent 3070561 commit cf2e18f
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 18 deletions.
8 changes: 4 additions & 4 deletions BCnEnc.Net/BCnEncoder.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand All @@ -12,7 +12,7 @@
<PackageLicenseExpression>MIT OR Unlicense</PackageLicenseExpression>
<Copyright />
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>2.0.2</Version>
<Version>2.0.3</Version>
<Authors>Nominom</Authors>
<Company />
<Product>BCnEncoder.Net</Product>
Expand All @@ -33,7 +33,7 @@ Supported formats are:
<PackageProjectUrl>https://github.com/Nominom/BCnEncoder.NET</PackageProjectUrl>
<PackageReleaseNotes>2.0.0 - Removed ImageSharp dependency, added async api methods, added ATC and BGRA support, added new raw api methods, improved dds file handling and fixed some bugs. See the github page for more information about 2.0.

2.0.2 - fixed a bug in mipmap calculations</PackageReleaseNotes>
2.0.3 - Updated Microsoft high performance toolkit version</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand All @@ -46,7 +46,7 @@ Supported formats are:
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Toolkit.HighPerformance" Version="7.0.0-preview4" />
<PackageReference Include="Microsoft.Toolkit.HighPerformance" Version="7.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>

Expand Down
3 changes: 1 addition & 2 deletions BCnEnc.Net/Decoder/BcDecoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
using System.Threading;
using System.Threading.Tasks;
using BCnEncoder.Shared.ImageFiles;
using Microsoft.Toolkit.HighPerformance.Extensions;
using Microsoft.Toolkit.HighPerformance.Memory;
using Microsoft.Toolkit.HighPerformance;

namespace BCnEncoder.Decoder
{
Expand Down
3 changes: 1 addition & 2 deletions BCnEnc.Net/Encoder/BcEncoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
using BCnEncoder.Encoder.Options;
using BCnEncoder.Shared;
using BCnEncoder.Shared.ImageFiles;
using Microsoft.Toolkit.HighPerformance.Extensions;
using Microsoft.Toolkit.HighPerformance.Memory;
using Microsoft.Toolkit.HighPerformance;

namespace BCnEncoder.Encoder
{
Expand Down
2 changes: 1 addition & 1 deletion BCnEnc.Net/Shared/ImageToBlocks.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Microsoft.Toolkit.HighPerformance.Memory;
using Microsoft.Toolkit.HighPerformance;

namespace BCnEncoder.Shared
{
Expand Down
3 changes: 1 addition & 2 deletions BCnEnc.Net/Shared/MipMapper.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using Microsoft.Toolkit.HighPerformance.Extensions;
using Microsoft.Toolkit.HighPerformance.Memory;
using Microsoft.Toolkit.HighPerformance;

namespace BCnEncoder.Shared
{
Expand Down
2 changes: 1 addition & 1 deletion BCnEncTests/BlockTests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using BCnEncoder.Shared;
using Microsoft.Toolkit.HighPerformance.Extensions;
using Microsoft.Toolkit.HighPerformance;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;
Expand Down
2 changes: 1 addition & 1 deletion BCnEncTests/SingleBlockTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using BCnEncoder.Encoder;
using BCnEncoder.Shared;
using BCnEncTests.Support;
using Microsoft.Toolkit.HighPerformance.Extensions;
using Microsoft.Toolkit.HighPerformance;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.PixelFormats;
using Xunit;
Expand Down
3 changes: 1 addition & 2 deletions BCnEncoder.NET.ImageSharp/BCnDecoderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
using BCnEncoder.Decoder;
using BCnEncoder.Shared;
using BCnEncoder.Shared.ImageFiles;
using Microsoft.Toolkit.HighPerformance.Extensions;
using Microsoft.Toolkit.HighPerformance.Memory;
using Microsoft.Toolkit.HighPerformance;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.PixelFormats;
Expand Down
2 changes: 1 addition & 1 deletion BCnEncoder.NET.ImageSharp/BCnEncoder.NET.ImageSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<RepositoryUrl>https://github.com/Nominom/BCnEncoder.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes></PackageReleaseNotes>
<Version>1.0.3</Version>
<Version>1.0.4</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 1 addition & 2 deletions BCnEncoder.NET.ImageSharp/BCnEncoderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
using BCnEncoder.Encoder;
using BCnEncoder.Shared;
using BCnEncoder.Shared.ImageFiles;
using Microsoft.Toolkit.HighPerformance.Extensions;
using Microsoft.Toolkit.HighPerformance.Memory;
using Microsoft.Toolkit.HighPerformance;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.PixelFormats;
Expand Down

0 comments on commit cf2e18f

Please sign in to comment.