Skip to content

Commit

Permalink
Version 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stavroskasidis committed Nov 16, 2022
1 parent ac7b8ea commit 0be28fe
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,13 @@ This work was inspired by the post in https://github.com/dotnet/aspnetcore/issue

## Release Notes

<details open="open"><summary>2.0.0</summary>
<details open="open"><summary>2.1.0</summary>

>- Fix targeting .net 7.0 correctly
>- Changed default Xor key to be a bit more complex.
</details>
<details><summary>2.0.0</summary>

>- Upgraded to .net 7.0
</details>
Expand Down
2 changes: 1 addition & 1 deletion src/BlazorWasmAntivirusProtection.Tasks/ObfuscateDlls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class ObfuscateDlls : Task

public string ObfuscationMode { get; set; } = Tasks.ObfuscationMode.Xor.ToString();

public string XorKey { get; set; } = "bwap";
public string XorKey { get; set; } = "bwap !@# $%";

[Output]
public ITaskItem[] Extension { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
<PackageProjectUrl>https://github.com/stavroskasidis/BlazorWasmAntivirusProtection</PackageProjectUrl>
<Description>This package attempts to guard against false positives from antiviruses that flag Blazor Wasm as malware</Description>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<Version>2.0.0</Version>
<Version>2.1.0</Version>
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
</PropertyGroup>

<ItemGroup>
<None Update="build\**" Pack="true" PackagePath="%(Identity)" />
<Content Include="_._" Pack="true" PackagePath="lib\net6.0\_._" />
<Content Include="_._" Pack="true" PackagePath="lib\net7.0\_._" />
</ItemGroup>

<Target Name="GetTasksOutputDlls" BeforeTargets="CoreCompile">
Expand Down

0 comments on commit 0be28fe

Please sign in to comment.