1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-08-08 10:12:50 +00:00

Added dotnet FCast client.

This commit is contained in:
Koen 2024-01-06 13:20:01 +01:00
parent f0fa5c067f
commit c4e9303cc3
8 changed files with 1191 additions and 0 deletions

View file

@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\FCastClient\FCastClient.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NestedArgs" Version="1.0.0" />
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>