49 lines
1.1 KiB
XML
49 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>disable</Nullable>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<SignAssembly>False</SignAssembly>
|
|
<IsPublishable>True</IsPublishable>
|
|
<AssemblyVersion>1.0.0.2</AssemblyVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>none</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>none</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Data\**" />
|
|
<Compile Remove="obj\**" />
|
|
<Compile Remove="Output\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Remove="Data\**" />
|
|
<EmbeddedResource Remove="obj\**" />
|
|
<EmbeddedResource Remove="Output\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Data\**" />
|
|
<None Remove="obj\**" />
|
|
<None Remove="Output\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Discord.Net" Version="3.7.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PluginManager\PluginManager.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|