ede4efa4e3
Added router class using attributes Added success parameter to mc computer response Added generic answer type class (for future choice results) Changelog: added
28 lines
1.0 KiB
XML
28 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<Version>1.0.2</Version>
|
|
<Authors>Michael Chen</Authors>
|
|
<Company>$(Authors)</Company>
|
|
<RepositoryUrl>https://gitlab.com/chenmichael/mcdiscordbot</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<AssemblyVersion>$(VersionPrefix)</AssemblyVersion>
|
|
<FileVersion>$(VersionPrefix)</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.8.0" />
|
|
<PackageReference Include="Discord.Net" Version="3.1.0" />
|
|
<PackageReference Include="Fleck" Version="1.2.0" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="OneOf" Version="3.0.205" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|