Skip to content

Commit

Permalink
Update build.cake
Browse files Browse the repository at this point in the history
  • Loading branch information
austinlparker committed Dec 10, 2020
1 parent bca0caa commit f2fe3db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ var buildDir = Directory("./build");
var distDir = Directory("./dist");
var solution = "./LightStep.sln";
var library = "./src/LightStep/LightStep.csproj";
var testLib = "./test/LightStep.Tests/LightStep.Tests.csproj";
var lightStepAssemblyInfoFile = "./src/LightStep/Properties/AssemblyInfo.cs";
var version = EnvironmentVariable("CIRCLE_TAG") ?? "v0.0.0";
version = version.TrimStart('v');
Expand Down Expand Up @@ -35,7 +36,8 @@ Task("Restore")
.IsDependentOn("Clean")
.Does( ()=>
{
DotNetCoreRestore(solution);
DotNetCoreRestore(library);
DotNetCoreRestore(testLib);
});

Task("Build")
Expand Down

0 comments on commit f2fe3db

Please sign in to comment.