Increase value by understanding usage

Our responsibility as technologists is to provide solutions which address user pains. The rapid pace of today’s businesses requires swift development, testing and deployment of application features.

However, our responsibilities don’t stop there. Understanding and measuring the value of our solutions requires insight on the usage of our solutions. This information is important as we continually make adjustments while iterating on features. How cool would it be to have your solutions team addressing bugs before there are end user complaints,  or focusing the solution team on areas or features of the application(s) users are concentrated in?

Join me on October 3oth at the St. Louis Silver Linings Conference. I will be presenting on the importance of understanding the availability of our solutions, how these solutions are performing, and if our solutions are successfully being utilized. In this interactive session, I invite you to share your experiences and toolsets, and interact with your peers who have similar needs/challenges.

 Print


Attendee Registration Opens Soon!

St. Louis Days of .NET 2014 will be opening attendee registration soon! Take advantage of the early bird discount that is valid only until October 13th. Check out the sessions and speakers already confirmed for this year’s event. Keep checking the site as more speakers and sessions get booked each day.

This year’s conference will be held at the Ameristar Conference Center in St. Charles, MO on November 13th –15th. In addition to over 140 technical sessions, the conference also includes optional full day workshops, the TechExpo, the Conference Kickoff Party, and the Attendee Party. All the generous sponsors will be located throughout the conference center looking to network and  give away all kinds of free goodies!


Nov. 13 –1 5, 2014 Save the date!

St. Louis Days of .NET 2014 is back! Held at the Ameristar Conference Center, the conference features over 140 breakout sessions from local and national technologists on Friday and Saturday (14th & 15th). If that is not enough, you can opt in for the full day hands on workshops on Thursday (13th).

Of course, the halls will be littered by all the supportive sponsors who help make this conference possible. Lots of giveaways, prizes, and networking opportunities. And don’t forget the social events…stay tuned to the St. Louis Days of .NET website for conference details as they become available.

First timer? Checkout the speakers and topics featured during last year’s conference by visiting the site.


St. Louis Days of .NET 2013

 

The St. Louis Days of .NET 2013 conference is set to kick off in less than one month away on November 14 – 16th at the St. Charles Ameristar Conference Center. If you have not yet registered, you may still get your hands on the few available slots here.

Covenant Technology Partners, LLC is one of the many proud sponsors of this year’s event. Carve some time out during the conference to drop by their sponsor booth.

Additionally, some of Covenant’s own are presenting on various topics . These include:

  • Simplifying and improving your SQL queries with CTE’s and Windowing Functions – Clayton Groom, Partner
  • SharePoint 2013 App Model – Bill Feldker, Senior Architect
  • #MustHashTag with #SignarR – Mike Green, Senior SharePoint Consultant and Rick Kight
  • Solution Forecast: Partly Cloudy – R. Michael Querimit, Architect

Check out the St. Louis Days of .NET 2013 website for details on the various sessions and speakers featured in this year’s conference.


Windows Azure Mobile Services

 

At the 2013 Build Conference, on June 26th, Microsoft announced the official release of Azure Mobile Services. There are already over 20,000 companies using Azure Mobile Services for production mobile apps. In this webcast we will introduce you to Mobile Services, discuss the features and demonstrate how to get started building a mobile app.

Join Rick Kight (@rickwkight) and I for the second webcast in the Azure Webcast Series on August 20, 2013 1:00PM – 2:00PM CDT. Register now at http://bit.ly/14JyvjZ.


Setting up TFS Build 2010 for SharePoint 2010 Projects and Private MyGet Feeds

Recently, I set up our TFS 2010 Build Server to be able to build SharePoint projects and to leverage our private package feed on MyGet  for custom framework components used in our SharePoint projects. It wasn’t as straightforward as I thought and I had to leverage MyGet support from Xavier Decoster to finally hammer things out. (Thanks for your help, Xavier!)

To do this, there are two general one time setup tasks which needs to happen on the TFS 2010 Build Server. These are:

  • Setup Build Server to Build SharePoint Projects
  • Configure Package Sources to the Private MyGet feed on the Build Server.

Once the setup is finished on the Build Server, you will be able to create build definitions for your SharePoint 2010 projects and even specify for the build server to also package a WSP automagically.

Finally, Xavier Decoster outlined a few check list items in our correspondence back and forth. I thought it might be worth noting these in this blog entry, too. Xavier had mentioned that much of this information is scattered and will be consolidating the guidance on the MyGet blog…stay tuned there.

So here we go…

Setup Build Server to Build SharePoint Projects

SharePoint projects reference SharePoint Server 2010 assemblies which must be present on the build server. One option is to install SharePoint Server 2010. Another options is to copy the following assemblies from your development machine to a Reference Assembly folder on the build server:

  • Microsoft.SharePoint.dll
  • Microsoft.SharePoint.Security.dll
  • Microsoft.SharePoint.WorkflowActions.dll

On the development machine, the above assemblies are typically located at

c:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\ISAPI

and it is recommended to be copied to the build server in the folder

..\Program Files\Reference Assemblies\SharePoint\

Modify the registry to specify the reference assembly location. On a 64 bit Windows Server 2008 R2 Standard machine, add a key named SharePoint14 in:

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\.NETFramework\v2.0.50727\AssemblyFoldersEx

and specify the location where you copied the assemblies to in the step above.

image

Copy the following assemblies to the GAC of the build server (these are located in c:\Windows\Microsoft.NET\assembly\GAC_MSIL on the development machine):

  • Microsoft.VisualStudio.SharePoint.Designers.Models.dll
  • Microsoft.VisualStudio.SharePoint.Designers.Models.Features.dll
  • Microsoft.VisualStudio.SharePoint.Designers.Models.Packages.dll
  • Microsoft.VisualStudio.SharePoint.dll

Finally, for build and package of SharePoint projects, the following custom target and tasks must be copied to the build server:

  • Microsoft.VisualStudio.SharePoint.Targets
  • Microsoft.VisualStudio.SharePoint.Tasks.dll

The files above are located in ..\Program Files\MSBuild\Microsoft\Visual Studio\v10.0\SharePointTools on the development machine and should be copied to ..\Program Files (x86)\MSBuild\Microsoft\Visual Studio\v10.0\SharePointTools on the Build Server.

 

Configure Private MyGet Package Sources

If you are setup like we are, you likely do not have Visual Studio installed on your build server. If this is the case, you will have to specify your MyGet private feed as a package and source and specify an account which has access to this feed. The following steps guide you through using the command line to do this:

  • Start a command prompt and specify to run as the build service account. Provide the password for the build service account when prompted.

runas /user:DomainName\[TfsBuildServiceAccountName] cmd

  • Run the following NuGet commands under the build service account

nuget.exe sources add –name [friendly feed name] –source [url to your private MyGet Feed]

nuget.exe setapikey [apikey] –source [url to your private MyGet feed]

nuget.exe sources update –Name [friendly feed name]-User [username] -pass [password]

 

 

Specify to create a WSP Package in Build Definition

Visual Studio does not generate a WSP package by default for SharePoint projects. To do generate a WSP as part of your build definition, specify the /p:IsPackaging=True build parameter in the MSBuild Arguments.

image

Optionally, if you want to build a WSP package when you queue up a build, you can specify the build parameter at that time.

image

 
 
Gotchas and Considerations

Xavier Decoster (MyGet) was extremely helpful in making sure we got up an running.  The following are a items he listed as a checklist when setting up TFSBuild 2010 to use private MyGet feeds:

  1. When using Enable Package Restore within Visual Studio, you have to make sure that the .nuget folder is checked into source control (including nuget.exe, nuget.targets and nuget.config).
  2. By default, enable package restore only enables those projects that already consume NuGet packages. If you first enabled package restore and then started consuming packages, it is possible that some projects aren’t configured properly. You can verify this by checking whether the project files contain the <RestorePackages>true</RestorePackages> MSBuild property.
  3. NuGet package restore assumes you have a solution in a root directory $(SolutionDir) and all projects have their own subdirectory (e.g. $(SolutionDir)\ProjectA\ProjectA.csproj). If you deviate from this convention, you have to manipulate the <SolutionDir> MSBuild element in the project files accordingly.
  4. NuGet package restore requires a consent (due to privacy policy & legal requirements). This can be set using a system-wide environment variable, which is explained on the NuGet blog (http://blog.nuget.org/20120518/package-restore-and-consent.html)
  5. Double-check whether your solution has the the actual nuget.exe commandline in the .nuget folder, and not the bootstrapper. The commandline is around 600Kb in file size, the bootstrapper 15Kb. The bootstrapper requires internet access, and has been made obsolete now. If you do not have this, it can be downloaded from http://nuget.org/api/v2/package/NuGet.CommandLine/2.0.0.
  6. Ensure the nuget.targets file <PackageSources> element is pointing to the correct URL (in this case MyGet).
  7. Ensure you checked in the Packages\repositories.config file (see my blog on how you can configure your workspace mapping accordingly). http://www.xavierdecoster.com/post/2011/10/17/Tell-TFS-not-to-add-NuGet-packages-to-source-control.aspx 
  8. If you upgraded some regular references to NuGet package dependencies, ensure the <hintpath> in the project file for that reference is pointing towards the correct locatoin in the packages folder.
  9. To verify package restore is fully functional on your local development machine, clear the $(SolutionDir)\Packages folder (except for the repositories.config file), clear all bin/obj folders, and clear the %LocalAppData%\NuGet\Cache folder. Then try building and see if all packages are restored correctly. Works on my local development machine.

Publishing with a Saved Profile causes Visual Studio 2012 RC to crash :(

 

Recently, I needed to deploy a WCF service to IIS and used the publish feature in Visual Studio 2012 RC. On the first cycle, you are asked to create a publish profile by which you preserve publish settings that could be used later. It worked beautifully the first time.

After making a few changes to my service, I tried to publish the service again, and VS 2012 would just crash! It seems that the .pubxml file created for the publish profile is marked as read only. In Windows Explorer, remove the read only attribute on the file and then try to publish again.

Hope this saves someone the wasted time I had to spend trying to research and figure this out. The good news is that the fix for this bug will be included in the next release of VS 2012, which seems like RTM early August.

Technorati Tags: ,

Team Foundation Service (TFS in the Cloud)

What excites me about Team Foundation Service, is that it marries two of my favorite Microsoft technologies—Team Foundation Server 2012 and Windows Azure. Team Foundation Service is the MSFT offering of Team Foundation Server 2012 in the cloud. At this point, Team Foundation Service is in the preview stages, hence the name, TFSPreview. It is currently offered for free…the payment model has not yet been disclosed.

So what does this cloud service offer? Basically, the offering is almost at parity with its on-premise counterpart. What is not included are the following:

  • Virtual Test Lab Management
  • SharePoint Integration
  • Data Warehouse & Reporting
  • Customized process templates and/or custom fields

Unlike on-premise deployments of TFS 2012, Team Foundation Service is characterized with minimal setup and administration, as well as the ability to collaborate with anyone, from anywhere. Cool thing about it being managed by MSFT, is that you will always get the latest bits with minimal interruption (although the SLA has not yet been formalized).

It is currently free during the preview period. It is expected that sometime after TFS 2012 is released, MSFT will announce the pricing model for Team Foundation Service. During the preview period, the geographical location of the datacenter is in the Mid Central US, but it is expected to expand when Team Foundation Service goes live.

From a security perspective, Team Foundation Service uses Federated Internet Identities. Currently, Microsoft Live IDs are supported. In the future, it is expected to support ADFS, oAuth, Facebook, Google ID, etc. Https is enforced and data is stored using in Windows Azure Storage.

Team Foundation Service also provides you an instance of a hosted build controller which sets up your build agents for you. You may continue to use customized build templates and custom build activities as you could normally with an on-premise TFS 2012 instance. However, custom installations on the build server are not supported. Further, because the build controller auto-magically sets up your agents, you cannot change the number of agents being used by your automated build.

If your application is deployed in Windows Azure, you could leverage the Azure tools to support Continuous Integration. Basically, you create a continuous integration build and configure Azure to trust TFSPreview. What this perhaps introduces is a Lab or Test Environment for you application in the cloud. Not as sexy as solution as Virtual Test Lab Management, but certainly a work around.

Sign up for your free account now at http://bit.ly/KXMdFY. At the very least, it gives you a TFS instance to begin playing with some of the TFS 2012 features in conjunction with Visual Studio 2012 RC downloadable at http://bit.ly/OlmPLw.  Sign up today…try it today…and continue to give feedback to the MSFT team to help shape the product.


St. Louis Day of .NET 2012–Sessions Posted

The St. Louis Day of .NET planning committee has confirmed and posted the first round of confirmed sessions for this year’s conference. Check out the site to see what sessions are confirmed to date. As new sessions are confirmed the site will be updated. So make sure to visit frequently. Also, there has been a spike in registration. Don’t be the guy (or gal) who is not able to attend because registration has reached the attendance cap. So…REGISTER NOW!

Just a reminder…the conference is at Ameristar Casino & Resort on August 2 – 4, 2012. See you there.


St. Louis Day of .NET 2012

Right around the corner…Day of .NET 2012. Mark your calendars for August 2 – 4. That’s right, this year the planning committee has planned to add another day to the conference. The “Pre-Compiler” day will kick off the conference on Thursday the 2nd. This day is optional to attendees and cost a little more to get in the door. It will be worth it, though. The Pre-Compiler day is meant for deeper dive 4 or 8 hour sessions on a variety of technical topics.

Tune in to the website at http://www.stlouisdayofdotnet.com/2012 for more session details and for more conference social events as they become available.

Also, the planning committee has also put out the official call for speakers. If you are interested, please submit your session proposals to http://www.stlouisdayofdotnet.com/2012/speakers.

Finally, if you are interested in sponsoring the event, please visit the website to complete the sponsorship package which could be downloaded from the website at http://www.stlouisdayofdotnet.com/2012/Media/Default/Documents/SponsorPacket2012.pdf. Get on the sponsor list early to ensure your organization name is included in all marketing material.


Design a site like this with WordPress.com
Get started