project setup with example bot

This commit is contained in:
Aster Fialla
2026-02-12 20:05:31 -05:00
commit 0ba4fee9e7
10 changed files with 713 additions and 0 deletions

15
PluralFlux.csproj Normal file
View File

@@ -0,0 +1,15 @@
<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="Fluxer.Net" Version="1.0.0-alpha11" />
</ItemGroup>
</Project>