dags att checka in

This commit is contained in:
2021-08-02 12:41:02 +02:00
parent 5648effc9a
commit 668659bf20
34 changed files with 1092 additions and 5 deletions

15
WebFlurl/Program.cs Normal file
View 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
View 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>