meta: Fix .NET Core 3.0 compatibility + Drop NS1.3 (#1382)
* 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
This commit is contained in:
@@ -16,18 +16,23 @@ jobs:
|
|||||||
pool:
|
pool:
|
||||||
vmImage: 'ubuntu-16.04'
|
vmImage: 'ubuntu-16.04'
|
||||||
steps:
|
steps:
|
||||||
|
- task: UseDotNet@2
|
||||||
|
displayName: 'Use .NET Core sdk'
|
||||||
|
inputs:
|
||||||
|
packageType: 'sdk'
|
||||||
|
version: '3.x'
|
||||||
- template: azure/build.yml
|
- template: azure/build.yml
|
||||||
|
|
||||||
- job: Windows_build
|
- job: Windows_build
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'vs2017-win2016'
|
vmImage: 'windows-2019'
|
||||||
condition: ne(variables['Build.SourceBranch'], 'refs/heads/dev')
|
condition: ne(variables['Build.SourceBranch'], 'refs/heads/dev')
|
||||||
steps:
|
steps:
|
||||||
- template: azure/build.yml
|
- template: azure/build.yml
|
||||||
|
|
||||||
- job: Windows_deploy
|
- job: Windows_deploy
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'vs2017-win2016'
|
vmImage: 'windows-2019'
|
||||||
condition: |
|
condition: |
|
||||||
and (
|
and (
|
||||||
succeeded(),
|
succeeded(),
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.0" />
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -2,10 +2,14 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
<RootNamespace>_03_sharded_client</RootNamespace>
|
<RootNamespace>_03_sharded_client</RootNamespace>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.0.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\..\src\Discord.Net.Commands\Discord.Net.Commands.csproj" />
|
<ProjectReference Include="..\..\src\Discord.Net.Commands\Discord.Net.Commands.csproj" />
|
||||||
<ProjectReference Include="..\..\src\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj" />
|
<ProjectReference Include="..\..\src\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj" />
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Import Project="../../Discord.Net.targets" />
|
<Import Project="../../Discord.Net.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>Discord.Net.Analyzers</AssemblyName>
|
<AssemblyName>Discord.Net.Analyzers</AssemblyName>
|
||||||
<RootNamespace>Discord.Analyzers</RootNamespace>
|
<RootNamespace>Discord.Analyzers</RootNamespace>
|
||||||
<Description>A Discord.Net extension adding support for design-time analysis of the API usage.</Description>
|
<Description>A Discord.Net extension adding support for design-time analysis of the API usage.</Description>
|
||||||
<TargetFramework>netstandard1.3</TargetFramework>
|
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis" Version="2.8.0" />
|
<PackageReference Include="Microsoft.CodeAnalysis" Version="3.3.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Discord.Net.Commands\Discord.Net.Commands.csproj" />
|
<ProjectReference Include="..\Discord.Net.Commands\Discord.Net.Commands.csproj" />
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Immutable;
|
using System.Collections.Immutable;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Microsoft.CodeAnalysis;
|
using Microsoft.CodeAnalysis;
|
||||||
@@ -24,6 +24,8 @@ namespace Discord.Analyzers
|
|||||||
|
|
||||||
public override void Initialize(AnalysisContext context)
|
public override void Initialize(AnalysisContext context)
|
||||||
{
|
{
|
||||||
|
context.EnableConcurrentExecution();
|
||||||
|
context.ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.Analyze | GeneratedCodeAnalysisFlags.ReportDiagnostics);
|
||||||
context.RegisterSyntaxNodeAction(AnalyzeMemberAccess, SyntaxKind.SimpleMemberAccessExpression);
|
context.RegisterSyntaxNodeAction(AnalyzeMemberAccess, SyntaxKind.SimpleMemberAccessExpression);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,16 +4,11 @@
|
|||||||
<AssemblyName>Discord.Net.Commands</AssemblyName>
|
<AssemblyName>Discord.Net.Commands</AssemblyName>
|
||||||
<RootNamespace>Discord.Commands</RootNamespace>
|
<RootNamespace>Discord.Commands</RootNamespace>
|
||||||
<Description>A Discord.Net extension adding support for bot commands.</Description>
|
<Description>A Discord.Net extension adding support for bot commands.</Description>
|
||||||
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net46;netstandard1.3;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net461;netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard1.3;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
|
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.0" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup Condition=" '$(TargetFramework)' != 'netstandard2.0' ">
|
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="1.1.1" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ namespace Discord.Commands
|
|||||||
string username = input.Substring(0, index);
|
string username = input.Substring(0, index);
|
||||||
if (ushort.TryParse(input.Substring(index + 1), out ushort discriminator))
|
if (ushort.TryParse(input.Substring(index + 1), out ushort discriminator))
|
||||||
{
|
{
|
||||||
var channelUser = await channelUsers.FirstOrDefault(x => x.DiscriminatorValue == discriminator &&
|
var channelUser = await channelUsers.FirstOrDefaultAsync(x => x.DiscriminatorValue == discriminator &&
|
||||||
string.Equals(username, x.Username, StringComparison.OrdinalIgnoreCase)).ConfigureAwait(false);
|
string.Equals(username, x.Username, StringComparison.OrdinalIgnoreCase)).ConfigureAwait(false);
|
||||||
AddResult(results, channelUser as T, channelUser?.Username == username ? 0.85f : 0.75f);
|
AddResult(results, channelUser as T, channelUser?.Username == username ? 0.85f : 0.75f);
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<AssemblyName>Discord.Net.Core</AssemblyName>
|
<AssemblyName>Discord.Net.Core</AssemblyName>
|
||||||
<RootNamespace>Discord</RootNamespace>
|
<RootNamespace>Discord</RootNamespace>
|
||||||
<Description>The core components for the Discord.Net library.</Description>
|
<Description>The core components for the Discord.Net library.</Description>
|
||||||
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net46;netstandard1.3;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net461;netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard1.3;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
||||||
<PackageReference Include="System.Collections.Immutable" Version="1.3.1" />
|
<PackageReference Include="System.Collections.Immutable" Version="1.3.1" />
|
||||||
<PackageReference Include="System.Interactive.Async" Version="3.2.0" />
|
<PackageReference Include="System.Interactive.Async" Version="4.0.0" />
|
||||||
<PackageReference Include="IDisposableAnalyzers" Version="2.1.2">
|
<PackageReference Include="IDisposableAnalyzers" Version="2.1.2">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ namespace Discord
|
|||||||
/// <summary> Flattens the specified pages into one <see cref="IEnumerable{T}"/> asynchronously. </summary>
|
/// <summary> Flattens the specified pages into one <see cref="IEnumerable{T}"/> asynchronously. </summary>
|
||||||
public static async Task<IEnumerable<T>> FlattenAsync<T>(this IAsyncEnumerable<IEnumerable<T>> source)
|
public static async Task<IEnumerable<T>> FlattenAsync<T>(this IAsyncEnumerable<IEnumerable<T>> source)
|
||||||
{
|
{
|
||||||
return await source.Flatten().ToArray().ConfigureAwait(false);
|
return await source.Flatten().ToArrayAsync().ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
/// <summary> Flattens the specified pages into one <see cref="IAsyncEnumerable{T}"/>. </summary>
|
/// <summary> Flattens the specified pages into one <see cref="IAsyncEnumerable{T}"/>. </summary>
|
||||||
public static IAsyncEnumerable<T> Flatten<T>(this IAsyncEnumerable<IEnumerable<T>> source)
|
public static IAsyncEnumerable<T> Flatten<T>(this IAsyncEnumerable<IEnumerable<T>> source)
|
||||||
|
|||||||
@@ -25,26 +25,28 @@ namespace Discord
|
|||||||
_nextPage = nextPage;
|
_nextPage = nextPage;
|
||||||
}
|
}
|
||||||
|
|
||||||
public IAsyncEnumerator<IReadOnlyCollection<T>> GetEnumerator() => new Enumerator(this);
|
public IAsyncEnumerator<IReadOnlyCollection<T>> GetAsyncEnumerator(CancellationToken cancellationToken = new CancellationToken()) => new Enumerator(this, cancellationToken);
|
||||||
internal class Enumerator : IAsyncEnumerator<IReadOnlyCollection<T>>
|
internal class Enumerator : IAsyncEnumerator<IReadOnlyCollection<T>>
|
||||||
{
|
{
|
||||||
private readonly PagedAsyncEnumerable<T> _source;
|
private readonly PagedAsyncEnumerable<T> _source;
|
||||||
|
private readonly CancellationToken _token;
|
||||||
private readonly PageInfo _info;
|
private readonly PageInfo _info;
|
||||||
|
|
||||||
public IReadOnlyCollection<T> Current { get; private set; }
|
public IReadOnlyCollection<T> Current { get; private set; }
|
||||||
|
|
||||||
public Enumerator(PagedAsyncEnumerable<T> source)
|
public Enumerator(PagedAsyncEnumerable<T> source, CancellationToken token)
|
||||||
{
|
{
|
||||||
_source = source;
|
_source = source;
|
||||||
|
_token = token;
|
||||||
_info = new PageInfo(source._start, source._count, source.PageSize);
|
_info = new PageInfo(source._start, source._count, source.PageSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<bool> MoveNext(CancellationToken cancelToken)
|
public async ValueTask<bool> MoveNextAsync()
|
||||||
{
|
{
|
||||||
if (_info.Remaining == 0)
|
if (_info.Remaining == 0)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
var data = await _source._getPage(_info, cancelToken).ConfigureAwait(false);
|
var data = await _source._getPage(_info, _token).ConfigureAwait(false);
|
||||||
Current = new Page<T>(_info, data);
|
Current = new Page<T>(_info, data);
|
||||||
|
|
||||||
_info.Page++;
|
_info.Page++;
|
||||||
@@ -71,7 +73,11 @@ namespace Discord
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispose() { Current = null; }
|
public ValueTask DisposeAsync()
|
||||||
|
{
|
||||||
|
Current = null;
|
||||||
|
return default;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
||||||
<ProjectReference Include="..\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj" />
|
<ProjectReference Include="..\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj" />
|
||||||
<PackageReference Include="JetBrains.Annotations" Version="2018.3.0" />
|
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Import Project="../../Discord.Net.targets" />
|
<Import Project="../../Discord.Net.targets" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<AssemblyName>Discord.Net.Providers.WS4Net</AssemblyName>
|
<AssemblyName>Discord.Net.Providers.WS4Net</AssemblyName>
|
||||||
<RootNamespace>Discord.Providers.WS4Net</RootNamespace>
|
<RootNamespace>Discord.Providers.WS4Net</RootNamespace>
|
||||||
<Description>An optional WebSocket client provider for Discord.Net using WebSocket4Net</Description>
|
<Description>An optional WebSocket client provider for Discord.Net using WebSocket4Net</Description>
|
||||||
<TargetFramework>netstandard1.3</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using Discord.Net.WebSockets;
|
using Discord.Net.WebSockets;
|
||||||
|
|
||||||
namespace Discord.Net.Providers.WS4Net
|
namespace Discord.Net.Providers.WS4Net
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -4,16 +4,13 @@
|
|||||||
<AssemblyName>Discord.Net.Rest</AssemblyName>
|
<AssemblyName>Discord.Net.Rest</AssemblyName>
|
||||||
<RootNamespace>Discord.Rest</RootNamespace>
|
<RootNamespace>Discord.Rest</RootNamespace>
|
||||||
<Description>A core Discord.Net library containing the REST client and models.</Description>
|
<Description>A core Discord.Net library containing the REST client and models.</Description>
|
||||||
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net46;netstandard1.3;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net461;netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard1.3;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
|
||||||
<PackageReference Include="System.Net.Http" Version="4.3.3" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
|
|
||||||
<Reference Include="System.Net.Http" />
|
<Reference Include="System.Net.Http" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -4,15 +4,12 @@
|
|||||||
<AssemblyName>Discord.Net.WebSocket</AssemblyName>
|
<AssemblyName>Discord.Net.WebSocket</AssemblyName>
|
||||||
<RootNamespace>Discord.WebSocket</RootNamespace>
|
<RootNamespace>Discord.WebSocket</RootNamespace>
|
||||||
<Description>A core Discord.Net library containing the WebSocket client and models.</Description>
|
<Description>A core Discord.Net library containing the WebSocket client and models.</Description>
|
||||||
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net46;netstandard1.3;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT' ">net461;netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard1.3;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
||||||
<ProjectReference Include="..\Discord.Net.Rest\Discord.Net.Rest.csproj" />
|
<ProjectReference Include="..\Discord.Net.Rest\Discord.Net.Rest.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
|
|
||||||
<PackageReference Include="System.Net.WebSockets.Client" Version="4.3.2" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<AssemblyName>Discord.Net.Webhook</AssemblyName>
|
<AssemblyName>Discord.Net.Webhook</AssemblyName>
|
||||||
<RootNamespace>Discord.Webhook</RootNamespace>
|
<RootNamespace>Discord.Webhook</RootNamespace>
|
||||||
<Description>A core Discord.Net library containing the Webhook client and models.</Description>
|
<Description>A core Discord.Net library containing the Webhook client and models.</Description>
|
||||||
<TargetFrameworks>netstandard1.3</TargetFrameworks>
|
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
<ProjectReference Include="..\Discord.Net.Core\Discord.Net.Core.csproj" />
|
||||||
|
|||||||
@@ -13,26 +13,26 @@
|
|||||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
<iconUrl>https://github.com/RogueException/Discord.Net/raw/dev/docs/marketing/logo/PackageLogo.png</iconUrl>
|
<iconUrl>https://github.com/RogueException/Discord.Net/raw/dev/docs/marketing/logo/PackageLogo.png</iconUrl>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<group targetFramework="net46">
|
<group targetFramework="net461">
|
||||||
<dependency id="Discord.Net.Core" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.Core" version="2.2.0-dev$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.Rest" version="2.2.0-dev$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="2.2.0-dev$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.Commands" version="2.2.0-dev$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="2.2.0-dev$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
<group targetFramework="netstandard1.3">
|
|
||||||
<dependency id="Discord.Net.Core" version="2.2.0-dev$suffix$" />
|
|
||||||
<dependency id="Discord.Net.Rest" version="2.2.0-dev$suffix$" />
|
|
||||||
<dependency id="Discord.Net.WebSocket" version="2.2.0-dev$suffix$" />
|
|
||||||
<dependency id="Discord.Net.Commands" version="2.2.0-dev$suffix$" />
|
|
||||||
<dependency id="Discord.Net.Webhook" version="2.2.0-dev$suffix$" />
|
|
||||||
</group>
|
|
||||||
<group targetFramework="netstandard2.0">
|
<group targetFramework="netstandard2.0">
|
||||||
<dependency id="Discord.Net.Core" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.Core" version="2.2.0-dev$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.Rest" version="2.2.0-dev$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="2.2.0-dev$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.Commands" version="2.2.0-dev$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="2.2.0-dev$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="2.2.0-dev$suffix$" />
|
||||||
|
</group>
|
||||||
|
<group targetFramework="netstandard2.1">
|
||||||
|
<dependency id="Discord.Net.Core" version="2.2.0-dev$suffix$" />
|
||||||
|
<dependency id="Discord.Net.Rest" version="2.2.0-dev$suffix$" />
|
||||||
|
<dependency id="Discord.Net.WebSocket" version="2.2.0-dev$suffix$" />
|
||||||
|
<dependency id="Discord.Net.Commands" version="2.2.0-dev$suffix$" />
|
||||||
|
<dependency id="Discord.Net.Webhook" version="2.2.0-dev$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
@@ -15,10 +15,13 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis" Version="3.0.0-beta4-final" />
|
<PackageReference Include="Microsoft.CodeAnalysis" Version="3.3.1" />
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
||||||
<PackageReference Include="xunit" Version="2.4.0" />
|
<PackageReference Include="xunit" Version="2.4.1" />
|
||||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
</PackageReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
using System.Linq;
|
|
||||||
using System.Reflection;
|
|
||||||
using Microsoft.DotNet.PlatformAbstractions;
|
|
||||||
using Microsoft.Extensions.DependencyModel;
|
|
||||||
|
|
||||||
namespace System
|
|
||||||
{
|
|
||||||
/// <summary> Polyfill of the AppDomain class from full framework. </summary>
|
|
||||||
internal class AppDomain
|
|
||||||
{
|
|
||||||
public static AppDomain CurrentDomain { get; private set; }
|
|
||||||
|
|
||||||
private AppDomain()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
static AppDomain()
|
|
||||||
{
|
|
||||||
CurrentDomain = new AppDomain();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Assembly[] GetAssemblies()
|
|
||||||
{
|
|
||||||
var rid = RuntimeEnvironment.GetRuntimeIdentifier();
|
|
||||||
var ass = DependencyContext.Default.GetRuntimeAssemblyNames(rid);
|
|
||||||
|
|
||||||
return ass.Select(xan => Assembly.Load(xan)).ToArray();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||||
@@ -15,9 +15,12 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
||||||
<PackageReference Include="xunit" Version="2.4.0" />
|
<PackageReference Include="xunit" Version="2.4.1" />
|
||||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
</PackageReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
<IsPackable>false</IsPackable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
@@ -13,9 +13,12 @@
|
|||||||
<ProjectReference Include="..\..\src\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj" />
|
<ProjectReference Include="..\..\src\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
|
||||||
<PackageReference Include="xunit" Version="2.4.0" />
|
<PackageReference Include="xunit" Version="2.4.1" />
|
||||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
</PackageReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Discord.Audio;
|
using Discord.Audio;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user