Skip to content

Commit d437411

Browse files
author
Chris Maunder
committed
Missing 'using' statements
1 parent ba8cb8a commit d437411

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

src/demos/clients/Net/AiExplorer/Form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Windows.Forms;
99

1010
using CodeProject.AI.SDK.API;
11-
using CodeProject.AI.SDK.Server;
11+
using CodeProject.AI.SDK.Client;
1212
using CodeProject.AI.SDK.Utils;
1313

1414
using SkiaSharp.Views.Desktop;

src/demos/clients/Net/JsonAPI/Program.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
using CodeProject.AI.SDK;
2-
1+

2+
using System;
3+
using System.Net.Http;
34
using System.Net.Http.Headers;
45
using System.Text;
6+
using System.Threading.Tasks;
7+
8+
using CodeProject.AI.SDK.Common;
59

610
// A demonstration of sending a request to CodeProject.AI Server as JSON instead
711
// of FormData.

tests/CodeProject.AI.SDK.Tests/ImageUtilsTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using Xunit;
22
using CodeProject.AI.SDK.Utils;
33
using SkiaSharp;
4+
using System.IO;
45

56
namespace CodeProject.AI.SDK.Utils.Tests
67
{

tests/CodeProject.AI.SDK.Tests/Utils.Text.Tests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
using System.IO;
2+
13
using CodeProject.AI.SDK.Utils;
24

35
namespace CodeProject.AI.SDK.Tests

0 commit comments

Comments
 (0)