-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutoLogout.csproj
More file actions
53 lines (47 loc) · 1.99 KB
/
AutoLogout.csproj
File metadata and controls
53 lines (47 loc) · 1.99 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
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows10.0.17763.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
<!-- Additional metadata -->
<Company>Yiays</Company>
<Authors>Yiays and contributors</Authors>
<Product>AutoLogout</Product>
<AssemblyVersion>0.9.1.0</AssemblyVersion>
<FileVersion>0.9.1.0</FileVersion>
<Version>0.9.1</Version>
<Description>AutoLogout helps manage device usage limits and downtime.</Description>
<!-- <Copyright>Copyright © 2025 Your Company</Copyright> -->
</PropertyGroup>
<ItemGroup>
<None Update="Resources\alarm.wav">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\icon.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\icon-light.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\feature-graphic-desktop.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="QRCoder" Version="1.6.0" />
</ItemGroup>
<Target Name="MoveDependencies" AfterTargets="Build">
<ItemGroup>
<LibFiles Include="$(OutputPath)*.dll" Exclude="$(OutputPath)$(AssemblyName).dll" />
<LibFiles Include="$(OutputPath)*.pdb" Exclude="$(OutputPath)$(AssemblyName).pdb" />
</ItemGroup>
<MakeDir Directories="$(OutputPath)Libraries" />
<Move SourceFiles="@(LibFiles)" DestinationFolder="$(OutputPath)Libraries\" />
</Target>
</Project>