Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump xunit.runner.visualstudio from 2.5.8 to 2.8.0 #116

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Tests/UnitTests/UnitTests.csproj
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="2.7.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.8">
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>

Unchanged files with check annotations Beta

{
internal class StandardIoConnector : IConnector, IDisposable
{
public event Func<string, Task>? RawMessageReceived;

Check warning on line 9 in src/MilkiBotFramework/Connecting/StandardIoConnector.cs

GitHub Actions / Build & Check

The event 'StandardIoConnector.RawMessageReceived' is never used

Check warning on line 9 in src/MilkiBotFramework/Connecting/StandardIoConnector.cs

GitHub Actions / Build & Check

The event 'StandardIoConnector.RawMessageReceived' is never used

Check warning on line 9 in src/MilkiBotFramework/Connecting/StandardIoConnector.cs

GitHub Actions / Build & Check

The event 'StandardIoConnector.RawMessageReceived' is never used

Check warning on line 9 in src/MilkiBotFramework/Connecting/StandardIoConnector.cs

GitHub Actions / Build & Check

The event 'StandardIoConnector.RawMessageReceived' is never used
private readonly ILogger _logger;
private readonly AsyncLock _singletonIoLock = new();
private bool _enable;
namespace DemoBot;
public class TestConfiguration : ConfigurationBase

Check notice on line 6 in src/Samples/DemoBot/TestConfiguration.cs

GitHub Actions / Build & Check

Class 'TestConfiguration' is never instantiated in src\Samples\DemoBot\TestConfiguration.cs on line 6
{
[Description("Testing for comment in config file!")]
public string Key1 { get; set; } = "";

Check notice on line 9 in src/Samples/DemoBot/TestConfiguration.cs

GitHub Actions / Build & Check

Property 'Key1' is never used in src\Samples\DemoBot\TestConfiguration.cs on line 9
[Description("这是一条注释,这是个数字!")]
public int Key2 { get; set; }
{
public class WeatherForecast
{
public DateTime Date { get; set; }

Check notice on line 5 in src/Samples/DemoBot/WeatherForecast.cs

GitHub Actions / Build & Check

Auto-property accessor 'Date.get' is never used in src\Samples\DemoBot\WeatherForecast.cs on line 5
public int TemperatureC { get; set; }

Check notice on line 7 in src/Samples/DemoBot/WeatherForecast.cs

GitHub Actions / Build & Check

Property can be made init-only in src\Samples\DemoBot\WeatherForecast.cs on line 7
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);

Check notice on line 9 in src/Samples/DemoBot/WeatherForecast.cs

GitHub Actions / Build & Check

Property 'TemperatureF' is never used in src\Samples\DemoBot\WeatherForecast.cs on line 9
public string? Summary { get; set; }

Check notice on line 11 in src/Samples/DemoBot/WeatherForecast.cs

GitHub Actions / Build & Check

Auto-property accessor 'Summary.get' is never used in src\Samples\DemoBot\WeatherForecast.cs on line 11
}
}
public class Bot
{
public event Func<DispatchMessageEvent, Task>? OnMessageReceived;

Check notice on line 14 in src/MilkiBotFramework/Bot.cs

GitHub Actions / Build & Check

Event 'OnMessageReceived' is never subscribed to in src\MilkiBotFramework\Bot.cs on line 14
private int _exitCode;
private TaskCompletionSource? _connectionTcs;
});
}
public IConnector Connector { get; }

Check notice on line 50 in src/MilkiBotFramework/Bot.cs

GitHub Actions / Build & Check

Property 'Connector' can be made private in src\MilkiBotFramework\Bot.cs on line 50
public IContactsManager ContactsManager { get; }

Check notice on line 51 in src/MilkiBotFramework/Bot.cs

GitHub Actions / Build & Check

Property 'ContactsManager' can be made private in src\MilkiBotFramework\Bot.cs on line 51
public IDispatcher Dispatcher { get; }

Check notice on line 52 in src/MilkiBotFramework/Bot.cs

GitHub Actions / Build & Check

Auto-property accessor 'Dispatcher.get' is never used in src\MilkiBotFramework\Bot.cs on line 52
public ILogger Logger { get; }
public IMessageApi MessageApi { get; }
public IRichMessageConverter RichMessageConverter { get; }