mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-09 23:45:42 +00:00
(#14) Declare using directives outside of namespace
This commit is contained in:
parent
0197d89e48
commit
6e6d6c48fb
@ -1,7 +1,8 @@
|
|||||||
|
using System;
|
||||||
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
|
|
||||||
namespace X10D.Tests.Core
|
namespace X10D.Tests.Core
|
||||||
{
|
{
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tests for <see cref="BooleanExtensions" />.
|
/// Tests for <see cref="BooleanExtensions" />.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
|
|
||||||
namespace X10D.Tests.Core
|
namespace X10D.Tests.Core
|
||||||
{
|
{
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tests for <see cref="ByteExtensions" />.
|
/// Tests for <see cref="ByteExtensions" />.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
|
|
||||||
namespace X10D.Tests.Core
|
namespace X10D.Tests.Core
|
||||||
{
|
{
|
||||||
using System;
|
|
||||||
using System.Linq;
|
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tests for <see cref="CharExtensions" />.
|
/// Tests for <see cref="CharExtensions" />.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
|
|
||||||
namespace X10D.Tests.Core
|
namespace X10D.Tests.Core
|
||||||
{
|
{
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tests for <see cref="ComparableExtensions" />.
|
/// Tests for <see cref="ComparableExtensions" />.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
namespace X10D.Tests.Core
|
using System;
|
||||||
{
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
using System.Linq;
|
|
||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
||||||
|
|
||||||
|
namespace X10D.Tests.Core
|
||||||
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tests for <see cref="StringExtensions" />.
|
/// Tests for <see cref="StringExtensions" />.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
namespace X10D.Unity
|
using System;
|
||||||
{
|
using JetBrains.Annotations;
|
||||||
using System;
|
using UnityEngine;
|
||||||
using JetBrains.Annotations;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
|
namespace X10D.Unity
|
||||||
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Extension methods for <see cref="GameObject" />.
|
/// Extension methods for <see cref="GameObject" />.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
namespace X10D.Unity
|
using UnityEngine;
|
||||||
|
|
||||||
|
namespace X10D.Unity
|
||||||
{
|
{
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Extension methods for <see cref="Vector3" />.
|
/// Extension methods for <see cref="Vector3" />.
|
||||||
|
Loading…
Reference in New Issue
Block a user