-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathInteractivity.csproj
More file actions
37 lines (33 loc) · 1.68 KB
/
Copy pathInteractivity.csproj
File metadata and controls
37 lines (33 loc) · 1.68 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../Common.targets" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<AssemblyName>DisCatSharp.Examples.Interactivity</AssemblyName>
<RootNamespace>DisCatSharp.Examples.Interactivity</RootNamespace>
<PackageId>DisCatSharp.Examples.Interactivity</PackageId>
<Authors>Lala Sabathil <aiko@aitsys.dev>, QuantuChi</Authors>
<Description>DisCatSharp Interactivity Example Bot</Description>
<Copyright>2021-2024 AITSYS</Copyright>
<PackageProjectUrl>https://examples.dcs.aitsys.dev</PackageProjectUrl>
<RepositoryUrl>https://github.com/Aiko-IT-Systems/DisCatSharp.Examples</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Company>Aiko IT Systems</Company>
<Product>DisCatSharp.Examples.Interactivity</Product>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;DV2001</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;DV2001</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DisCatSharp" Version="$(DisCatSharpVersion)" />
<PackageReference Include="DisCatSharp.ApplicationCommands" Version="$(DisCatSharpVersion)" />
<PackageReference Include="DisCatSharp.Interactivity" Version="$(DisCatSharpVersion)" />
<PackageReference Include="DisCatSharp.Voice" Version="$(DisCatSharpVersion)" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="Serilog.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
</ItemGroup>
</Project>