-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathFAQBot-CC.fsproj
50 lines (41 loc) · 1.97 KB
/
FAQBot-CC.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>FAQBotCC</RootNamespace>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="faqs/*.md" />
<Compile Include="src/Config.fs" />
<Compile Include="src/Telemetry.fs" />
<Compile Include="src/Extensions.fs" />
<Compile Include="src/CachedRequest.fs" />
<Compile Include="src/FaqList.fs" />
<Compile Include="src/Lookup.fs" />
<Compile Include="src/LuaNames.fs" />
<Compile Include="src/Commands/About.fs" />
<Compile Include="src/Commands/Docs.fs" />
<Compile Include="src/Commands/Eval.fs" />
<Compile Include="src/Commands/Faq.fs" />
<Compile Include="src/Discord.fs" />
<Compile Include="src/Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Discord.Net" Version="3.16.0" />
<PackageReference Include="FuzzySharp" Version="2.0.2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.8.1" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.8.1" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" />
<PackageReference Include="OpenTelemetry.Extensions.Propagators" Version="1.8.1" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.8.1" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="YamlDotNet" Version="16.1.3" />
</ItemGroup>
</Project>