Automation 使用控制台应用程序连接到windows phone 8

Automation 使用控制台应用程序连接到windows phone 8,automation,windows-phone-8,Automation,Windows Phone 8,我对windows phone开发非常陌生。我想开发一个应用程序,将在我将windows 8手机连接到笔记本电脑时启动。我正在学习本教程(),并且能够连接到我的windows 7 phone/emulator,但无法连接到我的windows 8 phone或emulator。是否有其他方法连接到windows 8 phone 请告诉我是否有任何可能的解决方案 谢谢我还没有机会更新这篇博文。Delvis Gomez(我的一位同事)已经更新了最终的代码样本,并将其免费分发。我将在将来更新关于WP8的

我对windows phone开发非常陌生。我想开发一个应用程序,将在我将windows 8手机连接到笔记本电脑时启动。我正在学习本教程(),并且能够连接到我的windows 7 phone/emulator,但无法连接到我的windows 8 phone或emulator。是否有其他方法连接到windows 8 phone

请告诉我是否有任何可能的解决方案


谢谢

我还没有机会更新这篇博文。Delvis Gomez(我的一位同事)已经更新了最终的代码样本,并将其免费分发。我将在将来更新关于WP8的那篇博文,但同时这里有一段关于如何自动化WP8仿真器的文档化代码片段

此外,请确保添加对所需新DLL的引用,如Microsoft.SmartDevice.MultiTargeting.Connectivity

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.IO;
using System.Reflection;

// Libraries needed to connect to the Windows Phone X Emulator
using Microsoft.SmartDevice.Connectivity;
using Microsoft.SmartDevice.Connectivity.Interface;
using Microsoft.SmartDevice.MultiTargeting.Connectivity;
using System.Globalization;
using System.Collections.ObjectModel;


namespace AutomatedUnitTestDriver
{
    class Program
    {
        static void Main(string[] args)
        {
            MultiTargetingConnectivity connectivity = new MultiTargetingConnectivity(CultureInfo.CurrentUICulture.LCID);

            // Get a connectable device for a specific Device ID (from the CoreCon datastore)
            string deviceId = "5E7661DF-D928-40ff-B747-A4B1957194F9";
            ConnectableDevice connectableDevice = connectivity.GetConnectableDevice(deviceId);
            Console.WriteLine("Found Connectable Device \'" + connectableDevice.Name + "\' for Device id {" + connectableDevice.Id + "}.");

            // Connect to the Device
            Console.WriteLine("Connecting to Device...");
            IDevice iDevice = connectableDevice.Connect();
            Console.WriteLine("Done!");

            // Check if the application is already install, if it is remove it (From WMAppManifect.xml)
            Guid appID = new Guid("{b6635769-b7ac-41a5-915d-5a7b0ae34481}"); 

            if (iDevice.IsApplicationInstalled(appID))
            {
                Console.WriteLine("Uninstalling application...");
                iDevice.GetApplication(appID).Uninstall();
                Console.WriteLine("Done!");
            }

            Guid productId = appID;
            Guid instanceId = appID;
            string applicationGenre = "NormalApp";
            string iconPath = @"C:\Share\LatestAPI\TestCode\Automated\AutomatedUnitTests\Bin\Debug\ApplicationIcon.png";
            string xapPackage = @"C:\Share\LatestAPI\TestCode\Automated\AutomatedUnitTests\Bin\Debug\AutomatedUnitTests.xap";

            // Install the application 
            Console.WriteLine("Installing the application...");
            IRemoteApplication remoteApplication = iDevice.InstallApplication(appID, appID, applicationGenre, iconPath, xapPackage);
            Console.WriteLine("Done!");

            // Launch the application
            Console.WriteLine("Starting the application...");
            remoteApplication.Launch();

            int startStopWaitTime = 1000;   // msec
            int executionWaitTime = 180000; // msec

            // Note that IRemoteApplication has a 'IsRunning' method but it is not implemented.
            // So, for the moment we sleep few msec.
            Thread.Sleep(startStopWaitTime);
            Console.WriteLine("Done!");

            // Allow application to complete 
            Console.WriteLine("Application is running! Waiting few seconds...");
            Thread.Sleep(executionWaitTime);

            try
            {
                IRemoteIsolatedStorageFile remoteIsolatedStorageFile = remoteApplication.GetIsolatedStore();
                string sourceDeviceFilePath = (object)Path.DirectorySeparatorChar + "TestResults.trx";
                string targetDesktopFilePath = @"C:\Share\LatestAPI\TestCode\Automated\AutomatedUnitTests\Bin\Debug\" + "TestResults.trx";
                remoteIsolatedStorageFile.ReceiveFile(sourceDeviceFilePath, targetDesktopFilePath,true);
            }
            catch (Exception exception)
            {
                Console.WriteLine("Exception \'" + exception.Message + "\' reading file from device.");
            }

            // Terminate application
            Console.WriteLine("Terminating the application...");
            remoteApplication.TerminateRunningInstances();

            Thread.Sleep(startStopWaitTime);
            Console.WriteLine("\nDone!");

            // Disconnect from the emulator
            Console.WriteLine("Disconnecting Device...");
            iDevice.Disconnect();
            Console.WriteLine("\nDone!");
        }
    }
}

我在实现接受的解决方案时遇到问题,因为我缺少这些名称空间的引用:

Microsoft.SmartDevice.Connectivity.Interface
Microsoft.SmartDevice.MultiTargeting.Connectivity
这是我发现它们的地方:

C:\Windows\Microsoft.NET\assembly\GAC_MSIL\
   Microsoft.SmartDevice.Connectivity.Interface\
   v4.0_11.0.0.0__b03f5f7f11d50a3a\
   Microsoft.Smartdevice.Connectivity.Interface.dll


请注意,这些路径,尤其是
v4.0_11.0.0.0__b03f5f7f11d50a3a
部分在您的系统上可能不同。在您的项目中添加对这些DLL的引用,一切都会正常工作。

非常感谢您的回复和解决方案。我对windows phone开发非常陌生,这对我来说是一个巨大的帮助。非常感谢。在哪里可以找到dll。我找到了Microsoft.Smartdevice.Connectivity.dll(我将其用于wp7),但我没有Microsoft.Smartdevice.MultiTargeting.Connectivity。有什么想法吗?它在Windows8机器上的WindowsPhone8上工作。但是对于Windows7,它不起作用。这个代码段可以作为x64版本运行吗?我贴了一张
C:\Windows\Microsoft.NET\assembly\GAC_MSIL\
   Microsoft.SmartDevice.MultiTargeting.Connectivity\
   v4.0_11.0.0.0__b03f5f7f11d50a3a\
   Microsoft.Smartdevice.MultiTargeting.Connectivity.dll