Skip to content
This repository has been archived by the owner on Aug 23, 2018. It is now read-only.

Commit

Permalink
Fixed manifest and typo
Browse files Browse the repository at this point in the history
Said "Cound detect device type" instead of "Could not"
Manifest signing was turned on?
  • Loading branch information
cjvaughter committed Oct 16, 2015
1 parent dbd7638 commit 762b889
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mageload/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ static bool InitializeSerial()
}
catch (Exception e)
{
Console.Write("\nCould read device signature\n\n");
Console.Write("\nCould not read device signature\n\n");
if (_verbose) Console.WriteLine(e.Message);
return false;
}
Expand Down
9 changes: 6 additions & 3 deletions mageload/mageload.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,15 @@
<ManifestKeyFile>mageload_TemporaryKey.pfx</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
<GenerateManifests>false</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<SignManifests>true</SignManifests>
<SignManifests>false</SignManifests>
</PropertyGroup>
<PropertyGroup>
<TargetZone>LocalIntranet</TargetZone>
</PropertyGroup>
<PropertyGroup />
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -87,7 +91,6 @@
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="mageload_TemporaryKey.pfx" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
Expand Down
Binary file modified release/mageload-2.0.exe
Binary file not shown.

0 comments on commit 762b889

Please sign in to comment.