-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGimmeProxy.csproj
More file actions
50 lines (44 loc) · 2.07 KB
/
GimmeProxy.csproj
File metadata and controls
50 lines (44 loc) · 2.07 KB
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
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;net9.0;net47;net471;net472;net48;net481</TargetFrameworks>
<RootNamespace>GimmeProxy</RootNamespace>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<Version>1.1.0.0</Version>
<Configurations>Debug;Release;NuGet</Configurations>
</PropertyGroup>
<PropertyGroup>
<Company>DevEnterprise Software</Company>
<Product>GimmeProxy</Product>
<Description>GimmeProxy constantly crawls the internet for working proxies, so you don't have to.</Description>
<Authors>Werner van Deventer</Authors>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='NuGet'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSource>false</IncludeSource>
<IncludeSymbols>false</IncludeSymbols>
<RepositoryUrl>https://github.com/DevEnterpriseSoftware/GimmeProxy</RepositoryUrl>
<PackageProjectUrl>https://gimmeproxy.com/#api</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageId>GimmeProxy</PackageId>
<PackageTags>proxy;api;sdk;</PackageTags>
<PackageIcon>gimmeproxy.png</PackageIcon>
<PackageIconUrl>https://www.deventerprise.com/img/gimmeproxy.png</PackageIconUrl>
<PackageReleaseNotes>- Handle and throw new exception for API call failures.</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)'=='NuGet'">
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="gimmeproxy.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('net4'))">
<Reference Include="System.Net.Http" />
</ItemGroup>
</Project>