-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsgo-minimap-radar-helper.csproj
38 lines (32 loc) · 1.08 KB
/
csgo-minimap-radar-helper.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
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<RootNamespace>csgo_minimap_radar_helper</RootNamespace>
<UseWPF>true</UseWPF>
<Configurations>Debug;Release;Publish</Configurations>
<Platforms>AnyCPU;x86</Platforms>
</PropertyGroup>
<ItemGroup>
<None Remove="default_image.png" />
<None Remove="Resources\bomb_a.png" />
<None Remove="Resources\bomb_b.png" />
<None Remove="Resources\ct_spawn.png" />
<None Remove="Resources\hostage.png" />
<None Remove="Resources\t_spawn.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\bomb_a.png" />
<Resource Include="Resources\bomb_b.png" />
<Resource Include="Resources\ct_spawn.png" />
<Resource Include="Resources\default_image.png" />
<Resource Include="Resources\hostage.png" />
<Resource Include="Resources\t_spawn.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="Windows\" />
</ItemGroup>
<ItemGroup>
<Page Include="App.xaml" />
</ItemGroup>
</Project>