Browse Source

Stub out initial functions in NuGet.

Update assembly info. in CLI and NuGet
master
Craig Oates 6 years ago
parent
commit
6d6d0918d8
  1. 4
      Smouldeing Beach Ball/AssemblyInfo.fs
  2. 12
      Smouldeing Beach Ball/BeachBall.fs
  3. 4
      Smouldeing Beach Ball/Library1.fs
  4. 2
      Smouldeing Beach Ball/Smouldeing Beach Ball.fsproj
  5. 4
      Smouldering Beach Ball CLI/AssemblyInfo.fs

4
Smouldeing Beach Ball/AssemblyInfo.fs

@ -34,8 +34,8 @@ open System.Runtime.InteropServices
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [<assembly: AssemblyVersion("1.0.*")>]
[<assembly: AssemblyVersion("1.0.0.0")>]
[<assembly: AssemblyFileVersion("1.0.0.0")>]
[<assembly: AssemblyVersion("0.1.0.0")>]
[<assembly: AssemblyFileVersion("0.1.0.0")>]
do
()

12
Smouldeing Beach Ball/BeachBall.fs

@ -0,0 +1,12 @@
namespace Smouldeing_Beach_Ball
module BeachBall =
let buildImage width height colour =
null
let addOverlay image colour =
null
let saveImage image =
null

4
Smouldeing Beach Ball/Library1.fs

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

2
Smouldeing Beach Ball/Smouldeing Beach Ball.fsproj

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

4
Smouldering Beach Ball CLI/AssemblyInfo.fs

@ -34,8 +34,8 @@ open System.Runtime.InteropServices
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [<assembly: AssemblyVersion("1.0.*")>]
[<assembly: AssemblyVersion("1.0.0.0")>]
[<assembly: AssemblyFileVersion("1.0.0.0")>]
[<assembly: AssemblyVersion("0.1.0.0")>]
[<assembly: AssemblyFileVersion("0.1.0.0")>]
do
()
Loading…
Cancel
Save