-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAIAppLauncher.csproj
More file actions
37 lines (29 loc) · 951 Bytes
/
AIAppLauncher.csproj
File metadata and controls
37 lines (29 loc) · 951 Bytes
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>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<PropertyGroup>
<!-- Set the application icon -->
<ApplicationIcon>Images\icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WPF" />
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WindowsForms" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<!-- <ItemGroup>
<None Update="Images\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup> -->
<ItemGroup>
<Resource Include="Images\*" />
</ItemGroup>
</Project>