Browse Source

Created a testing project.

master
Craig Oates 6 years ago
parent
commit
145ea8bb0c
  1. 5
      TestCentre/Library.fs
  2. 11
      TestCentre/TestCentre.fsproj
  3. 6
      WetPancake.sln

5
TestCentre/Library.fs

@ -0,0 +1,5 @@
namespace TestCentre
module Say =
let hello name =
printfn "Hello %s" name

11
TestCentre/TestCentre.fsproj

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library.fs" />
</ItemGroup>
</Project>

6
WetPancake.sln

@ -7,6 +7,8 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "WetPancake", "WetPancake\We
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WetPancakeCLI", "WetPancakeCLI\WetPancakeCLI.csproj", "{87C61362-58D8-4D79-ABF3-F356041F5DEC}"
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "TestCentre", "TestCentre\TestCentre.fsproj", "{1424BA46-9BB9-49CE-85B4-59E3208343CE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -21,6 +23,10 @@ Global
{87C61362-58D8-4D79-ABF3-F356041F5DEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{87C61362-58D8-4D79-ABF3-F356041F5DEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{87C61362-58D8-4D79-ABF3-F356041F5DEC}.Release|Any CPU.Build.0 = Release|Any CPU
{1424BA46-9BB9-49CE-85B4-59E3208343CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1424BA46-9BB9-49CE-85B4-59E3208343CE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1424BA46-9BB9-49CE-85B4-59E3208343CE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1424BA46-9BB9-49CE-85B4-59E3208343CE}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

Loading…
Cancel
Save