Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I name my deployed application?

I've successfully installed Windows 10 IoT on my Raspberry Pi 2. I wrote a test "Hello World" UAP app (simple text box and button, using Visual Studio Community 2015 RC) and can run it on the Pi and debug it (set break points, etc). When I build it for Release and deploy it to the Pi, I see the following in the Visual Studio build output:

Full package name: "93b8b47e-8bbe-46d9-8a30-4cf697efc3d9_1.0.0.0_arm__3e1tqk2ntzwa4"

When I run the following command in PowerShell connected to the Pi:

iostartup list

I see a list of server installed applications, including:

Headed   : 93b8b47e-8bbe-46d9-8a30-4cf697efc3d9_3e1tqk2ntzwa4!App

The tutorial I was following says I should see something like:

Headed   : HelloWorld_n2pe7ts0w7wey!App

I don't see anything with the name "HellowWorld" in it, only that GUID'ish looking name that matches the name shown in the build output. How can I set the name of the deployed application to a more friendly name? It would make it easier for setting the application to start during boot of the Pi, etc. BTW, my VS solution and project are both named HelloWorld.

like image 254
Lee Avatar asked May 05 '15 04:05

Lee


People also ask

What is application name?

Application names are usually nouns, and are often common words or phrases that are indicative of their functionality. Frequently, they are simply the name of what the application is.

How is an application deployed?

Application Deployment, also known as Software Deployment, is the process of installing, configuring, updating, and enabling one application or suite of applications that make a software system available for use, like facilitating a certain URL on a server.

What happens when you deploy an application?

Application Deployment (also referred to as Software Deployment) is the process of installing, configuring, and enabling a specific application or set of applications, usually through an application manager (app manager) or software management system, to a specific URL on a server.

How applications are deployed in server?

To support formal application deployments, the administrative server must be running. The administrative server receives the deployed application, registers the application in the target server instance's server. xml file and installs the application in the target server instance's application deployment area.


2 Answers

Look in your Package.appxmanifest -- the name is there. It is default as a GUID due to visual studio project templates and picking some default that would not conflict on project creation.

like image 110
Tim Heuer Avatar answered Oct 01 '22 17:10

Tim Heuer


To rename application package name, follow:

enter image description here

like image 37
Anurag Vasanwala Avatar answered Oct 01 '22 18:10

Anurag Vasanwala