-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVehiclesMetaEditor.csproj
More file actions
25 lines (20 loc) · 584 Bytes
/
Copy pathVehiclesMetaEditor.csproj
File metadata and controls
25 lines (20 loc) · 584 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>shell32_16775.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Remove="shell32_16775.ico" />
</ItemGroup>
<ItemGroup>
<Content Include="shell32_16775.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Resource Include="shell32_16775.ico" />
</ItemGroup>
</Project>