Browse Source

Stubbed out basic structure for the library.

master
Craig Oates 6 years ago
parent
commit
14b052f55d
  1. 2
      WetPancake/Assistants.fs
  2. 2
      WetPancake/CoOrdinator.fs
  3. 2
      WetPancake/Specialists.fs
  4. 2
      WetPancake/WetPancake.fs
  5. 5
      WetPancake/WetPancake.fsproj

2
WetPancake/Assistants.fs

@ -0,0 +1,2 @@
module internal Assistants

2
WetPancake/CoOrdinator.fs

@ -0,0 +1,2 @@
module internal CoOrdinator

2
WetPancake/Specialists.fs

@ -0,0 +1,2 @@
module internal Specialists

2
WetPancake/Library1.fs → WetPancake/WetPancake.fs

@ -1,4 +1,4 @@
namespace WetPancake
type Class1() =
type WetPancake() =
member this.X = "F#"

5
WetPancake/WetPancake.fsproj

@ -52,7 +52,10 @@
<Import Project="$(FSharpTargetsPath)" />
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="Library1.fs" />
<Compile Include="Assistants.fs" />
<Compile Include="Specialists.fs" />
<Compile Include="CoOrdinator.fs" />
<Compile Include="WetPancake.fs" />
<None Include="Script.fsx" />
<Content Include="packages.config" />
</ItemGroup>

Loading…
Cancel
Save