Fix nuget target path

This commit is contained in:
Keivn Sommer 2021-05-14 23:35:47 +02:00
parent f738e3bf1e
commit 8bd9ce85d9

View File

@ -105,7 +105,7 @@ class Build : NukeBuild
.ForEach(x =>
{
DotNetNuGetPush(s => s
.SetTargetPath(x)
.SetTargetPath(OutputDirectory / x)
.SetSource("https://api.nuget.org/v3/index.json")
.SetApiKey(NUGET_API_KEY));
});