initial release

This commit is contained in:
2025-12-16 16:43:13 -05:00
commit aa76cc9969
6 changed files with 225 additions and 0 deletions

19
FtpThing.csproj Normal file
View File

@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cronos" Version="0.11.1" />
<PackageReference Include="Serilog" Version="4.3.1-dev-02395" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="8.0.0-dev-02318" />
<PackageReference Include="SSH.NET" Version="2025.1.0" />
</ItemGroup>
</Project>