Skip to content

Commit

Permalink
Rename project files
Browse files Browse the repository at this point in the history
  • Loading branch information
AeonLucid committed Sep 20, 2020
1 parent 7b45698 commit af3687a
Show file tree
Hide file tree
Showing 40 changed files with 63 additions and 63 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\AmongUs.Shared\AmongUs.Shared.csproj" />
<ProjectReference Include="..\Impostor.Shared\Impostor.Shared.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using System.IO;
using AmongUs.Shared.Innersloth;
using Impostor.Shared.Innersloth;

namespace AmongUs.Client
namespace Impostor.Client
{
internal static class Program
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AmongUs.Server.Data
namespace Impostor.Server.Data
{
public static class DisconnectMessages
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;

namespace AmongUs.Server.Exceptions
namespace Impostor.Server.Exceptions
{
public class AmongUsException : Exception
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using AmongUs.Server.Net.Response;
using Hazel;
using Hazel;
using Impostor.Server.Net.Response;

namespace AmongUs.Server.Extensions
namespace Impostor.Server.Extensions
{
internal static class ConnectionExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<ItemGroup>
<ProjectReference Include="..\..\submodules\Hazel-Networking\Hazel\Hazel.csproj" />
<ProjectReference Include="..\AmongUs.Shared\AmongUs.Shared.csproj" />
<ProjectReference Include="..\Impostor.Shared\Impostor.Shared.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
using System;
using AmongUs.Server.Data;
using AmongUs.Server.Extensions;
using AmongUs.Server.Net.Response;
using AmongUs.Shared.Innersloth;
using AmongUs.Shared.Innersloth.Data;
using Hazel;
using Impostor.Server.Data;
using Impostor.Server.Extensions;
using Impostor.Server.Net.Response;
using Impostor.Shared.Innersloth;
using Impostor.Shared.Innersloth.Data;
using Serilog;
using ILogger = Serilog.ILogger;

namespace AmongUs.Server.Net
namespace Impostor.Server.Net
{
public class Client
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Collections.Concurrent;
using AmongUs.Server.Exceptions;
using Impostor.Server.Exceptions;
using Serilog;

namespace AmongUs.Server.Net
namespace Impostor.Server.Net
{
public class ClientManager
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using AmongUs.Shared.Innersloth.Data;
using Impostor.Shared.Innersloth.Data;

namespace AmongUs.Server.Net
namespace Impostor.Server.Net
{
public class ClientPlayer
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
using System.Collections.Generic;
using System.Linq;
using System.Net;
using AmongUs.Server.Data;
using AmongUs.Server.Exceptions;
using AmongUs.Server.Extensions;
using AmongUs.Server.Net.Response;
using AmongUs.Shared.Innersloth;
using AmongUs.Shared.Innersloth.Data;
using Hazel;
using Impostor.Server.Data;
using Impostor.Server.Exceptions;
using Impostor.Server.Extensions;
using Impostor.Server.Net.Response;
using Impostor.Shared.Innersloth;
using Impostor.Shared.Innersloth.Data;
using Serilog;
using ILogger = Serilog.ILogger;

namespace AmongUs.Server.Net
namespace Impostor.Server.Net
{
public class Game
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Collections.Concurrent;
using AmongUs.Shared.Innersloth;
using Impostor.Shared.Innersloth;
using Serilog;

namespace AmongUs.Server.Net
namespace Impostor.Server.Net
{
public class GameManager
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AmongUs.Server.Net
namespace Impostor.Server.Net
{
public enum GameStates : byte
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using System.Net;
using AmongUs.Server.Extensions;
using AmongUs.Server.Net.Response;
using AmongUs.Shared.Innersloth.Data;
using Hazel;
using Hazel.Udp;
using Impostor.Server.Extensions;
using Impostor.Server.Net.Response;
using Impostor.Shared.Innersloth.Data;
using Serilog;
using ILogger = Serilog.ILogger;

namespace AmongUs.Server.Net
namespace Impostor.Server.Net
{
public class Matchmaker
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using AmongUs.Shared.Innersloth.Data;
using Hazel;
using Hazel;
using Impostor.Shared.Innersloth.Data;

namespace AmongUs.Server.Net.Response
namespace Impostor.Server.Net.Response
{
public class Message1DisconnectReason : MessageBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using Hazel;

namespace AmongUs.Server.Net.Response
namespace Impostor.Server.Net.Response
{
public abstract class MessageBase : IDisposable
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AmongUs.Server.Net.Response
namespace Impostor.Server.Net.Response
{
public enum MessageFlag : byte
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System;
using System.Net;
using System.Threading;
using AmongUs.Server.Net;
using Impostor.Server.Net;
using Serilog;

namespace AmongUs.Server
namespace Impostor.Server
{
internal static class Program
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AmongUs.Shared.Innersloth.Data
namespace Impostor.Shared.Innersloth.Data
{
public enum AlterGameTags : byte
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AmongUs.Shared.Innersloth.Data
namespace Impostor.Shared.Innersloth.Data
{
public enum DisconnectReason
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace AmongUs.Shared.Innersloth.Data
namespace Impostor.Shared.Innersloth.Data
{
[Flags]
public enum GameKeywords : uint
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AmongUs.Shared.Innersloth.Data
namespace Impostor.Shared.Innersloth.Data
{
public enum GameStates : byte
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AmongUs.Shared.Innersloth.Data
namespace Impostor.Shared.Innersloth.Data
{
public enum LimboStates
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AmongUs.Shared.Innersloth.Data
namespace Impostor.Shared.Innersloth.Data
{
public enum RequestFlag : byte
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Security.Cryptography;
using System.Text;

namespace AmongUs.Shared.Innersloth
namespace Impostor.Shared.Innersloth
{
public static class GameCode
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using System.IO;
using AmongUs.Shared.Innersloth.Data;
using Impostor.Shared.Innersloth.Data;

namespace AmongUs.Shared.Innersloth
namespace Impostor.Shared.Innersloth
{
public class GameOptionsData
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.IO;

namespace AmongUs.Shared.Innersloth
namespace Impostor.Shared.Innersloth
{
public class RegionInfo
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.IO;
using System.Net;

namespace AmongUs.Shared.Innersloth
namespace Impostor.Shared.Innersloth
{
public class ServerInfo
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Text;

namespace AmongUs.Tools.Proxy
namespace Impostor.Shared.Utils
{
public static class HexUtils
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using AmongUs.Shared.Innersloth;
using Impostor.Shared.Innersloth;
using Xunit;

namespace AmongUs.Tests
namespace Impostor.Tests
{
public class GameCodeTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AmongUs.Shared\AmongUs.Shared.csproj" />
<ProjectReference Include="..\Impostor.Shared\Impostor.Shared.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Text;

namespace AmongUs.Shared.Utils
namespace Impostor.Tools.Proxy
{
public static class HexUtils
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using PcapDotNet.Core;
using PcapDotNet.Packets;

namespace AmongUs.Tools.Proxy
namespace Impostor.Tools.Proxy
{
internal static class Program
{
Expand Down
12 changes: 6 additions & 6 deletions src/AmongUsServer.sln → src/Impostor.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30503.244
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AmongUs.Agent", "AmongUs.Agent\AmongUs.Agent.vcxproj", "{097BE795-88E9-4E7B-92F3-F6DDDBE3F012}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Imposter.Agent", "Imposter.Agent\Imposter.Agent.vcxproj", "{097BE795-88E9-4E7B-92F3-F6DDDBE3F012}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Server", "AmongUs.Server\AmongUs.Server.csproj", "{1B0390AF-A4F3-4FE4-B093-708B0135C0B3}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Server", "Imposter.Server\Imposter.Server.csproj", "{1B0390AF-A4F3-4FE4-B093-708B0135C0B3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Client", "AmongUs.Client\AmongUs.Client.csproj", "{24F07173-D4A7-41C6-BA51-4516AB68343C}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Client", "Imposter.Client\Imposter.Client.csproj", "{24F07173-D4A7-41C6-BA51-4516AB68343C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Shared", "AmongUs.Shared\AmongUs.Shared.csproj", "{1D109A96-FADF-41B9-A845-457A7A5C0C5A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Shared", "Imposter.Shared\Imposter.Shared.csproj", "{1D109A96-FADF-41B9-A845-457A7A5C0C5A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "submodules", "submodules", "{DFA3CC6A-A27C-4713-876D-A55912C78C45}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hazel", "..\submodules\Hazel-Networking\Hazel\Hazel.csproj", "{02CFBD30-D77D-400F-94B2-700F60EFDD7F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Tests", "AmongUs.Tests\AmongUs.Tests.csproj", "{C1385C67-A7DD-46D2-80F6-FA428B85FB22}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Tests", "Imposter.Tests\Imposter.Tests.csproj", "{C1385C67-A7DD-46D2-80F6-FA428B85FB22}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{56DD9707-D811-4056-9E2C-8A9CC2479B07}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmongUs.Tools.Proxy", "AmongUs.Tools.Proxy\AmongUs.Tools.Proxy.csproj", "{D16B8DE9-8EE2-4F6A-9352-305D5AB0233D}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Imposter.Tools.Proxy", "Imposter.Tools.Proxy\Imposter.Tools.Proxy.csproj", "{D16B8DE9-8EE2-4F6A-9352-305D5AB0233D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down

0 comments on commit af3687a

Please sign in to comment.