30 lines
700 B
XML
30 lines
700 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyName>DellMonitorControl</AssemblyName>
|
|
<RootNamespace>DellMonitorControl</RootNamespace>
|
|
<Product>DellMonitorControl</Product>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="DellLogo.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="DellLogo.ico" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Hardcodet.Wpf.TaskbarNotification.Net6" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Library\Library.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|