Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Is it possible to run and debug this project locally using Visual Studio Community Edition? #34

Open
dd45 opened this issue Jun 24, 2016 · 1 comment

Comments

@dd45
Copy link

dd45 commented Jun 24, 2016

In the documentation I keep reading "Visual Studio 2015". Is it possible to run this on a freely available edition of Visual studio such as the Community Edition?

I suspect that there may be some limitations (e.g. Node debug IDE integration). Would be good to clarify this in the README document.

Thanks!

@afreeland
Copy link

afreeland commented Nov 26, 2016

Anything ever determined on the Community edition? I followed the instructions and simply get a "Magic Mirror UWP App" goldish window with a square in the middle of it. Never see it actually utilize the hosted web app from the url entered.

EDIT

Had to deviate a little from the instructions in the read.me...when I simply change the startpage from the gui it left and old value in the config in the uap:Rule section. Once, I manually changed it the app started up...happened to watch a Microsoft presentation earlier on YouTube or would never of known about the rules section.

Original

  <Applications>
    <Application Id="App" StartPage="http://webreflections.azurewebsites.net/create">
      <uap:VisualElements DisplayName="Magic Mirror UWP App" Description="Magic Mirror UWP App" BackgroundColor="transparent" Square150x150Logo="images\Square150x150Logo.png" Square44x44Logo="images\Square44x44Logo.png">
        <uap:DefaultTile Wide310x150Logo="images\Wide310x150Logo.png">
        </uap:DefaultTile>
        <uap:SplashScreen Image="images\splashscreen.png" />
      </uap:VisualElements>
      <uap:ApplicationContentUriRules>
        <uap:Rule Match="http://127.0.0.1:3000" Type="include" WindowsRuntimeAccess="all" />
      </uap:ApplicationContentUriRules>
    </Application>
  </Applications>

Modified

  <Applications>
    <Application Id="App" StartPage="http://webreflections.azurewebsites.net/create">
      <uap:VisualElements DisplayName="Magic Mirror UWP App" Description="Magic Mirror UWP App" BackgroundColor="transparent" Square150x150Logo="images\Square150x150Logo.png" Square44x44Logo="images\Square44x44Logo.png">
        <uap:DefaultTile Wide310x150Logo="images\Wide310x150Logo.png">
        </uap:DefaultTile>
        <uap:SplashScreen Image="images\splashscreen.png" />
      </uap:VisualElements>
      <uap:ApplicationContentUriRules>
        <uap:Rule Match="http://webreflections.azurewebsites.net" Type="include" WindowsRuntimeAccess="all" />
      </uap:ApplicationContentUriRules>
    </Application>
  </Applications>

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants