2026-02-02 13:33:23 -06:00
|
|
|
global using System.Globalization;
|
2026-02-02 13:18:41 -06:00
|
|
|
global using System.IdentityModel.Tokens.Jwt;
|
2026-02-06 06:48:34 -06:00
|
|
|
global using System.IO.Abstractions;
|
2026-02-02 13:33:23 -06:00
|
|
|
global using System.Security.Cryptography;
|
2026-02-06 06:48:34 -06:00
|
|
|
global using System.Text;
|
|
|
|
|
global using System.Text.Json;
|
2026-02-02 13:33:23 -06:00
|
|
|
|
2026-02-02 13:18:41 -06:00
|
|
|
global using AwesomeAssertions.Primitives;
|
|
|
|
|
|
2026-03-03 07:36:09 -06:00
|
|
|
global using FiscalOS.Core.Accounts;
|
2026-02-02 13:18:41 -06:00
|
|
|
global using FiscalOS.Core.Identity;
|
2026-02-06 06:48:34 -06:00
|
|
|
global using FiscalOS.Core.Security;
|
2026-03-03 07:36:09 -06:00
|
|
|
global using FiscalOS.Core.Transactions;
|
|
|
|
|
global using FiscalOS.Infra.Accounts.Plaid;
|
2026-02-02 13:18:41 -06:00
|
|
|
global using FiscalOS.Infra.Authentication;
|
2026-02-06 06:48:34 -06:00
|
|
|
global using FiscalOS.Infra.Authorization;
|
2026-03-03 07:36:09 -06:00
|
|
|
global using FiscalOS.Infra.Data;
|
2026-02-06 06:48:34 -06:00
|
|
|
global using FiscalOS.Infra.Security;
|
2026-02-02 13:18:41 -06:00
|
|
|
global using FiscalOS.Infra.Tests.Assertions;
|
2026-02-06 06:48:34 -06:00
|
|
|
global using FiscalOS.Infra.Tests.Mocks;
|
2026-03-03 07:36:09 -06:00
|
|
|
global using FiscalOS.Infra.Transactions.Plaid;
|
2026-02-02 13:18:41 -06:00
|
|
|
|
2026-02-06 06:48:34 -06:00
|
|
|
global using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
|
|
|
global using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
global using Microsoft.AspNetCore.Authorization.Policy;
|
|
|
|
|
global using Microsoft.AspNetCore.Http;
|
|
|
|
|
global using Microsoft.AspNetCore.Mvc;
|
2026-03-03 07:36:09 -06:00
|
|
|
global using Microsoft.EntityFrameworkCore;
|
2026-02-06 06:48:34 -06:00
|
|
|
global using Microsoft.Extensions.Configuration;
|
2026-03-03 07:36:09 -06:00
|
|
|
global using Microsoft.Extensions.Logging;
|
2026-02-06 06:48:34 -06:00
|
|
|
global using Microsoft.Extensions.Options;
|
|
|
|
|
global using Microsoft.IdentityModel.Tokens;
|