This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
ngrokGUI.csproj
39 lines (34 loc) · 1.49 KB
/
ngrokGUI.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
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationIcon>icons8-tunnel-256.ico</ApplicationIcon>
<AssemblyName>ngrokGUI</AssemblyName>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\Locations\icons8-australia-48.png" />
<None Remove="Assets\Locations\icons8-brazil-48.png" />
<None Remove="Assets\Locations\icons8-germany-48.png" />
<None Remove="Assets\Locations\icons8-india-48.png" />
<None Remove="Assets\Locations\icons8-japan-48.png" />
<None Remove="Assets\Locations\icons8-singapore-48.png" />
<None Remove="Assets\Locations\icons8-usa-48.png" />
<None Remove="icons8-tunnel-256.ico" />
<None Remove="icons8-tunnel-256.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NgrokSharp" Version="1.0.12" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\Locations\icons8-australia-48.png" />
<Resource Include="Assets\Locations\icons8-brazil-48.png" />
<Resource Include="Assets\Locations\icons8-germany-48.png" />
<Resource Include="Assets\Locations\icons8-india-48.png" />
<Resource Include="Assets\Locations\icons8-japan-48.png" />
<Resource Include="Assets\Locations\icons8-singapore-48.png" />
<Resource Include="Assets\Locations\icons8-usa-48.png" />
<Resource Include="icons8-tunnel-256.ico" />
<Resource Include="icons8-tunnel-256.png" />
</ItemGroup>
</Project>