Skip to content

Commit f2fe3db

Browse files
committed
Update build.cake
1 parent bca0caa commit f2fe3db

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.cake

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ var buildDir = Directory("./build");
88
var distDir = Directory("./dist");
99
var solution = "./LightStep.sln";
1010
var library = "./src/LightStep/LightStep.csproj";
11+
var testLib = "./test/LightStep.Tests/LightStep.Tests.csproj";
1112
var lightStepAssemblyInfoFile = "./src/LightStep/Properties/AssemblyInfo.cs";
1213
var version = EnvironmentVariable("CIRCLE_TAG") ?? "v0.0.0";
1314
version = version.TrimStart('v');
@@ -35,7 +36,8 @@ Task("Restore")
3536
.IsDependentOn("Clean")
3637
.Does( ()=>
3738
{
38-
DotNetCoreRestore(solution);
39+
DotNetCoreRestore(library);
40+
DotNetCoreRestore(testLib);
3941
});
4042

4143
Task("Build")

0 commit comments

Comments
 (0)