From b0759f1c604cd3ea64236d0035b9b7699cac1473 Mon Sep 17 00:00:00 2001 From: brewdente <brewdente@gmail.com> Date: Mon, 27 Apr 2015 10:53:28 -0400 Subject: [PATCH] Fixing project organization. --- AutoWebPerf/AutoWebPerf.sln => AutoWebPerf.sln | 4 ++-- .../App.config | 0 .../ChromeDevToolsProtocolParser.csproj | 0 .../Program.cs | 0 .../Properties/AssemblyInfo.cs | 0 .../packages.config | 0 .../protocol.json | 0 7 files changed, 2 insertions(+), 2 deletions(-) rename AutoWebPerf/AutoWebPerf.sln => AutoWebPerf.sln (91%) rename {AutoWebPerf/ChromeDevToolsProtocolParser => ChromeDevToolsProtocolParser}/App.config (100%) rename {AutoWebPerf/ChromeDevToolsProtocolParser => ChromeDevToolsProtocolParser}/ChromeDevToolsProtocolParser.csproj (100%) rename {AutoWebPerf/ChromeDevToolsProtocolParser => ChromeDevToolsProtocolParser}/Program.cs (100%) rename {AutoWebPerf/ChromeDevToolsProtocolParser => ChromeDevToolsProtocolParser}/Properties/AssemblyInfo.cs (100%) rename {AutoWebPerf/ChromeDevToolsProtocolParser => ChromeDevToolsProtocolParser}/packages.config (100%) rename {AutoWebPerf/ChromeDevToolsProtocolParser => ChromeDevToolsProtocolParser}/protocol.json (100%) diff --git a/AutoWebPerf/AutoWebPerf.sln b/AutoWebPerf.sln similarity index 91% rename from AutoWebPerf/AutoWebPerf.sln rename to AutoWebPerf.sln index 01e4084..443a214 100644 --- a/AutoWebPerf/AutoWebPerf.sln +++ b/AutoWebPerf.sln @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0.31101.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoWebPerf", "AutoWebPerf.csproj", "{36138327-0A72-44E3-B9DB-C4E6155AAFD5}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoWebPerf", "AutoWebPerf\AutoWebPerf.csproj", "{36138327-0A72-44E3-B9DB-C4E6155AAFD5}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChromeDevTools", "..\ChromeDevTools\ChromeDevTools.csproj", "{C2508EE5-AAB2-4275-88C9-7DA9D1961336}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChromeDevTools", "ChromeDevTools\ChromeDevTools.csproj", "{C2508EE5-AAB2-4275-88C9-7DA9D1961336}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChromeDevToolsProtocolParser", "ChromeDevToolsProtocolParser\ChromeDevToolsProtocolParser.csproj", "{97C7FCF5-1964-4878-B7CD-63448CA403B1}" EndProject diff --git a/AutoWebPerf/ChromeDevToolsProtocolParser/App.config b/ChromeDevToolsProtocolParser/App.config similarity index 100% rename from AutoWebPerf/ChromeDevToolsProtocolParser/App.config rename to ChromeDevToolsProtocolParser/App.config diff --git a/AutoWebPerf/ChromeDevToolsProtocolParser/ChromeDevToolsProtocolParser.csproj b/ChromeDevToolsProtocolParser/ChromeDevToolsProtocolParser.csproj similarity index 100% rename from AutoWebPerf/ChromeDevToolsProtocolParser/ChromeDevToolsProtocolParser.csproj rename to ChromeDevToolsProtocolParser/ChromeDevToolsProtocolParser.csproj diff --git a/AutoWebPerf/ChromeDevToolsProtocolParser/Program.cs b/ChromeDevToolsProtocolParser/Program.cs similarity index 100% rename from AutoWebPerf/ChromeDevToolsProtocolParser/Program.cs rename to ChromeDevToolsProtocolParser/Program.cs diff --git a/AutoWebPerf/ChromeDevToolsProtocolParser/Properties/AssemblyInfo.cs b/ChromeDevToolsProtocolParser/Properties/AssemblyInfo.cs similarity index 100% rename from AutoWebPerf/ChromeDevToolsProtocolParser/Properties/AssemblyInfo.cs rename to ChromeDevToolsProtocolParser/Properties/AssemblyInfo.cs diff --git a/AutoWebPerf/ChromeDevToolsProtocolParser/packages.config b/ChromeDevToolsProtocolParser/packages.config similarity index 100% rename from AutoWebPerf/ChromeDevToolsProtocolParser/packages.config rename to ChromeDevToolsProtocolParser/packages.config diff --git a/AutoWebPerf/ChromeDevToolsProtocolParser/protocol.json b/ChromeDevToolsProtocolParser/protocol.json similarity index 100% rename from AutoWebPerf/ChromeDevToolsProtocolParser/protocol.json rename to ChromeDevToolsProtocolParser/protocol.json -- GitLab