https://elearning.xamarin.com/forms/xam120/ Trying to follow the Tutorial mentioned : XAML in Xamarin.Forms (XAM120) and getting this errorPhonewordPhonewordPhoneword.UWPPhoneDialer.UWP.cs(21,17,21,33): error CS0103: The name ‘PhoneCallManager’ does not exist in the current context Code Snippet: public Task DialAsync(string number) { if (ApiInformation.IsApiContractPresent(“Windows.ApplicationModel.Calls.CallsPhoneContract”, 1, 0)) … Read more »
Problem: I followed the steps mentioned in the article Xamarin: Connecting to Mac Troubleshooting: a. Network discovery is On b. Port 22 is open Inbound and Outbound Firewall In Visual Studio, try to enter Ip Address and try to connect ( sometimes auto-detected machine might not work although it… Read more »
MSDN Article: http://msdn.microsoft.com/en-us/library/bb651793.aspx some way to use foreachhttp://www.differentpla.net/content/2010/08/msbuild-target-batching-each-simplified Using this concept and Running Targets in Parallelhttp://mikefourie.wordpress.com/2010/12/04/running-targets-in-parallel-in-msbuild/ This would somehow won’t produce the nice logging to read though.
I never thought that displaying Hyperlink is so simple using WriteCustomSummaryInformation String.Format(“My Custom step:[{0}]({1})”,”View Log File”, ““);
TFS: How to Lock the Source Control Tree We get to this point where we want to stop all devtest to stop check-in the code. We want to freeze the branch and stop any new changes to be populated to the Branch. TFS came with simple way to incorporate this…. Read more »
Detecting All Files Locked by Remote User We know how to undo files checkout by other users:tf undo $/MyProject/packages/EntityFramework.5.0.0/tools/migrate.exe /workspace:”MyWorkspace;MyName” /server:http://TestTFS:8080/tfs/Project In some cases, you are not sure how many files are locked by the User. If User is unavailable, you can’t delete the workspace as well. If… Read more »
Getting the Computer Name, Domain, more using powershell a. gc env:Computername $computer = get-content env:ComputerNameUse the WMI objects to get computer name and other details$Computer = Get-WmiObject -Class Win32_ComputerSystem -ComputerName $computer -namespace “rootCIMV2”for Machine domain: $computer.Domain# Print Computer Name “Computer Name is: {0}” -f $Computer.Name If you want to get… Read more »
Common problem we faced in large teams is that, someone locks the file in TFS and which does not allow others to check-in until the locked one, unlocks it. What if the guy who locked is not available or out of team.Simple scenario is that, we are onsite and offshore… Read more »
Sometimes its become critical to troubleshoot the WMI related issuesWe can use the Os Inbuilt tool called WBEMTEST.exe for troubleshooting the basic issues. More issues are because of missing objects or corrupt of WMI classes Step 1:On a Windows Server 2008 or Windows 7 machine, verify whether WMI has a… Read more »
How to Schedule TeamBuilds to run on various Schedules As far as we know, we only have couple of options to schedule to the TeamBuild 2010. a. Manual Builds – Manual Interventionb. Continious Integration – After each Check-Inc. Rolling Builds – After Check-in but on accumulation of Check-Insd. Gated Check-Ins… Read more »