Skip to content

Commit

Permalink
Added: Missing SIMD Intrinsics Flag for net5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Oct 24, 2022
1 parent 87af6c7 commit b62e4dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion External/Reloaded.Memory.SigScan.ReloadedII/ModConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"ModId": "Reloaded.Memory.SigScan.ReloadedII",
"ModName": "Library: Reloaded.Memory.Sigscan for Reloaded II",
"ModAuthor": "Sewer56",
"ModVersion": "1.2.8",
"ModVersion": "1.2.9",
"ModDescription": "Shared implementation of Reloaded.Memory.Sigscan",
"ModDll": "Reloaded.Memory.SigScan.ReloadedII.dll",
"ModIcon": "Preview.png",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net5.0</TargetFrameworks>
<LangVersion>preview</LangVersion>
<DefineConstants Condition="('$(TargetFramework)' == 'netcoreapp3.1')">$(DefineConstants);SIMD_INTRINSICS</DefineConstants>
<DefineConstants Condition="('$(TargetFramework)' == 'netcoreapp3.1') Or ('$(TargetFramework)' == 'net5.0')">$(DefineConstants);SIMD_INTRINSICS</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>Reloaded.Memory.Sigscan.Definitions</PackageId>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
<Authors>Sewer56</Authors>
<Description>Interface definitions for Reloaded.Memory.Sigscan; used for sharing across AssemblyLoadContext(s)</Description>
<Copyright>LGPL V3</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Reloaded.Memory.Sigscan/Reloaded.Memory.Sigscan.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<LangVersion>preview</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>3.1.5</Version>
<Version>3.1.6</Version>
<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

Expand Down

0 comments on commit b62e4dc

Please sign in to comment.