Skip to content

Commit 41e3542

Browse files
committed
- Update appveyor to Visual Studio 2019 and update target frameworks
- Update README.md: Cloudflare is obsolete
1 parent 589eac4 commit 41e3542

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ Install-Package Leaf.xNet
4141
- PUT
4242
- OPTIONS
4343

44-
### CloudFlare bypass
44+
### Cloudflare bypass (obsolete)
45+
46+
> Not maintained in public Leaf.xNet anymore.
47+
But you can [order private paid Leaf.xNet with support](https://t.me/kelog).
48+
Telegram: [@kelog](https://t.me/kelog)
49+
4550
See demo project in the Examples folder.
4651

4752
```csharp
@@ -57,7 +62,7 @@ var resp = httpRequest.Get("https://...");
5762
bool isCloudFlared = resp.isCloudFlared();
5863
```
5964

60-
### CloudFlare bypass when ReCaptcha required
65+
#### CloudFlare bypass when ReCaptcha required
6166
See demo project in the Examples folder.
6267
```csharp
6368
using Leaf.xNet.Services.Captcha;

appveyor.yml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
version: 5.1.{build}
1+
version: 5.2.{build}
22
branches:
33
only:
44
- master
55
skip_tags: true
6-
image: Visual Studio 2017
6+
image: Visual Studio 2019
77
configuration: Release
88
dotnet_csproj:
99
patch: true
@@ -29,19 +29,15 @@ build:
2929
verbosity: minimal
3030
artifacts:
3131
- path: Leaf.xNet\bin\Release\net452
32-
name: net452
32+
name: Leaf.xNet_v$(appveyor_build_version)__NET_Framework_4.5.2
3333
- path: Leaf.xNet\bin\Release\net462
34-
name: net462
35-
- path: Leaf.xNet\bin\Release\net471
36-
name: net471
34+
name: Leaf.xNet_v$(appveyor_build_version)__NET_Framework_4.6.2
3735
- path: Leaf.xNet\bin\Release\net472
38-
name: net472
39-
- path: Leaf.xNet\bin\Release\netcoreapp2.0
40-
name: netcoreapp2.0
41-
- path: Leaf.xNet\bin\Release\netcoreapp2.1
42-
name: netcoreapp2.1
43-
- path: Leaf.xNet\bin\Release\netcoreapp2.2
44-
name: netcoreapp2.2
36+
name: Leaf.xNet_v$(appveyor_build_version)__NET_Framework_4.7.2
37+
- path: Leaf.xNet\bin\Release\net48
38+
name: Leaf.xNet_v$(appveyor_build_version)__NET_Framework_4.8
39+
- path: Leaf.xNet\bin\Release\netstandard2.0
40+
name: Leaf.xNet_v$(appveyor_build_version)__NET_Standard_2.0
4541
deploy:
4642
- provider: NuGet
4743
api_key:
@@ -54,7 +50,7 @@ deploy:
5450
release: Leaf.xNet v$(appveyor_build_version)
5551
auth_token:
5652
secure: NQtMOO3yB309cDK/pFWRiQ==
57-
artifact: net452;net462;net471;net472;netcoreapp2.0;netcoreapp2.1;netcoreapp2.2
53+
artifact: Leaf.xNet_v$(appveyor_build_version)__NET_Framework_4.5.2;Leaf.xNet_v$(appveyor_build_version)__NET_Framework_4.6.2;Leaf.xNet_v$(appveyor_build_version)__NET_Framework_4.7.2;Leaf.xNet_v$(appveyor_build_version)__NET_Framework_4.8;Leaf.xNet_v$(appveyor_build_version)__NET_Standard_2.0
5854
on:
5955
branch: master
6056
only_commits:

0 commit comments

Comments
 (0)