-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThinkPad-Backlight-Tray.csproj
More file actions
43 lines (39 loc) · 1.76 KB
/
Copy pathThinkPad-Backlight-Tray.csproj
File metadata and controls
43 lines (39 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net481</TargetFramework>
<LangVersion>latest</LangVersion>
<RootNamespace>ThinkPadBacklightTray</RootNamespace>
<AssemblyName>ThinkPad-Backlight-Tray</AssemblyName>
<Nullable>enable</Nullable>
<!-- Let the SDK generate version attributes from <Version>;
suppress only the ones defined manually in AssemblyInfo.cs. -->
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateComVisibleAttribute>false</GenerateComVisibleAttribute>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>app.ico</ApplicationIcon>
<Version>1.0.5</Version>
</PropertyGroup>
<!-- WPF (Info & About dialogs) -->
<ItemGroup>
<Reference Include="PresentationFramework"/>
<Reference Include="PresentationCore"/>
<Reference Include="WindowsBase"/>
<Reference Include="System.Xaml"/>
</ItemGroup>
<!-- WinForms (NotifyIcon + ContextMenuStrip) -->
<ItemGroup>
<Reference Include="System.Windows.Forms"/>
<Reference Include="System.Drawing"/>
</ItemGroup>
<!-- WMI event monitoring -->
<ItemGroup>
<Reference Include="System.Management"/>
</ItemGroup>
<ItemGroup>
<Content Include="app.ico" CopyToOutputDirectory="PreserveNewest"/>
</ItemGroup>
</Project>