Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Washi1337 committed May 26, 2024
1 parent fabd11d commit 97405f3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion src/AwaitFuscator/AwaitFuscator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.1.0</Version>
<Version>0.1.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 0 additions & 4 deletions src/AwaitFuscator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,6 @@ private static bool CanObfuscate(MethodDefinition method)
if (method.Parameters.Any(x => x.ParameterType is ByReferenceTypeSignature))
return false;

// // We currently only support static methods.
// if (!method.IsStatic)
// return false;

// We currently cannot transform exception handlers.
if (body.ExceptionHandlers.Count > 0)
return false;
Expand Down

0 comments on commit 97405f3

Please sign in to comment.