9fd50ee01e
Fixed cli help texts Added administrator options for critical methods Added result state for client and server specific errors Redirect root to help text Fixed fingerprint error, fingerprint must be case sensitive Re-Added online messages Added typing trigger for discord bot messages client: fixed chunkString for empty results preemtive wrap error objects for server messages both: added raw lua RS Bridge command entry
35 lines
1.1 KiB
XML
35 lines
1.1 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.1.1</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>
|
|
<EmbeddedResource Include="ClientScript.lua" />
|
|
</ItemGroup>
|
|
|
|
<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" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="ClientScript.lua" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|