diff --git a/BrittleFish.sln b/BrittleFish.sln new file mode 100644 index 0000000..c1a207b --- /dev/null +++ b/BrittleFish.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27703.2018 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "BrittleFish", "BrittleFish\BrittleFish.fsproj", "{9D146C28-DEDE-4C70-BDC9-44B68925CA07}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9D146C28-DEDE-4C70-BDC9-44B68925CA07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9D146C28-DEDE-4C70-BDC9-44B68925CA07}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9D146C28-DEDE-4C70-BDC9-44B68925CA07}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9D146C28-DEDE-4C70-BDC9-44B68925CA07}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5DBF5972-4089-4439-9843-833FA9788577} + EndGlobalSection +EndGlobal diff --git a/BrittleFish/App.config b/BrittleFish/App.config new file mode 100644 index 0000000..787dcbe --- /dev/null +++ b/BrittleFish/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BrittleFish/AssemblyInfo.fs b/BrittleFish/AssemblyInfo.fs new file mode 100644 index 0000000..5eb6b8b --- /dev/null +++ b/BrittleFish/AssemblyInfo.fs @@ -0,0 +1,41 @@ +namespace BrittleFish.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/BrittleFish/BrittleFish.fsproj b/BrittleFish/BrittleFish.fsproj new file mode 100644 index 0000000..612f264 --- /dev/null +++ b/BrittleFish/BrittleFish.fsproj @@ -0,0 +1,84 @@ + + + + + Debug + AnyCPU + 2.0 + 9d146c28-dede-4c70-bdc9-44b68925ca07 + Exe + BrittleFish + BrittleFish + v4.7.1 + true + true + 4.4.3.0 + BrittleFish + + + 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 SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets + + + + + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets + + + + + + + + + + + + + + FSharp.Core + FSharp.Core.dll + $(MSBuildProgramFiles32)\Reference Assemblies\Microsoft\FSharp\.NETFramework\v4.0\$(TargetFSharpCoreVersion)\FSharp.Core.dll + + + + + + True + + + + \ No newline at end of file diff --git a/BrittleFish/Program.fs b/BrittleFish/Program.fs new file mode 100644 index 0000000..2bcf7f9 --- /dev/null +++ b/BrittleFish/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/BrittleFish/packages.config b/BrittleFish/packages.config new file mode 100644 index 0000000..b4aca10 --- /dev/null +++ b/BrittleFish/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file