24 lines
766 B
XML
24 lines
766 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<FileAlignment>512</FileAlignment>
|
|
<DebugType>portable</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Config.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Remove="BlankWindow1.xaml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Discord.Net" Version="3.15.2" />
|
|
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<UpToDateCheckInput Remove="UI\Controls\MessageBox.axaml" />
|
|
</ItemGroup>
|
|
</Project> |