Skip to content

Commit ed7c968

Browse files
committed
Updated dependencies and added netstandard2.1 support
1 parent 28ac8b7 commit ed7c968

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

Hexa.NET.DebugDraw/DebugDraw.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Hexa.NET.DebugDraw
44
{
5-
using HexaEngine.Mathematics;
5+
using Hexa.NET.Mathematics;
66
using System;
77
using System.Numerics;
88
using System.Runtime.CompilerServices;

Hexa.NET.DebugDraw/DebugDrawCommandList.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Hexa.NET.DebugDraw
44
{
5-
using HexaEngine.Core.Unsafes;
5+
using Hexa.NET.Utilities;
66

77
/// <summary>
88
/// Represents a queue of debugging drawing commands for rendering primitives.

Hexa.NET.DebugDraw/DebugDrawData.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
#nullable disable
22

3-
using Hexa.NET.DebugDraw;
4-
53
namespace Hexa.NET.DebugDraw
64
{
7-
using HexaEngine.Mathematics;
5+
using Hexa.NET.Mathematics;
86
using System.Numerics;
97

108
/// <summary>

Hexa.NET.DebugDraw/Hexa.NET.DebugDraw.csproj

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
8+
<LangVersion>12</LangVersion>
9+
</PropertyGroup>
10+
11+
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">
12+
<IsAotCompatible>true</IsAotCompatible>
813
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
914
<EnableSingleFileAnalyzer>true</EnableSingleFileAnalyzer>
1015
<EnableAotAnalyzer>true</EnableAotAnalyzer>
11-
<IsAotCompatible>true</IsAotCompatible>
1216
</PropertyGroup>
1317

1418
<PropertyGroup>
1519
<PackageId>Hexa.NET.DebugDraw</PackageId>
1620
<AssemblyVersion>1.0.0</AssemblyVersion>
17-
<PackageVersion>1.0.0</PackageVersion>
21+
<PackageVersion>2.0.0</PackageVersion>
1822
<Authors>Juna</Authors>
1923
<AssemblyName>Hexa.NET.DebugDraw</AssemblyName>
2024
<PackageProjectUrl>https://github.com/HexaEngine/Hexa.NET.DebugDraw</PackageProjectUrl>
@@ -32,8 +36,8 @@
3236
</ItemGroup>
3337

3438
<ItemGroup>
35-
<PackageReference Include="Hexa.NET.Math" Version="1.0.0-*" />
36-
<PackageReference Include="Hexa.NET.Utilities" Version="1.0.0" />
39+
<PackageReference Include="Hexa.NET.Math" Version="2.0.0-*" />
40+
<PackageReference Include="Hexa.NET.Utilities" Version="2.0.0" />
3741
</ItemGroup>
3842

3943
</Project>

0 commit comments

Comments
 (0)