-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClickAssistant.csproj
More file actions
23 lines (19 loc) · 873 Bytes
/
ClickAssistant.csproj
File metadata and controls
23 lines (19 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<StartupObject>ClickAssistant.App</StartupObject>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<DefaultItemExcludes>$(DefaultItemExcludes);Overlay.NET\**;Process.NET\**</DefaultItemExcludes>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateProgramFile>false</GenerateProgramFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="NUnit" Version="4.0.1" />
<PackageReference Include="SharpDX.Direct2D1" Version="4.2.0" />
<PackageReference Include="SharpDX.DXGI" Version="4.2.0" />
</ItemGroup>
</Project>