dags att checka in
This commit is contained in:
15
WebFlurl/Program.cs
Normal file
15
WebFlurl/Program.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using Flurl.Http;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WebFlurl
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static async Task Main(string[] args)
|
||||
{
|
||||
string result = await "https://www.di.se/bors/aktier/".GetStringAsync();
|
||||
Console.WriteLine(result);
|
||||
}
|
||||
}
|
||||
}
|
||||
12
WebFlurl/WebFlurl.csproj
Normal file
12
WebFlurl/WebFlurl.csproj
Normal file
@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Flurl.Http" Version="3.2.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user