Skip to content

Commit 5012605

Browse files
committed
Minor
1 parent 9ad321f commit 5012605

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
88
[assembly: AssemblyTitle("RDP Portal")]
9-
[assembly: AssemblyDescription("")]
9+
[assembly: AssemblyDescription("A slightly smarter and simple Remote Desktop manager for Windows.")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Louis Lam")]
1212
[assembly: AssemblyProduct("RDP Protal")]
13-
[assembly: AssemblyCopyright("Copyright © 2022 Louis Lam")]
13+
[assembly: AssemblyCopyright("Copyright © 2022 Louis Lam")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

app.manifest

+19
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,23 @@
66
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
77
</asmv3:windowsSettings>
88
</asmv3:application>
9+
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
10+
<security>
11+
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
12+
<!-- UAC Manifest Options
13+
If you want to change the Windows User Account Control level replace the
14+
requestedExecutionLevel node with one of the following.
15+
16+
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
17+
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
18+
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
19+
20+
Specifying requestedExecutionLevel element will disable file and registry virtualization.
21+
Remove this element if your application requires this virtualization for backwards
22+
compatibility.
23+
-->
24+
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
25+
</requestedPrivileges>
26+
</security>
27+
</trustInfo>
928
</assembly>

rdp-portal.csproj

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
<ProjectGuid>{6C4D655E-4C37-4E07-87E0-A4EB9DCAA651}</ProjectGuid>
99
<OutputType>WinExe</OutputType>
1010
<RootNamespace>RDP_Portal</RootNamespace>
11-
<AssemblyName>rdp-portal</AssemblyName>
11+
<AssemblyName>RDP-Portal</AssemblyName>
1212
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1515
<Deterministic>true</Deterministic>
1616
<LangVersion>8</LangVersion>
1717
<Nullable>enable</Nullable>
1818
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
19+
<SignAssembly>true</SignAssembly>
20+
<AssemblyOriginatorKeyFile>..\visual-studio-sign-key.snk</AssemblyOriginatorKeyFile>
1921
</PropertyGroup>
2022
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2123
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -174,6 +176,9 @@
174176
<EmbeddedResource Include="src\MainForm.resx">
175177
<DependentUpon>MainForm.cs</DependentUpon>
176178
</EmbeddedResource>
179+
<None Include="..\visual-studio-sign-key.snk">
180+
<Link>visual-studio-sign-key.snk</Link>
181+
</None>
177182
<None Include="packages.config" />
178183
<None Include="Properties\Settings.settings">
179184
<Generator>SettingsSingleFileGenerator</Generator>

0 commit comments

Comments
 (0)