15 lines
608 B
C#
15 lines
608 B
C#
// Intentional test-project globals (avoid duplicating per-file usings; watch for name clashes with local types).
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using Microsoft.Extensions.Logging.Abstractions;
|
|
global using Microsoft.Extensions.Options;
|
|
global using NeonSprawl.Server.Game.Npc;
|
|
global using NeonSprawl.Server.Game.Skills;
|
|
global using NeonSprawl.Server.Tests.Game.Npc;
|
|
global using NeonSprawl.Server.Tests.Game.Skills;
|
|
global using Npgsql;
|
|
global using System.Net;
|
|
global using System.Net.Http.Json;
|
|
global using System.Text;
|
|
global using System.Text.Json;
|
|
global using Xunit;
|