rework to have only 1 exe!

This commit is contained in:
Alex Bezdieniezhnykh
2024-12-04 20:51:26 +02:00
parent 3944df8efe
commit 60519461a1
25 changed files with 194 additions and 198 deletions
+2 -2
View File
@@ -6,10 +6,10 @@ namespace Azaion.Annotator.Test;
public class HardwareServiceTest
{
[Fact]
public async Task GetHardware_Test()
public void GetHardware_Test()
{
var hardwareService = new HardwareService();
var hw = await hardwareService.GetHardware();
var hw = hardwareService.GetHardware();
Console.WriteLine(hw);
}
}