Browse Source

add assembly info. to library project.

master
Craig Oates 6 years ago
parent
commit
866d6a3328
  1. 42
      SmoulderingBeachBall/AssemblyInfo.fs
  2. 1
      SmoulderingBeachBall/SmoulderingBeachBall.fsproj

42
SmoulderingBeachBall/AssemblyInfo.fs

@ -0,0 +1,42 @@
namespace SmoulderingBeachBallCLI.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.
[<assembly: AssemblyTitle("Smouldering Beach Ball")>]
[<assembly: AssemblyDescription(
"Smouldering Beach Ball [ALPHA] is a NuGet for creating placeholder images.")>]
[<assembly: AssemblyConfiguration("")>]
[<assembly: AssemblyCompany("Craig Oates")>]
[<assembly: AssemblyProduct("Smouldering Beach Ball")>]
[<assembly: AssemblyCopyright("Copyright © 2018")>]
[<assembly: AssemblyTrademark("")>]
[<assembly: AssemblyCulture("")>]
// 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.
[<assembly: ComVisible(false)>]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[<assembly: Guid("5c00d583-ef09-4fe6-a3fe-eb01454c0608")>]
// 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:
// [<assembly: AssemblyVersion("1.0.*")>]
[<assembly: AssemblyVersion("0.4.0.0")>]
[<assembly: AssemblyFileVersion("0.4.0.0")>]
do
()

1
SmoulderingBeachBall/SmoulderingBeachBall.fsproj

@ -5,6 +5,7 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="Domain.fs" />
<Compile Include="InternalServices.fs" />
<Compile Include="Services.fs" />

Loading…
Cancel
Save