Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ErnSur committed Aug 3, 2023
1 parent 6c90575 commit 9b0b08b
Show file tree
Hide file tree
Showing 21 changed files with 32 additions and 20 deletions.
3 changes: 3 additions & 0 deletions Assembly-CSharp.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=packages_005Ccom_002Equickeye_002Eutility_005Coneasset/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=packages_005Ccom_002Equickeye_002Eutility_005Coneasset_005Ctests/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
4 changes: 4 additions & 0 deletions OneAsset.Editor.Tests.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=packages_005Ccom_002Equickeye_002Eutility_005Coneasset/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=packages_005Ccom_002Equickeye_002Eutility_005Coneasset_005Ctests/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=packages_005Ccom_002Equickeye_002Eutility_005Coneasset_005Ctests_005Ceditor/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
3 changes: 3 additions & 0 deletions OneAsset.Editor.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=packages_005Ccom_002Equickeye_002Eutility_005Coneasset/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=packages_005Ccom_002Equickeye_002Eutility_005Coneasset_005Ceditor/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
3 changes: 3 additions & 0 deletions OneAsset.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=packages_005Ccom_002Equickeye_002Eutility_005Coneasset/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=packages_005Ccom_002Equickeye_002Eutility_005Coneasset_005Cruntime/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "OneAsset.Editor",
"rootNamespace": "",
"rootNamespace": "OneAsset.Editor",
"references": [
"OneAsset"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using UnityEditor;
using Object = UnityEngine.Object;

namespace OneAsset.Editor.EditorGUIExtension
namespace OneAsset.Editor.UI
{
internal static class LoadFromAssetCache
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using OneAsset.Editor.EditorGUIExtension;
using UnityEditor;

namespace OneAsset.Editor.UI
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace OneAsset.Editor.EditorGUIExtension
namespace OneAsset.Editor.UI
{
public abstract class PostHeaderDrawer
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using System.IO;
using OneAsset.Editor;
using UnityEditor;
using UnityEngine;

namespace OneAsset.Editor.EditorGUIExtension
namespace OneAsset.Editor.UI
{
using static SingletonGUI;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using UnityEditor;
using UnityEngine;

namespace OneAsset.Editor.EditorGUIExtension
namespace OneAsset.Editor.UI
{
internal static class SingletonGUI
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
using OneAsset.Editor.UI;
using UnityEditor;
using UnityEngine;

namespace OneAsset.Editor.EditorGUIExtension
namespace OneAsset.Editor.UI
{
using static SingletonGUI;

Expand Down
13 changes: 12 additions & 1 deletion Packages/com.quickeye.utility/OneAsset/Runtime/OneAsset.asmdef
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
{
"name": "OneAsset"
"name": "OneAsset",
"rootNamespace": "OneAsset",
"references": [],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "OneAsset.Editor.Tests",
"rootNamespace": "",
"rootNamespace": "OneAsset.Editor.Tests",
"references": [
"UnityEngine.TestRunner",
"UnityEditor.TestRunner",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.IO;
using NUnit.Framework;
using OneAsset;
using UnityEditor;
using UnityEngine;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework;
using OneAsset;

namespace OneAsset.Editor.Tests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using NUnit.Framework;
using OneAsset;
using UnityEngine;

namespace OneAsset.Editor.Tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using OneAsset;
using UnityEngine;

namespace OneAsset.Editor.Tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using OneAsset;
using UnityEngine;

namespace OneAsset.Editor.Tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using OneAsset;
using UnityEngine;

namespace OneAsset.Editor.Tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using OneAsset;
using UnityEngine;

namespace OneAsset.Editor.Tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using OneAsset;

namespace OneAsset.Editor.Tests
{
internal class SsoWithNoAsset : SingletonScriptableObject<SsoWithNoAsset>
Expand Down

0 comments on commit 9b0b08b

Please sign in to comment.