Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

teamcity MSBuild error, "A signing key is required in order to package this project"

i am using teamCity to build my .jsproj file, and at the end i getting this error.

[_CreateMainPackage] SignAppxPackage [SignAppxPackage] C:\Program Files (x86)\MSBuild \Microsoft\VisualStudio \v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1970, 9):

error APPX0101: A signing key is required in order to package this project. Please specify a PackageCertificateKeyFile or PackageCertificateThumbprint value in the project file.

[Step 7/7] Step build (1) (MSBuild) failed

below is the my configuration in teamCity configuration in teamCity

It is working if i run it by cmd, can everyone help me to solve this?

like image 515
yphs Avatar asked Feb 15 '15 10:02

yphs


1 Answers

You can disable code signing by adding: /p:AppxPackageSigningEnabled=false into the command line parameters section.

It is an MSBuild parameter, which will allow you to produce an unsigned package (assuming you don't require one). Note that you will not be able to publish such a package.

like image 197
user5762729 Avatar answered Sep 18 '22 23:09

user5762729