예제 #1
0
 public WP7AppInfo(string fullAppDataFilePath, Guid appGuid, DateTime buildDate)
     : base(fullAppDataFilePath, appGuid, PlatformName.WindowsPhone7, buildDate)
 {
     if (deviceFinder == null)
     {
         deviceFinder = new WP7DeviceFinder();
     }
 }
예제 #2
0
		public void GetAvailableWP7Devices()
		{
			var deviceFinder = new WP7DeviceFinder();
			Device[] availableDevices = deviceFinder.GetAvailableDevices();
			foreach (Device device in availableDevices)
				AssertWP7Device(device);
			Assert.AreNotEqual(0, availableDevices.Length);
		}
예제 #3
0
		public WP7AppInfo(string fullAppDataFilePath, Guid appGuid, DateTime buildDate)
			: base(fullAppDataFilePath, appGuid, PlatformName.WindowsPhone7, buildDate)
		{
			if (deviceFinder == null)
				deviceFinder = new WP7DeviceFinder();
		}