Skip to content

Commit 9d6a8cd

Browse files
committed
Adds sources to builds
1 parent 7229f16 commit 9d6a8cd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

build.cake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ Task("Pack")
113113
{
114114
foreach (var project in GetFiles("./src/FRC-Utilities/*.csproj"))
115115
{
116+
var sources = "--include-source";
116117
DotNetCorePack(
117118
project.GetDirectory().FullPath,
118119
new DotNetCorePackSettings()
@@ -121,6 +122,7 @@ Task("Pack")
121122
OutputDirectory = artifactsDirectory,
122123
ArgumentCustomization = args => args
123124
.Append(msBuildVersionArgs)
125+
.Append(sources)
124126
});
125127
}
126128
});

0 commit comments

Comments
 (0)