-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVanox.csproj
34 lines (28 loc) · 967 Bytes
/
Vanox.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\Windows11.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AvalonEdit" Version="6.3.0.90" />
<PackageReference Include="WPF-UI" Version="3.0.5" />
</ItemGroup>
<ItemGroup>
<Reference Include="FaisalAPI">
<HintPath>..\..\..\Downloads\Tutorial Files\FaisalAPI.dll</HintPath>
</Reference>
<Reference Include="ICSharpCode.AvalonEdit">
<HintPath>..\..\..\Downloads\Tutorial Files\ICSharpCode.AvalonEdit.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\Windows11.png" />
</ItemGroup>
</Project>