21 lines
673 B
XML
21 lines
673 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<FileAlignment>512</FileAlignment>
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="BlankWindow1.xaml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Discord.Net" Version="3.8.1" />
|
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.117" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Others\Actions\" />
|
|
</ItemGroup>
|
|
</Project> |