diff --git a/DeathSocket.sln b/DeathSocket.sln index 8fb0e93..30c4a2f 100644 --- a/DeathSocket.sln +++ b/DeathSocket.sln @@ -5,6 +5,8 @@ VisualStudioVersion = 15.0.28010.2019 MinimumVisualStudioVersion = 10.0.40219.1 Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "DeathSocket", "DeathSocket\DeathSocket.fsproj", "{6EB4B4DD-10FA-44AF-94C8-DD49F0A0B7D8}" EndProject +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "DeathSocketCLI", "DeathSocketCLI\DeathSocketCLI.fsproj", "{76500D4F-81E0-4C47-8190-F897B986E2EF}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -15,6 +17,10 @@ Global {6EB4B4DD-10FA-44AF-94C8-DD49F0A0B7D8}.Debug|Any CPU.Build.0 = Debug|Any CPU {6EB4B4DD-10FA-44AF-94C8-DD49F0A0B7D8}.Release|Any CPU.ActiveCfg = Release|Any CPU {6EB4B4DD-10FA-44AF-94C8-DD49F0A0B7D8}.Release|Any CPU.Build.0 = Release|Any CPU + {76500D4F-81E0-4C47-8190-F897B986E2EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {76500D4F-81E0-4C47-8190-F897B986E2EF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {76500D4F-81E0-4C47-8190-F897B986E2EF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {76500D4F-81E0-4C47-8190-F897B986E2EF}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/DeathSocketCLI/App.config b/DeathSocketCLI/App.config new file mode 100644 index 0000000..787dcbe --- /dev/null +++ b/DeathSocketCLI/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/DeathSocketCLI/AssemblyInfo.fs b/DeathSocketCLI/AssemblyInfo.fs new file mode 100644 index 0000000..8b8de4f --- /dev/null +++ b/DeathSocketCLI/AssemblyInfo.fs @@ -0,0 +1,41 @@ +namespace DeathSocketCLI.AssemblyInfo + +open System.Reflection +open System.Runtime.CompilerServices +open 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. +[] +[] +[] +[] +[] +[] +[] +[] + +// 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. +[] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [] +[] +[] + +do + () \ No newline at end of file diff --git a/DeathSocketCLI/DeathSocketCLI.fsproj b/DeathSocketCLI/DeathSocketCLI.fsproj new file mode 100644 index 0000000..b70e131 --- /dev/null +++ b/DeathSocketCLI/DeathSocketCLI.fsproj @@ -0,0 +1,72 @@ + + + + + Debug + AnyCPU + 2.0 + 76500d4f-81e0-4c47-8190-f897b986e2ef + Exe + DeathSocketCLI + DeathSocketCLI + v4.7.1 + true + true + DeathSocketCLI + + + true + full + false + false + bin\$(Configuration)\ + DEBUG;TRACE + 3 + AnyCPU + bin\$(Configuration)\$(AssemblyName).XML + true + + + pdbonly + true + true + bin\$(Configuration)\ + TRACE + 3 + AnyCPU + bin\$(Configuration)\$(AssemblyName).XML + true + + + 11 + + + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets + + + + + + + + + + + ..\packages\FSharp.Core.4.5.2\lib\net45\FSharp.Core.dll + + + + + + + True + + + + \ No newline at end of file diff --git a/DeathSocketCLI/Program.fs b/DeathSocketCLI/Program.fs new file mode 100644 index 0000000..2bcf7f9 --- /dev/null +++ b/DeathSocketCLI/Program.fs @@ -0,0 +1,7 @@ +// Learn more about F# at http://fsharp.org +// See the 'F# Tutorial' project for more help. + +[] +let main argv = + printfn "%A" argv + 0 // return an integer exit code diff --git a/DeathSocketCLI/packages.config b/DeathSocketCLI/packages.config new file mode 100644 index 0000000..4c12917 --- /dev/null +++ b/DeathSocketCLI/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file