-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExplorer_WPF.csproj
More file actions
32 lines (26 loc) · 911 Bytes
/
Explorer_WPF.csproj
File metadata and controls
32 lines (26 loc) · 911 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="resourses\LeftArrow.png" />
<None Remove="resourses\RightArrow.png" />
<None Remove="resourses\UpArrow.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Collections" Version="4.3.0" />
<PackageReference Include="System.Windows.Interactivity.WPF" Version="2.0.20525" />
</ItemGroup>
<ItemGroup>
<Resource Include="resourses\LeftArrow.png" />
<Resource Include="resourses\RightArrow.png" />
<Resource Include="resourses\UpArrow.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="Models\Interfaces\" />
</ItemGroup>
</Project>