From b73a1d3a01ade96996a143b5f66ac52853313494 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Sat, 16 Jun 2018 00:37:17 +0100 Subject: [PATCH] Created the test centre. --- Smouldeing Beach Ball.sln | 6 +++ Test Centre/AssemblyInfo.fs | 41 +++++++++++++++++ Test Centre/Library1.fs | 4 ++ Test Centre/Script.fsx | 8 ++++ Test Centre/Test Centre.fsproj | 80 ++++++++++++++++++++++++++++++++++ Test Centre/packages.config | 4 ++ 6 files changed, 143 insertions(+) create mode 100644 Test Centre/AssemblyInfo.fs create mode 100644 Test Centre/Library1.fs create mode 100644 Test Centre/Script.fsx create mode 100644 Test Centre/Test Centre.fsproj create mode 100644 Test Centre/packages.config diff --git a/Smouldeing Beach Ball.sln b/Smouldeing Beach Ball.sln index 7da3d03..d173c3a 100644 --- a/Smouldeing Beach Ball.sln +++ b/Smouldeing Beach Ball.sln @@ -7,6 +7,8 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Smouldeing Beach Ball", "Sm EndProject Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Smouldering Beach Ball CLI", "Smouldering Beach Ball CLI\Smouldering Beach Ball CLI.fsproj", "{18B85D45-9A87-4174-B0DC-C5F7B77921F3}" EndProject +Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Test Centre", "Test Centre\Test Centre.fsproj", "{0571746B-5FDC-4D98-84DC-5B98D1801964}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -21,6 +23,10 @@ Global {18B85D45-9A87-4174-B0DC-C5F7B77921F3}.Debug|Any CPU.Build.0 = Debug|Any CPU {18B85D45-9A87-4174-B0DC-C5F7B77921F3}.Release|Any CPU.ActiveCfg = Release|Any CPU {18B85D45-9A87-4174-B0DC-C5F7B77921F3}.Release|Any CPU.Build.0 = Release|Any CPU + {0571746B-5FDC-4D98-84DC-5B98D1801964}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0571746B-5FDC-4D98-84DC-5B98D1801964}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0571746B-5FDC-4D98-84DC-5B98D1801964}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0571746B-5FDC-4D98-84DC-5B98D1801964}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Test Centre/AssemblyInfo.fs b/Test Centre/AssemblyInfo.fs new file mode 100644 index 0000000..8347fd3 --- /dev/null +++ b/Test Centre/AssemblyInfo.fs @@ -0,0 +1,41 @@ +namespace Test_Centre.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/Test Centre/Library1.fs b/Test Centre/Library1.fs new file mode 100644 index 0000000..ad02a4d --- /dev/null +++ b/Test Centre/Library1.fs @@ -0,0 +1,4 @@ +namespace Test_Centre + +type Class1() = + member this.X = "F#" diff --git a/Test Centre/Script.fsx b/Test Centre/Script.fsx new file mode 100644 index 0000000..7f57a26 --- /dev/null +++ b/Test Centre/Script.fsx @@ -0,0 +1,8 @@ +// Learn more about F# at http://fsharp.org +// See the 'F# Tutorial' project for more help. + +#load "Library1.fs" +open Test_Centre + +// Define your library scripting code here + diff --git a/Test Centre/Test Centre.fsproj b/Test Centre/Test Centre.fsproj new file mode 100644 index 0000000..69079fb --- /dev/null +++ b/Test Centre/Test Centre.fsproj @@ -0,0 +1,80 @@ + + + + + Debug + AnyCPU + 2.0 + 0571746b-5fdc-4d98-84dc-5b98d1801964 + Library + Test_Centre + Test_Centre + true + v4.7.1 + 4.4.3.0 + true + Test Centre + + + true + full + false + false + bin\$(Configuration)\ + DEBUG;TRACE + 3 + bin\$(Configuration)\$(AssemblyName).XML + + + pdbonly + true + true + bin\$(Configuration)\ + TRACE + 3 + bin\$(Configuration)\$(AssemblyName).XML + + + 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/Test Centre/packages.config b/Test Centre/packages.config new file mode 100644 index 0000000..b4aca10 --- /dev/null +++ b/Test Centre/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file