-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathApplicationCommands.csproj
More file actions
33 lines (33 loc) · 1.69 KB
/
Copy pathApplicationCommands.csproj
File metadata and controls
33 lines (33 loc) · 1.69 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../Common.targets" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<Authors>Lala Sabathil <aiko@aitsys.dev>, Lunar Starstrum, QuantuChi</Authors>
<Company>Aiko IT Systems</Company>
<PackageId>DisCatSharp.Examples.ApplicationCommands</PackageId>
<Product>DisCatSharp.Examples.ApplicationCommands</Product>
<Description>DisCatSharp ApplicationCommands Example Bot</Description>
<Copyright>2021-2024 AITSYS</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Aiko-IT-Systems/DisCatSharp.Examples</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://examples.dcs.aitsys.dev</PackageProjectUrl>
<RootNamespace>DisCatSharp.Examples.ApplicationCommands</RootNamespace>
<AssemblyName>DisCatSharp.Examples.ApplicationCommands</AssemblyName>
<StartupObject>DisCatSharp.Examples.ApplicationCommands.Program</StartupObject>
</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="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>