26 lines
697 B
XML
26 lines
697 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>warnings</Nullable>
|
|
<BaseOutputPath>bin\</BaseOutputPath>
|
|
<AssemblyName>Music Commands</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputPath>../BUILDS/</OutputPath>
|
|
<ErrorReport>none</ErrorReport>
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PluginManager\PluginManager.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="YoutubeExplode" Version="6.2.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|