-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKidTimerLock.csproj
More file actions
37 lines (31 loc) · 1.09 KB
/
KidTimerLock.csproj
File metadata and controls
37 lines (31 loc) · 1.09 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon>KidTimerLock.ico</ApplicationIcon>
<SelfContained>false</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>false</PublishTrimmed>
<IncludeAllContentForSelfExtract>false</IncludeAllContentForSelfExtract>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="NotificationPopup.cs" />
<Compile Remove="WarningOverlayConfig.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="KidTimerLock.ico" />
</ItemGroup>
<ItemGroup>
<Content Include="KidTimerLock.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.WinUI.Notifications" Version="7.1.2" />
</ItemGroup>
</Project>