Skip to content

Commit

Permalink
Combatting malware misdiagnosis.
Browse files Browse the repository at this point in the history
Application is now signed with a private key and is running under a debug assembly.
  • Loading branch information
MaximumADHD committed Jun 10, 2020
1 parent 1537e4e commit bc105c9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
*/obj/*
*/.vs/*
*.suo
*.ide
*.ide
*.pfx
8 changes: 7 additions & 1 deletion ProjectSrc/RobloxStudioModManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -59,7 +61,7 @@
<SignManifests>false</SignManifests>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<TargetZone>LocalIntranet</TargetZone>
Expand All @@ -74,6 +76,9 @@
<PropertyGroup>
<ApplicationManifest>Properties\app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>RobloxStudioModManager.pfx</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -136,6 +141,7 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="Properties\app.manifest" />
<None Include="RobloxStudioModManager.pfx" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,4 @@ https://github.com/CloneTrooper1019/Roblox-Studio-Mod-Manager/releases

You can also download the latest committed versions here:
* <a href="https://github.com/CloneTrooper1019/Roblox-Studio-Mod-Manager/raw/master/RobloxStudioModManager.exe">Download (.exe)</a></h1>
* <a href="https://github.com/CloneTrooper1019/Roblox-Studio-Mod-Manager/archive/master.zip">Download (.zip)</a>

# Notice about application signature

This program is currently unsigned because I haven't purchased any certificate to sign the application with. I do intend to take care of this in the near future, but for now you may have to dismiss the windows smartscreen filter in order to allow the program to run.
* <a href="https://github.com/CloneTrooper1019/Roblox-Studio-Mod-Manager/archive/master.zip">Download (.zip)</a>
Binary file modified RobloxStudioModManager.exe
Binary file not shown.

2 comments on commit bc105c9

@SafeOfArsenal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Every time I download it my computer says there is a virus.

@MaximumADHD
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It’s a misdiagnosis. Make an exception in your firewall.

Please sign in to comment.