Skip to content

Commit a9e22b5

Browse files
committed
Merge commit '2ec81a8'
2 parents 12d72a8 + 2ec81a8 commit a9e22b5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ install:
55
- nuget restore xake.sln
66
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
77
script:
8-
- echo "module Xake [<Literal>] let internal Version = \"$VER.$TRAVIS_BUILD_NUMBER\"" > ./core/VersionInfo.fs
8+
- echo "module Xake.Const [<Literal>] let internal Version = \"$VER.$TRAVIS_BUILD_NUMBER\"" > ./core/VersionInfo.fs
99
- xbuild /p:Configuration=Release xake.sln
1010
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./bin/XakeLibTests.dll
1111
deploy:

core/AssemblyInfo.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ open System.Runtime.CompilerServices
55
[<assembly: AssemblyTitle("Xake core")>]
66
[<assembly: AssemblyDescription("Xake core library")>]
77
[<assembly: AssemblyCopyright("(c) OlegZee 2014-1015")>]
8-
[<assembly: AssemblyVersion(Xake.Version)>]
8+
[<assembly: AssemblyVersion(Xake.Const.Version)>]
99

1010
()

core/VersionInfo.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module Xake [<Literal>] let internal Version = "0.1.0.0"
1+
module Xake.Const [<Literal>] let internal Version = "0.1.0.0"

0 commit comments

Comments
 (0)