Browse Source

update assembly info. for CLI and fix tests.

master
Craig Oates 5 years ago
parent
commit
0d3ef63c49
  1. 1
      TestCentre/PropertyTests.fs
  2. 1
      TestCentre/UnitTests.fs
  3. 11
      WetPancakeCLI/Properties/AssemblyInfo.cs

1
TestCentre/PropertyTests.fs

@ -34,7 +34,6 @@
let ``RequestAllTemplateFiles does not return an empty list`` () =
let test () =
Pancake.RequestAllTemplateFiles ()
|> Async.RunSynchronously
let results () = Assert.NotEmpty (test())
Check.Quick (results())

1
TestCentre/UnitTests.fs

@ -143,7 +143,6 @@
let ``RequestAllTemplateFiles does not return an empty list`` () =
let result =
Pancake.RequestAllTemplateFiles ()
|> Async.RunSynchronously
Assert.NotEmpty result
[<Fact>]

11
WetPancakeCLI/Properties/AssemblyInfo.cs

@ -7,12 +7,7 @@ using System.Runtime.InteropServices;
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Wet Pancake")]
[assembly: AssemblyDescription("Wet Pancake [ALPHA] is a console program for generating text.\n" +
"Visit https://github.com/CraigOates/Wet-Pancake to submit issues and pull requests.\n" +
"The NuGet URL is T.B.A.\n" +
"Type Help into the prompt for a list of available commands.\n" +
"You can generate text using the built-in templates or use you own.\n" +
"Parameter Ranges: [Gibberish Level: 2-20] [Sentence Count: >= 1] [File Type: .txt]")]
[assembly: AssemblyDescription("Wet Pancake is a console program for generating text.\nType 'Help' into the prompt for a list of available commands.\nYou can generate text using the built-in templates or use your own.\nParameter Ranges: [Gibberish Level: 2-20] [Sentence Count: >= 1] [File Type: .txt]")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Craig Oates")]
[assembly: AssemblyProduct("Wet Pancake")]
@ -38,7 +33,7 @@ using 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("0.9.0.0")]
[assembly: AssemblyFileVersion("0.9.0.0")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: NeutralResourcesLanguage("en-GB")]

Loading…
Cancel
Save