(#14) Declare using directives outside of namespace

This commit is contained in:
Oliver Booth 2021-07-19 12:48:58 +01:00
parent 0197d89e48
commit 6e6d6c48fb
No known key found for this signature in database
GPG Key ID: A4AC17007530E9B4
7 changed files with 21 additions and 23 deletions

View File

@ -1,7 +1,8 @@
namespace X10D.Tests.Core
{
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace X10D.Tests.Core
{
/// <summary>
/// Tests for <see cref="BooleanExtensions" />.
/// </summary>

View File

@ -1,9 +1,7 @@
namespace X10D.Tests.Core
{
using System.Collections.Generic;
using System.Text;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace X10D.Tests.Core
{
/// <summary>
/// Tests for <see cref="ByteExtensions" />.
/// </summary>

View File

@ -1,9 +1,7 @@
namespace X10D.Tests.Core
{
using System;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace X10D.Tests.Core
{
/// <summary>
/// Tests for <see cref="CharExtensions" />.
/// </summary>

View File

@ -1,7 +1,7 @@
namespace X10D.Tests.Core
{
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace X10D.Tests.Core
{
/// <summary>
/// Tests for <see cref="ComparableExtensions" />.
/// </summary>

View File

@ -1,8 +1,8 @@
namespace X10D.Tests.Core
{
using System.Linq;
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace X10D.Tests.Core
{
/// <summary>
/// Tests for <see cref="StringExtensions" />.
/// </summary>

View File

@ -1,9 +1,9 @@
namespace X10D.Unity
{
using System;
using JetBrains.Annotations;
using UnityEngine;
namespace X10D.Unity
{
/// <summary>
/// Extension methods for <see cref="GameObject" />.
/// </summary>

View File

@ -1,7 +1,8 @@
namespace X10D.Unity
{
using UnityEngine;
namespace X10D.Unity
{
/// <summary>
/// Extension methods for <see cref="Vector3" />.
/// </summary>