diff --git a/BehavioralPatterns.sln b/BehavioralPatterns.sln index bf2c943..4b15cf4 100644 --- a/BehavioralPatterns.sln +++ b/BehavioralPatterns.sln @@ -14,8 +14,6 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "BehavioralPatterns", "src\B EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ChainOfResponssibility", "src\ChainOfResponssibility\ChainOfResponssibility.xproj", "{89536824-683F-4351-8789-406D7BDD922D}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "CommandPattern", "src\CommandPattern\CommandPattern.xproj", "{CCC23C3A-7A67-40BD-80FB-C4D2C0342E50}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -30,10 +28,6 @@ Global {89536824-683F-4351-8789-406D7BDD922D}.Debug|Any CPU.Build.0 = Debug|Any CPU {89536824-683F-4351-8789-406D7BDD922D}.Release|Any CPU.ActiveCfg = Release|Any CPU {89536824-683F-4351-8789-406D7BDD922D}.Release|Any CPU.Build.0 = Release|Any CPU - {CCC23C3A-7A67-40BD-80FB-C4D2C0342E50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CCC23C3A-7A67-40BD-80FB-C4D2C0342E50}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CCC23C3A-7A67-40BD-80FB-C4D2C0342E50}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CCC23C3A-7A67-40BD-80FB-C4D2C0342E50}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -41,6 +35,5 @@ Global GlobalSection(NestedProjects) = preSolution {E3092EE0-1282-4AB4-9FA2-0338348D8FD1} = {3820200F-354C-41E6-8F34-B301F5D621C2} {89536824-683F-4351-8789-406D7BDD922D} = {3820200F-354C-41E6-8F34-B301F5D621C2} - {CCC23C3A-7A67-40BD-80FB-C4D2C0342E50} = {3820200F-354C-41E6-8F34-B301F5D621C2} EndGlobalSection EndGlobal diff --git a/src/CommandPattern/Class1.cs b/src/CommandPattern/Class1.cs deleted file mode 100644 index 1ece8d3..0000000 --- a/src/CommandPattern/Class1.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace CommandPattern -{ - // This project can output the Class library as a NuGet Package. - // To enable this option, right-click on the project and select the Properties menu item. In the Build tab select "Produce outputs on build". - public class Class1 - { - public Class1() - { - } - } -} diff --git a/src/CommandPattern/CommandPattern.xproj b/src/CommandPattern/CommandPattern.xproj deleted file mode 100644 index cf279a6..0000000 --- a/src/CommandPattern/CommandPattern.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - ccc23c3a-7a67-40bd-80fb-c4d2c0342e50 - CommandPattern - .\obj - .\bin\ - v4.6.1 - - - - 2.0 - - - diff --git a/src/CommandPattern/Properties/AssemblyInfo.cs b/src/CommandPattern/Properties/AssemblyInfo.cs deleted file mode 100644 index 9dd60d9..0000000 --- a/src/CommandPattern/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Hewlett-Packard Company")] -[assembly: AssemblyProduct("CommandPattern")] -[assembly: AssemblyTrademark("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("ccc23c3a-7a67-40bd-80fb-c4d2c0342e50")] diff --git a/src/CommandPattern/project.json b/src/CommandPattern/project.json deleted file mode 100644 index ed8608d..0000000 --- a/src/CommandPattern/project.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": "1.0.0-*", - - "dependencies": { - "NETStandard.Library": "1.5.0-rc2-24027" - }, - - "frameworks": { - "netstandard1.5": { - "imports": "dnxcore50" - } - } -}