The ship is leaving port for the open seas

The ALM Readiness Treasure Map v2.1 has begun its journey to release.  We will keep you posted as to its status.  Note that although it is listed as Release 3, this is version 2.1 of the application.  This will be reflected in the settings for the application once published.

Pre-Processing

FIRST UPDATE:  We’ve passed two more steps!

Security Tests

SECOND UPDATE:  We’re almost there!  I hope it doesn’t take 5 days.

Content Compliance

THIRD UPDATE: The ship has sailed!

Certification Report

Rob

This post was migrated from https://blogs.msdn.microsoft.com/rob/2013/12/02/the-ship-is-leaving-port-for-the-open-seas/.

ALM Readiness Treasure Map Status and Future (Arrr!)

Hello, fellow pirates!  Hopefully you have had a chance to use version 2.0 of the ALM Readiness Treasure Map application  and are enjoying the improvements that it brought over v1.0.  Treasure ChestOur team has been working on even more improvements in v2.1, primarily around Windows 8.1 compatibility.Palm Tree

If you’ve been living on an ALM-free island and don’t know what the Treasure Map is, head over to a better island and learn all about it.

Known Issues

We still have a few outstanding issues, but are anxious to release v2.1 so you can all start using it.  Our lead tester Darren has been waging a war on bugs and has surfaced (no pun intended) some items we’re still addressing.  Here are some you might encounter as you use the new release.

  1. With Windows 8.1, snapping works differently from Windows 8.  So, while the width of the application is greater than 320 pixels, it continues to show the full-width view.  Once the width is narrower than this, it switches to snapped view.  As the full-width view is narrowed down towards 320 pixels, the title text on the home page of the app starts wrapping, but not in the way we would like.  It has insufficient spacing between lines of text and also may get cut off a bit.  We will be addressing this in v3.0.Text Wrapping Issue

  2. When reading news items after clicking the “News” island, if you right-click between items, the app bar pops up with a refresh button.  If you right-click on an item, nothing happens.  We need to display the app bar no matter where you right-click.

  3. When hovering over an island, it is highlighted to show that it has the focus.  However, when you hover over the green label text, the highlight is lost and the island no longer looks like it has the focus.  We will work to fix this in v3.0.

  4. Pinch and zoom sometimes doesn’t work, even though you’re using the correct gestures.  The touch system is very sensitive to slight movements and often thinks you are scrolling horizontally rather than trying to change the zoom.  We have some ideas about how to fix this in the next release. 

Planned Features:

If you think v2.1 is great, look at what is coming in v3.0!

  1. Content updates!  Up until now, the only way to have new content in the Treasure Map was to publish a new version of the application.  We are going to make the content dynamically updatable so you only need to update to a new version of the app when there are enhancements to it.
  2. We will be adding treasure chests on each of the islands to show when you have completed an entire category of content.  The individual “projects” each have this feature now, but the islands will be getting it, too.
  3. More user interface improvements.
  4. And other surprises!

How to get involved:

We would love it if you would download the Treasure Map app, try it out, and leave feedback for it in the Windows Store.  We would also appreciate you providing feedback on Twitter, Facebook, etc. to increase awareness of the application.  Also, please download version 2.1 as soon as it ships and provide feedback there, as well.  We really appreciate your contributions and have been incorporating user suggestions since the first release.

Thanks!

Cap’n Rob

Pirate Ship

This post was migrated from https://blogs.msdn.microsoft.com/rob/2013/11/18/alm-readiness-treasure-map-status-and-future-arrr/.

Debugging VS2013 Websites Using 64-bit IIS Express

6 April 2016 Update: Added the correct values for VS 2015.

If you are working on ASP.NET MVC web sites in Visual Studio 2013 (VS 2013) or 2015 (VS 2015), you need to make one registry change if you want to run IIS (Internet Information Services) Express as a 64-bit process by default.  Use one of the methods, below.

Within VS 2013 or VS 2015:

Tools | Options | Projects and Solutions | Web Projects | Use the 64 bit version of IIS Express…

* Thanks to Christian Lundestad, David, Javier Collazo and Eliza for pointing this method out in the comments.

Command-Line:

For VS 2013, use
For VS 2015, use

Regedit:

For VS 2013, navigate to:
For VS 2015, navigate to:
For both VS 2013 and VS 2015:
  1. Make sure there is a REG_DWORD value named “Use64BitIISExpress”.  If not, create it.
  2. Set its value from 1 (default = 0).

That’s it.  Now you can debug your 64-bit web sites.

If you don’t do this, you will likely get a message similar to:

“Could not load file or assembly or one of its dependencies. An attempt was made to load a program with an incorrect format.”

I found this solution for Visual Studio 2012 (VS2012) on Stack Overflow here.

Rob

This post was migrated from https://blogs.msdn.microsoft.com/rob/2013/11/14/debugging-vs2013-websites-using-64-bit-iis-express/.

Get a list of all users who have checked files into a TFS Project

Have you ever wanted to get a list of all the users who have ever checked files into a TFS instance?  Here’s how to do so from PowerShell:

Note that if you want this to appear in a GUI window, drop everything starting from “/noprompt”.

Rob

This post was migrated from https://blogs.msdn.microsoft.com/rob/2013/08/28/get-a-list-of-all-users-who-have-checked-files-into-a-tfs-project/.

Redirecting TFS Command Output to Files

Today I discovered that you can redirect the output of Team Foundation Service’s tf.exe command to a file.  I thought that because it displayed dialog boxes as the results of commands that you couldn’t redirect its output to files.  However, commands such as tf history will do just that when you specify redirection, such as:

Of course, if your Visual Studio directory is in your PATH, then you can just specify “tf history…”.  Note that you may also need to adjust your path, as earlier/later versions of Visual Studio will not be stored under the “Microsoft Visual Studio 11.0” directory.

Rob

This post was migrated from https://blogs.msdn.microsoft.com/rob/2013/08/27/redirecting-tfs-command-output-to-files/.

Load more