다음을 통해 공유


Application (WindowsInfo)

MBAE 더 이상 사용하지 않을 것에 대한 경고

Important

Windows 10 버전 1803부터 MBAE 앱 환경은 MO UWP 앱으로 대체됩니다. MO UWP 앱에 대한 자세한 내용은 UWP 모바일 광대역 앱을 참조 하세요.

Application 요소는 앱의 애플리케이션 ID를 지정합니다.

Usage

<Application Id=”tns:ApplicationIdType” />

Attributes

Attribute Type Required Description

Id

tns:ApplicationIdType

Yes

애플리케이션 ID입니다. 설명에 설명된 대로 앱 매니페스트에서 이 값을 복사합니다.

Child elements

자식 요소가 없습니다.

Parent elements

Element Description

AutoplayHandler

사용자가 디바이스를 연결할 때 권장 자동 실행 작업으로 표시되어야 하는 UWP 디바이스 앱을 지정합니다.

XSD

<xs:element name="Application" type="tns:ApplicationType" />

<xs:complexType name="ApplicationType">
  <xs:attribute name="Id" type="tns:ApplicationIdType" use="required"/>
</xs:complexType>

<xs:simpleType name="ApplicationIdType">
  <xs:restriction base="tns:AsciiWindowsIdType">
    <xs:maxLength value="64"/>
  </xs:restriction>
</xs:simpleType>

Remarks

Application 요소의 구조는 앱 매니페스트의 <Application> 요소 구조에 해당합니다. 앱 매니페스트의 ID 특성에서 ID 값 값을 복사합니다.

다음은 앱 매니페스트 내에서 Applications> 요소를 구성하는 방법<의 예입니다.

<Applications>
  <Application Id="DeviceAppForPrinters" Executable="$targetnametoken$.exe" EntryPoint="DeviceAppForPrinters.App">
</Application>
</Applications>

Application 요소는 선택 사항입니다.