Skip to content

Commit 0eb72d3

Browse files
committed
Update to v 1.1 to publish
1 parent 9ff51f4 commit 0eb72d3

File tree

6 files changed

+10
-33
lines changed

6 files changed

+10
-33
lines changed

.paket/paket.bootstrapper.exe

14.3 KB
Binary file not shown.

TickSpec.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{651190
77
ProjectSection(SolutionItems) = preProject
88
paket.dependencies = paket.dependencies
99
paket.lock = paket.lock
10+
TickSpec\TickSpec.fsproj.paket.template = TickSpec\TickSpec.fsproj.paket.template
1011
EndProjectSection
1112
EndProject
1213
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{CD7A2701-42ED-47BD-8724-1E130B5C5071}"

TickSpec/AssemblyInfo.fs

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,17 @@
33
open System.Reflection
44
open System.Runtime.InteropServices
55

6-
// General Information about an assembly is controlled through the following
7-
// set of attributes. Change these attribute values to modify the information
8-
// associated with an assembly.
96
[<assembly: AssemblyTitle("TickSpec")>]
107
[<assembly: AssemblyDescription(".Net BDD Framework")>]
11-
[<assembly: AssemblyConfiguration("")>]
12-
[<assembly: AssemblyCompany("")>]
138
[<assembly: AssemblyProduct("TickSpec")>]
14-
[<assembly: AssemblyCopyright("Copyright © 2014")>]
9+
[<assembly: AssemblyCopyright("Copyright © 2010-8 Phillip Trelford")>]
1510
[<assembly: AssemblyTrademark("")>]
1611

17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
2012
[<assembly: ComVisible(false)>]
2113

22-
// The following GUID is for the ID of the typelib if this project is exposed to COM
2314
[<assembly: Guid("ce5d72fa-c61d-40dd-bbda-dbb170d4412a")>]
2415

25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
35-
[<assembly: AssemblyVersion("1.0.1.1")>]
36-
[<assembly: AssemblyFileVersion("1.0.1.1")>]
16+
[<assembly: AssemblyVersion("1.1.0.0")>]
17+
[<assembly: AssemblyFileVersion("1.1.0.0")>]
3718

3819
()

TickSpec/TickSpec.fsproj.paket.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
type project
22
id TickSpec
3-
version 1.0.1.1
3+
version 1.1.0.0
44
title TickSpec
55
authors Phillip Trelford
66
owners Phillip Trelford
77
licenseUrl https://github.com/fsprojects/TickSpec/blob/master/LICENSE.md
88
projectUrl https://github.com/fsprojects/TickSpec
99
requireLicenseAcceptance false
10-
description Describe behaviour in plain text using the Gherkin business language, i.e. given, when, then. Easily execute the behaviour against matching F# tick methods (let ``tick method`` () = true) or attributed C# or F# methods.
10+
description Describe behaviour in plain text using the Gherkin business language, i.e. Given, When, Then. Easily execute the behaviour against matching F# 'ticked' methods (let ``tick method`` () = true) or attributed C# or F# methods.
1111
summary TickSpec is a lightweight Behaviour Driven Development (BDD) framework for .Net.
1212
tags BDD C# F# .Net
1313

build.bat

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ if errorlevel 1 (
1212
exit /b %errorlevel%
1313
)
1414

15-
SET NuGetTool=%~dp0packages\NuGet.CommandLine\tools\NuGet.exe
16-
1715
msbuild TickSpec.sln /p:Configuration=Release /m
1816

1917
if errorlevel 1 (
@@ -22,7 +20,7 @@ if errorlevel 1 (
2220
)
2321

2422
if "%~1"=="" (
25-
set version="1.0.1.1"
23+
set version="1.1.0.0"
2624
) else (
2725
set version="%1"
2826
)

paket.dependencies

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,13 @@ redirects: on
22
framework: auto-detect
33
source https://api.nuget.org/v3/index.json
44

5-
# Used for packaging
6-
nuget NuGet.CommandLine
7-
85
# For now, we support F# 3.1 and up; .NET Core support may impact that
9-
nuget FSharp.Core < 4
6+
nuget FSharp.Core ~> 3.1.2.0
107

118
# Test/assertion frameworks
129
nuget NUnit < 3.0
13-
nuget xunit >= 2.1
14-
nuget xunit.runner.visualstudio >= 2.1 version_in_path: false
10+
nuget xunit ~> 2.1
11+
nuget xunit.runner.visualstudio ~> 2.1 version_in_path: true
1512
nuget unquote
1613

1714
# Example container to illustrate integration

0 commit comments

Comments
 (0)