change namespace
This commit is contained in:
		
							parent
							
								
									d5cfc2bd4f
								
							
						
					
					
						commit
						b9d8c3a5b8
					
				@ -1,6 +1,6 @@
 | 
				
			|||||||
using Fleck;
 | 
					using Fleck;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace ExtinctionOnline.Server.ClientData
 | 
					namespace ExtinctionOnline.Server
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    public class ClientInfo
 | 
					    public class ClientInfo
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,8 +1,4 @@
 | 
				
			|||||||
using ExtinctionOnline.Server.ClientData;
 | 
					namespace ExtinctionOnline.Server
 | 
				
			||||||
using ExtinctionOnline.Server.Communication;
 | 
					 | 
				
			||||||
using ExtinctionOnline.Server.Room;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace ExtinctionOnline.Server
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    internal class Commands
 | 
					    internal class Commands
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,6 +1,6 @@
 | 
				
			|||||||
using System.Text.Json.Serialization;
 | 
					using System.Text.Json.Serialization;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace ExtinctionOnline.Server.Communication
 | 
					namespace ExtinctionOnline.Server
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    public class MessageData
 | 
					    public class MessageData
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
				
			|||||||
@ -3,7 +3,7 @@ using System.Text.Json;
 | 
				
			|||||||
using System.Text.Json.Serialization;
 | 
					using System.Text.Json.Serialization;
 | 
				
			||||||
using System.Text.Unicode;
 | 
					using System.Text.Unicode;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace ExtinctionOnline.Server.Communication
 | 
					namespace ExtinctionOnline.Server
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    public class JsonUtil
 | 
					    public class JsonUtil
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,8 +0,0 @@
 | 
				
			|||||||
// This file is used by Code Analysis to maintain SuppressMessage
 | 
					 | 
				
			||||||
// attributes that are applied to this project.
 | 
					 | 
				
			||||||
// Project-level suppressions either have no target or are given
 | 
					 | 
				
			||||||
// a specific target and scoped to a namespace, type, member, etc.
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
using System.Diagnostics.CodeAnalysis;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[assembly: SuppressMessage("Style", "IDE0060:未使用のパラメーターを削除します", Justification = "<保留中>", Scope = "member", Target = "~M:ExtinctionOnline.Server.Commands.Room(ExtinctionOnline.Server.Communication.MessageData,ExtinctionOnline.Server.ClientData.ClientInfo,System.String)")]
 | 
					 | 
				
			||||||
@ -1,10 +1,4 @@
 | 
				
			|||||||
using System;
 | 
					namespace ExtinctionOnline.Server
 | 
				
			||||||
using System.Collections.Generic;
 | 
					 | 
				
			||||||
using System.Linq;
 | 
					 | 
				
			||||||
using System.Text;
 | 
					 | 
				
			||||||
using System.Threading.Tasks;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace ExtinctionOnline.Server
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    internal class Logo
 | 
					    internal class Logo
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,4 @@
 | 
				
			|||||||
using ExtinctionOnline.Server.ClientData;
 | 
					namespace ExtinctionOnline.Server
 | 
				
			||||||
using ExtinctionOnline.Server.Communication;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
namespace ExtinctionOnline.Server.Room
 | 
					 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    internal class RoomController
 | 
					    internal class RoomController
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,8 +1,6 @@
 | 
				
			|||||||
using ExtinctionOnline.Server.ClientData;
 | 
					using System.Text.Json;
 | 
				
			||||||
using ExtinctionOnline.Server.Communication;
 | 
					 | 
				
			||||||
using System.Text.Json;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace ExtinctionOnline.Server.Room
 | 
					namespace ExtinctionOnline.Server
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    internal class RoomData
 | 
					    internal class RoomData
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
 | 
				
			|||||||
@ -1,8 +1,4 @@
 | 
				
			|||||||
using ExtinctionOnline.Server.ClientData;
 | 
					using Fleck;
 | 
				
			||||||
using ExtinctionOnline.Server.Communication;
 | 
					 | 
				
			||||||
using ExtinctionOnline.Server.Room;
 | 
					 | 
				
			||||||
using Fleck;
 | 
					 | 
				
			||||||
using System.Collections.Generic;
 | 
					 | 
				
			||||||
using System.Text.Json;
 | 
					using System.Text.Json;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace ExtinctionOnline.Server
 | 
					namespace ExtinctionOnline.Server
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user