We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac399ce commit e5d8fb6Copy full SHA for e5d8fb6
3 files changed
.travis.yml
@@ -11,7 +11,7 @@ deploy:
11
- provider: releases
12
file:
13
- "./bin/Xake.dll"
14
- - "./bin/Xake.XML"
+ - "./bin/Xake.xml"
15
skip_cleanup: true
16
on:
17
tags: true
build.fsx
@@ -65,8 +65,8 @@ do xakeScript {
65
CoreAssembly ..> recipe {
66
67
// TODO multitarget rule!
68
- let! target = getTargetFile()
69
- let xml = target.FullName -. "xml"
+ let! targetName = getTargetFullName()
+ let xml = targetName -. "xml"
70
71
let sources = fileset {
72
basedir "core"
paket.template
@@ -13,4 +13,5 @@ releaseNotes
copyright Copyright 2017
tags Xake F# Build
files
- bin/Xake.dll ==> tools
+ bin/Xake.dll ==> tools
+ bin/Xake.xml ==> tools
0 commit comments