* Update all dependencies and deal with warning/errors * Add updated AsyncEnumerable implementation * Fix broken target * Cleanup * Remove obsolete message * typo * Update azure pipelines * Update samples to .NET Core 3.0 * Pull out test change * Install the .net core 3 SDK on the ubuntu image for the time being * Target net core 3 for the unit tests because pipelines
15 lines
659 B
XML
15 lines
659 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="../../Discord.Net.targets" />
|
|
<PropertyGroup>
|
|
<AssemblyName>Discord.Net.Commands</AssemblyName>
|
|
<RootNamespace>Discord.Commands</RootNamespace>
|
|
<Description>A Discord.Net extension adding support for bot commands.</Description>
|
|
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net461;netstandard2.0;netstandard2.1</TargetFrameworks>
|
|
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0;netstandard2.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|