본문 바로가기
C#(CSharp)/Etc

윈도우 8 메트로 스타일 App Deploy 관련해서...

by swconsulting 2015. 4. 8.

윈도우 8 전용 어플리케이션을 Deploy 하는 방법은 크게 아래 3가지가 있습니다.



윈도우 8 메트로 스타일 어플리케이션은 기존 일반적인 방법으로 디플로이 할 수 없습니다. 아래 방법을 따라야 합니다.

Metro-style apps aren't meant to be run as ordinary applications. If you want to run an application you wrote, you can do one of the following:

  1. 비주얼 스튜디오를 이용해서 실행 해야 합니다. (Run it from VS (with or without debugging). This will actually install unpackaged version of your app, so you will see it in the start screen. ) 
  2. 로컬 전용 패키지를 작성합니다. 하지만 이럴경우 이 패키지는 개발이 허용 된 컴퓨터에서만 사용이 가능합니다.  Create a package to use locally. You can do this in VS by going to Store → Create App Package → Build a package to use only locally. This will create a bunch of files, including a command-line script that will actually install the app. You probably could use this method to distribute the app, but it would work only on developer-enabled computers.
  3. 내가 만든 앱을 app store에 등록하는 것입니다. 일반사용자가 사용할 수 있는 유일한 방법입니다. Publish your app to the Store. This is the only way you should use to distribute the apps to ordinary users.

오늘 간단하게 윈도우 8 전용 메트로 UI 개발 후 알아낸 정보입니다. 앱스토어에 등록을 해야만 사용할 수 있습니다. 이 점은 빨리 MS에서 수정을 해야 하는게 좋을것 같습니다.