-
Notifications
You must be signed in to change notification settings - Fork 1
/
ProxyTester.csproj
29 lines (24 loc) · 942 Bytes
/
ProxyTester.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<RuntimeIdentifiers>win10-x64;win10-x86</RuntimeIdentifiers>
<UseWPF>true</UseWPF>
<ApplicationIcon>tscheschicon.ico</ApplicationIcon>
<Authors>Nils van Lück</Authors>
<PackageLicenseExpression>MIT License</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/vanlueckn/ProxyTester</PackageProjectUrl>
<RepositoryUrl>https://github.com/vanlueckn/ProxyTester</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<None Remove="proxylogo.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="proxylogo.png" />
</ItemGroup>
</Project>