[WIP] Fixing HP ShellExtension

This commit is contained in:
Terry MacDonald 2020-11-22 09:51:50 +13:00
parent dce0ed8252
commit 7ab732b11c
6 changed files with 13 additions and 6 deletions

View File

@ -34,6 +34,12 @@
<PropertyGroup> <PropertyGroup>
<ApplicationIcon>HeliosPlus2.ico</ApplicationIcon> <ApplicationIcon>HeliosPlus2.ico</ApplicationIcon>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <Reference Include="System" />
<Reference Include="System.Core" /> <Reference Include="System.Core" />
@ -82,6 +88,7 @@
</PackageReference> </PackageReference>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="Key.snk" />
<None Include="Resources\HeliosPlus.ico" /> <None Include="Resources\HeliosPlus.ico" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

Binary file not shown.

View File

@ -5,12 +5,12 @@ using System.Runtime.InteropServices;
// set of attributes. Change these attribute values to modify the information // set of attributes. Change these attribute values to modify the information
// associated with an assembly. // associated with an assembly.
[assembly: AssemblyTitle("Helios Display Management Shell Extension")] [assembly: AssemblyTitle("HeliosPlus Shell Extension")]
[assembly: AssemblyDescription("")] [assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")] [assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Helios Display Management")] [assembly: AssemblyProduct("HeliosPlus")]
[assembly: AssemblyCopyright("Copyright © Soroush Falahati 2017")] [assembly: AssemblyCopyright("Copyright © Terry MacDonald 2020-2021, Copyright © Soroush Falahati 2017-2020")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
@ -22,7 +22,7 @@ using System.Runtime.InteropServices;
// The following GUID is for the ID of the typelib if this project is exposed to COM // The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("55d4ff65-edc7-48ef-933e-b6e7f3809b68")] [assembly: Guid("346e3285-43ca-45bc-8b33-1d4cdfe32e00")]
// Version information for an assembly consists of the following four values: // Version information for an assembly consists of the following four values:
// //

Binary file not shown.

Before

Width:  |  Height:  |  Size: 108 KiB

View File

Before

Width:  |  Height:  |  Size: 457 KiB

After

Width:  |  Height:  |  Size: 457 KiB

View File

@ -53,7 +53,8 @@
<RunCodeAnalysis>true</RunCodeAnalysis> <RunCodeAnalysis>true</RunCodeAnalysis>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<ApplicationIcon>HeliosPlus2.ico</ApplicationIcon> <ApplicationIcon>
</ApplicationIcon>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<StartupObject>HeliosPlus.Program</StartupObject> <StartupObject>HeliosPlus.Program</StartupObject>
@ -273,7 +274,6 @@
<None Include="Resources\Epic.ico" /> <None Include="Resources\Epic.ico" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="HeliosPlus2.ico" />
<Content Include="Resources\redarrows.png" /> <Content Include="Resources\redarrows.png" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>