-
Notifications
You must be signed in to change notification settings - Fork 7
/
DenizenMetaBot.csproj
33 lines (33 loc) · 1.39 KB
/
DenizenMetaBot.csproj
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>DenizenBot</RootNamespace>
<AssemblyName>DenizenMetaBot</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>Latest</LangVersion>
<Product>DenizenMetaBot</Product>
<PackageId>DenizenMetaBot</PackageId>
<Copyright>Copyright (C) The DenizenScript Team 2019-2024</Copyright>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="**\*.resx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FreneticLLC.FreneticUtilities" Version="1.0.33" />
<PackageReference Include="System.Json" Version="4.7.1" />
<PackageReference Include="YamlDotNet" Version="16.1.3" />
<PackageReference Include="Discord.Net" Version="3.16.0" />
<PackageReference Include="Discord.Net.WebSocket" Version="3.16.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="mcmonkeyDiscordBotBase\*.*" />
<Compile Remove="mcmonkeyDiscordBotBase\**\*.*" />
<Compile Remove="SharpDenizenTools\*.*" />
<Compile Remove="SharpDenizenTools\**\*.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="mcmonkeyDiscordBotBase\mcmonkeyDiscordBotBase.csproj" />
<ProjectReference Include="SharpDenizenTools\SharpDenizenTools\SharpDenizenTools.csproj" />
</ItemGroup>
</Project>