Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 630 Bytes

File metadata and controls

24 lines (17 loc) · 630 Bytes
title NuGet Error NU5029
description NU5029 Error code
author mishra14
ms.author jodou
ms.date 8/8/2018
ms.topic reference
ms.reviewer anangaur
f1_keywords
NU5029

NuGet Error NU5029

NuspecProperties should be in the form of 'key1=value1;key2=value2'.

Issue

Properties passed to msbuild -t:pack -p:NuspecFile=project.nuspec command were not in the right format to be parsed.

Solution

Please pass any nuspec properties using -p:NuspecProperties in the format of key=value. For instance msbuild -t:pack -p:NuspecFile=project.nuspec -p:NuspecProperties="configuration=release"