<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jarau.de</title>
	<atom:link href="http://jarau.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://jarau.de</link>
	<description>Shared Experience</description>
	<lastBuildDate>Mon, 07 May 2012 20:01:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Instruction Texts with JavaScript and ASP.NET 4.0</title>
		<link>http://jarau.de/2012/05/07/instruction-texts-with-javascript-and-asp-net-4-0/</link>
		<comments>http://jarau.de/2012/05/07/instruction-texts-with-javascript-and-asp-net-4-0/#comments</comments>
		<pubDate>Mon, 07 May 2012 20:01:07 +0000</pubDate>
		<dc:creator>Jan Rauchfuss</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Form]]></category>
		<category><![CDATA[Instruction Text]]></category>

		<guid isPermaLink="false">http://jarau.de/?p=148</guid>
		<description><![CDATA[Instruction Texts are very wellknown and of corse very useable too. As the name says: with instruction texts you are able to show your users what kind of value he should insert into an textbox or textarea. With ASP.NET it is very easy to insert such a instruction text with only a few lines of [...]]]></description>
			<content:encoded><![CDATA[<p>Instruction Texts are very wellknown and of corse very useable too. As the name says: with instruction texts you are able to show your users what kind of value he should insert into an textbox or textarea. With ASP.NET it is very easy to insert such a instruction text with only a few lines of code.</p>
<p>Let&#8217;s dive directly into it. Lets say you have a form like this one:</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/05/InstructionText.jpg"><img class="aligncenter size-medium wp-image-150" title="Instruction Text with ASP.NET" src="http://jarau.de/wp-content/uploads/2012/05/InstructionText-300x295.jpg" alt="" width="300" height="295" /></a><span id="more-148"></span>We will append a instruction text to each input. We could insert a little javascript to each tag, or we can do this programmaticaly with less work <img src='http://jarau.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  We will do it programmaticaly. Therefore we create a little C# Method:</p>
<pre class="brush: csharp; gutter: true">protected void AppendInstructionText(TextBox control, string value)
{
     control.Text = value;
     control.Attributes.Add(&quot;onfocus&quot;, &quot;if (this.value == &#039;&quot; + value + &quot;&#039;) { this.value = &#039;&#039;; }&quot;);
     control.Attributes.Add(&quot;onblur&quot;, &quot;if (this.value ==&#039;&#039;) { this.value = &#039;&quot; + value + &quot;&#039;; }&quot;);
}</pre>
<p>This method will attend the default text, and the focus and blur functionallity to a specified control.</p>
<pre class="brush: csharp; gutter: true">protected void Page_Load(object sender, EventArgs e)
{
     this.AppendInstructionText(this.NameTextBox, &quot;John Doe&quot;);
     this.AppendInstructionText(this.EmailTextBox, &quot;my.mail@test.com&quot;);
     this.AppendInstructionText(this.MessageTextBox, &quot;My instruction Text&quot;);
}</pre>
<p>We will call this method for each control during the Page_Load event by handing over a control and a instruction text. Now the instruction texts are working fine.</p>
<p>But we can extend this little example by adding a special css class, each time the instruction text is displayed. Therefore we create a little css class:</p>
<pre class="brush: css; gutter: true">.preview {
     font-style: italic;
     color: Gray;
}</pre>
<p>We need to implement jQuery too, to make it a little bit more efficient. After that we need to modify our AppendInstructionText-Method with the little jQuery functionallity to add or remove a css class and to add the &#8220;preview&#8221;-class by default.</p>
<pre class="brush: csharp; gutter: true">protected void AppendInstructionText(TextBox control, string value)
{
     control.Text = value;
     control.Attributes.Add(&quot;onfocus&quot;, &quot;if (this.value == &#039;&quot; + value + &quot;&#039;) { this.value = &#039;&#039;; $(this).removeClass(&#039;preview&#039;); }&quot;);
     control.Attributes.Add(&quot;onblur&quot;, &quot;if (this.value ==&#039;&#039;) { this.value = &#039;&quot; + value + &quot;&#039;; $(this).addClass(&#039;preview&#039;); }&quot;);
     control.CssClass += &quot; preview&quot;;
}</pre>
<p>You can download this small example here: <a href="http://jarau.de/wp-content/uploads/2012/05/InstructionTexts.zip">Code Instruction Texts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jarau.de/2012/05/07/instruction-texts-with-javascript-and-asp-net-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Team Foundation Server 11 Link Stack</title>
		<link>http://jarau.de/2012/05/01/team-foundation-server-11-link-stack/</link>
		<comments>http://jarau.de/2012/05/01/team-foundation-server-11-link-stack/#comments</comments>
		<pubDate>Tue, 01 May 2012 17:36:46 +0000</pubDate>
		<dc:creator>Jan Rauchfuss</dc:creator>
				<category><![CDATA[Application Lifecycle Management]]></category>
		<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[ALM]]></category>
		<category><![CDATA[bestpractice]]></category>
		<category><![CDATA[stack]]></category>
		<category><![CDATA[TFS]]></category>
		<category><![CDATA[TFS11]]></category>

		<guid isPermaLink="false">http://jarau.de/?p=141</guid>
		<description><![CDATA[We all know, sometimes it&#8217;s hard to find all usefull links for any topic again. Sometimes it&#8217;s hard to find any resources at all. Therefore I have started a new Stack for Team Foundation Server 11 Beta at Delicious. I have just started to collect all the guide&#8217;s from the ALM Rangers. In the next [...]]]></description>
			<content:encoded><![CDATA[<p>We all know, sometimes it&#8217;s hard to find all usefull links for any topic again. Sometimes it&#8217;s hard to find any resources at all. Therefore I have started a new Stack for Team Foundation Server 11 Beta at <a title="Delicious.com" href="http://www.delicious.com" target="_blank">Delicious</a>. I have just started to collect all the guide&#8217;s from the ALM Rangers. In the next day&#8217;s and month I will add all useful links for guides and tutorials about best practice for TFS11. I hope you like it and if you know any useful Links for this Stack please let me know! You can find my stack <a title="TFS11 Stack @ Delicious" href="http://www.delicious.com/stacks/view/DaYQSl" target="_blank">here</a>.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/05/tfs-stack.jpg"><img class="aligncenter size-medium wp-image-142" title="My new TFS 11 Stack at Delicious" src="http://jarau.de/wp-content/uploads/2012/05/tfs-stack-300x114.jpg" alt="" width="300" height="114" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jarau.de/2012/05/01/team-foundation-server-11-link-stack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Codeplex with new design?</title>
		<link>http://jarau.de/2012/05/01/codeplex-with-new-design/</link>
		<comments>http://jarau.de/2012/05/01/codeplex-with-new-design/#comments</comments>
		<pubDate>Tue, 01 May 2012 17:30:19 +0000</pubDate>
		<dc:creator>Jan Rauchfuss</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Codeplex]]></category>

		<guid isPermaLink="false">http://jarau.de/?p=137</guid>
		<description><![CDATA[Have you noticed the new design of Codeplex.com? By hazard I just saw it. I remember when I visited Codeplex two day&#8217;s ago it was the old green. But now it looks fancy and great. Codeplex has now a Visual Studio Metro style, and I would say: It&#8217;s great. I think this new design was [...]]]></description>
			<content:encoded><![CDATA[<p>Have you noticed the new design of <a title="Codeplex.com" href="http://www.codeplex.com/" target="_blank">Codeplex.com</a>? By hazard I just saw it. I remember when I visited Codeplex two day&#8217;s ago it was the old green. But now it looks fancy and great. Codeplex has now a Visual Studio Metro style, and I would say: It&#8217;s great. I think this new design was long time overdue. Thank you Codeplex for the new design, you&#8217;ve done a great job!</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/05/codeplex-newdesigns.jpg"><img class="aligncenter size-medium wp-image-138" title="The new Codeplex.com design" src="http://jarau.de/wp-content/uploads/2012/05/codeplex-newdesigns-300x154.jpg" alt="" width="300" height="154" /></a>[UPDATE] 20 hours ago the new design has been raised by the Codeplex team. At the <a title="Codeplex Blog" href="http://blogs.msdn.com/b/codeplex/archive/2012/04/30/new-codeplex-ui-released.aspx" target="_blank">Codeplex blog</a>. First of all they changed the design to this new fancy layout. But they changed the way how to create a new project too. By now the creation of a new project is much simpler as before. By now it&#8217;s just one single and small formular.</p>
]]></content:encoded>
			<wfw:commentRss>http://jarau.de/2012/05/01/codeplex-with-new-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Team Project Collection for TFS 11 Beta</title>
		<link>http://jarau.de/2012/04/30/create-a-team-project-collection-for-tfs-11-beta/</link>
		<comments>http://jarau.de/2012/04/30/create-a-team-project-collection-for-tfs-11-beta/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 11:50:44 +0000</pubDate>
		<dc:creator>Jan Rauchfuss</dc:creator>
				<category><![CDATA[Application Lifecycle Management]]></category>
		<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[ALM]]></category>
		<category><![CDATA[Team Project Collection]]></category>
		<category><![CDATA[TFS]]></category>
		<category><![CDATA[TFS11]]></category>

		<guid isPermaLink="false">http://jarau.de/?p=118</guid>
		<description><![CDATA[With Team Foundation Server 2010 Microsoft introduced the feature of Team Project Collections. Each Team Foundation Server can host one or more Team Project Collections, where each Team Project Collection can accommodate one or more Team Projects. For them who is familiar with SharePoint, each Team Project Collections is similar to a SharePoint Site Collection. [...]]]></description>
			<content:encoded><![CDATA[<p>With Team Foundation Server 2010 Microsoft introduced the feature of Team Project Collections. Each Team Foundation Server can host one or more Team Project Collections, where each Team Project Collection can accommodate one or more Team Projects.</p>
<p>For them who is familiar with SharePoint, each Team Project Collections is similar to a SharePoint Site Collection. For them who is not familiar with SharePoint: Team Project Collections are independent units, acts as a container for basic unit isolation and archiving.</p>
<p style="text-align: left;">Before you consider creating multiple Team Project Collections you should know the limitations about them and the situations where you should use a concept of multiple Team Project Collections.</p>
<table class="aligncenter" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="215"><strong>Feature</strong></td>
<td valign="top" width="399"><strong>Constraint</strong></td>
</tr>
<tr>
<td valign="top" width="215">Number of active collections</td>
<td valign="top" width="399">30 to 100 per SQL   Server Instance</td>
</tr>
<tr>
<td valign="top" width="215">Total number of collections</td>
<td valign="top" width="399">10 to 8.000 per SQL   Server Instance</td>
</tr>
<tr>
<td valign="top" width="215">Branching</td>
<td valign="top" width="399"><strong>Not</strong> allowed across Team Project Collections</td>
</tr>
<tr>
<td valign="top" width="215">Build Machine   Scoping</td>
<td valign="top" width="399">Scoped to <strong>one</strong> Team Project Collection</td>
</tr>
<tr>
<td valign="top" width="215">Connecting a User</td>
<td valign="top" width="399">To <strong>one</strong> Team Project Collection at a time</td>
</tr>
<tr>
<td valign="top" width="215">Renaming</td>
<td valign="top" width="399"><strong>Not</strong> supported to rename</td>
</tr>
<tr>
<td valign="top" width="215">Sharing of Artifacts</td>
<td valign="top" width="399"><strong>Not</strong> allowed across Team Project Collections</td>
</tr>
<tr>
<td valign="top" width="215">Work Item Linking</td>
<td valign="top" width="399"><strong>Not</strong> allowed across Team Project Collections</td>
</tr>
<tr>
<td valign="top" width="215">Work Item Queries</td>
<td valign="top" width="399"><strong>Not</strong> allowed across Team Project Collections</td>
</tr>
</tbody>
</table>
<p>As you can see from the table above, we have some limitations. The most important limitation is that we can’t rename a Team Project Collection after creation. The other important limitations are the communication limitations between Team Project Collections. As a mentioned before, Team Project Collections are isolated containers. We are not able to communicate between them.<span id="more-118"></span></p>
<p>So the question is, when should we use a multiple Team Project Collection strategy? You are working for a big company for industrial goods as a developer. You have some projects across the company. Some of them are related to each other, but in fact, all Team Projects sharing some specific configurations. That is the moment where you should consider to use a single Team Project Collection strategy.</p>
<p>But now you are working for a big consulting company. Your customers are some big companies for malicious goods and services. They hire you to develop some applications for them. Each application, each customer are completely different and needs separate security configurations and more. That’s the point where you should say: One Team Project Collection per customer or one Team Project Collection per big project.</p>
<p>We have two options to create the Team Project Collection. First and most user friendly opportunity is the “Team Foundation Server Administration Console”. By default you would say, that this application is a command-line tool, but it isn’t, it is an administration tool with a graphical user interface. You can start this tool from the windows menu.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections.jpg"><img class="aligncenter size-full wp-image-119" title="Team Project Collections" src="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections.jpg" alt="" width="977" height="289" /></a></p>
<p>By moving to the Team Project Collections we are able to create a new Team Project Collection by clicking the “Create Collection Button”. A wizard will open, where we can specify all the important configurations. The first step will be the specification of the name and the description of our new Team Project Collection.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-step1.jpg"><img class="aligncenter size-medium wp-image-120" title="Create a Team Project Collection - General Data" src="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-step1-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Here we will specify our unique name. Please remember that we never can change this name! So choose wisely.  You can define a description too. After that you have two options: leave everything else by default by clicking Verify, or make some other changes by clicking next or moving to the next step where you would like to take some changes. In this example we will go ahead with each step, so click “Next”.</p>
<p>The Data Tier is the step where you can specify your database settings. Here you can specify your SQL Server Instance and the option for the database. By default I would always suggest you to create a new database. If you remember the limitations of the Team Project Collections, this is the point where you should consider using a different SQL Server Instance if you hit the limitations.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-datatier.jpg"><img class="aligncenter size-medium wp-image-121" title="Create a Team Project Collection - Data Tier" src="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-datatier-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>In the next step you can configure your SharePoint site. By default the SharePoint Farm will be selected, which has been chosen during the installation process. With the advanced configuration you are able to specify different path and locations or decide not to create a SharePoint site.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-sharepoint.jpg"><img class="aligncenter size-medium wp-image-122" title="Creating a Team Project Collection - SharePoint" src="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-sharepoint-300x226.jpg" alt="" width="300" height="226" /></a></p>
<p>Last but not least you can specify the reporting configuration for your Team Project Collection. Most reporting values are defined by default, but with the “Advanced configuration” you are able to select different options for sure too.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-reports.jpg"><img class="aligncenter size-medium wp-image-123" title="Creating a Team Project Collection - Reports" src="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-reports-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>For the next steps you can specify your Lab Management and review your configuration. I am not able to show you the configuration of the Lab Management in here, because I haven’t configured it with my installation, but I will show you later on in another article.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-readiness.jpg"><img class="aligncenter size-medium wp-image-128" title="Creating a Team Project Collection - Readiness Check" src="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-readiness-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>Now you can click the “Verify” button to verify your configuration. If all your configurations have passed you are able to create the Team Project Collection by clicking the “Create” button.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-complete.jpg"><img class="aligncenter size-medium wp-image-129" title="Creating a Team Project Collection - Complete" src="http://jarau.de/wp-content/uploads/2012/04/tfs-teamprojectcollections-complete-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>Team Foundation Server will now perform all the necessary steps to create your Team Project Collection. This can take some time, depends on your hardware <img src='http://jarau.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> . Your Team Project Collection is now ready for use.</p>
]]></content:encoded>
			<wfw:commentRss>http://jarau.de/2012/04/30/create-a-team-project-collection-for-tfs-11-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Team Foundation Server 11 Beta</title>
		<link>http://jarau.de/2012/04/29/installing-team-foundation-server-11-beta/</link>
		<comments>http://jarau.de/2012/04/29/installing-team-foundation-server-11-beta/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 19:00:53 +0000</pubDate>
		<dc:creator>Jan Rauchfuss</dc:creator>
				<category><![CDATA[Application Lifecycle Management]]></category>
		<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[TFS]]></category>
		<category><![CDATA[TFS11]]></category>

		<guid isPermaLink="false">http://jarau.de/?p=68</guid>
		<description><![CDATA[Today I want to show you how you can install the new Microsoft Team Foundation Server 11 Beta to a Windows Server 2008 R2. With this installation you will be able to explore all the new features of Microsoft Team Foundation Server 11 Beta. The Team Foundation Server is a collaboration platform at the core [...]]]></description>
			<content:encoded><![CDATA[<p>Today I want to show you how you can install the new Microsoft Team Foundation Server 11 Beta to a Windows Server 2008 R2. With this installation you will be able to explore all the new features of Microsoft Team Foundation Server 11 Beta. The Team Foundation Server is a collaboration platform at the core of Microsoft&#8217;s application lifecycle management. It is shipping with some features to improve the whole development project.</p>
<p>Microsoft have improved alot since the last Version. Some features are:</p>
<ul>
<li>Implementation of a new Look and Feel for both Team Web Access and Team Explorer (Oh I love the new layout)</li>
<li>Improvements of the agile project management, like the new Scrum 2.0 process template</li>
<li>Improvements of the agile requirements management</li>
<li>Improvements of the version control</li>
<li>New Build Definitions, Build Process, and Gated Check-ins</li>
<li>Work Iem Tracking and Alert</li>
<li>Improvements of administering Team foundation server</li>
<li>and a lot of more.</li>
</ul>
<p><strong>Requirements</strong></p>
<p>But let&#8217;s start with the requirements. For a good installation you should consider using the new Windows Server 8 Consumer Preview. But a Windows Server 2008 R2 (64bit) with the latest Service Pack is working good too. If you try to install Windows Server 8 to a virtual machine like VirtualBox or VMWare Player be aware of installing Windows Server 8 and start with a installation of the Windows Server 2008 R2. For this tutorial we will install the Team Foundation Server 11 Beta to a Windows Server 2008 R2 Standard. Before you start make sure, that you have installed the latest Service Pack and updates. You can find all requirement <a title="System Requirements for Team Foundation Server 11 Beta" href="http://msdn.microsoft.com/de-de/library/dd578592(v=vs.110).aspx" target="_blank">here</a>.</p>
<p><span id="more-68"></span></p>
<p><strong>Database</strong></p>
<p>You should have a installed Version of the Microsoft SQL Server 2008 R2 Standard or Enterprise, or a installed Version of the Microsoft SQL Server 2012 Standard or Enterprise. The preview of the Team Foundation Server 11 is not working with the developer editions, so please avoid using them, cause a Update of it will be hard <img src='http://jarau.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> . At least you SQL Server should have the Reporting, Analysis, and the DataBase engine features enabled. <a href="http://jarau.de/wp-content/uploads/2012/04/mssql2012-features.jpg"><img class="aligncenter" title="Microsoft SQL Server 2012 - Features" src="http://jarau.de/wp-content/uploads/2012/04/mssql2012-features-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p><strong>SharePoint</strong></p>
<p>You also should have installed a Microsoft SharePoint 2010 Server. If you are using a Active Directory you are not able to install the SharePoint Foundation Server. Therefore it&#8217;s better if you have already installed the SharePoint Server before beginning installation of the Team Foundation Server. You can decide if you want to install SharePoint to the same machine or to an another remote server.</p>
<p><strong>Install Team Foundation Server 11</strong></p>
<p>After we have finished our prerequists we can start installing Team Foundation Server 11 Beta. If you havn&#8217;t already downloaded your image of the team foundation server, you can visit the official <a title="Visual Studio 11" href="http://www.microsoft.com/visualstudio/11/de-de" target="_blank">Visual Studio 11</a> site and <a title="Download Team Foundation Server 11" href="http://www.microsoft.com/visualstudio/11/de-de/downloads" target="_blank">download</a> it. I prefer to download the complete image and not the web installer. The reason why is that I will use this image for further installation like installing a build server to a another machine.</p>
<p>So let&#8217;s start the installation tool. You have to go thrue some steps to install the Team Foundation Server, like accepting the EULA, or chosing the directory. This is not the installation of the Team Foundation Server 11, but the installation of the prerequist and the main functionallity of the Team Foundation Server. We will start installing and configure a new instance of the Team Foundation Server 11 after these steps have been finished.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-installation.jpg"><img class="aligncenter size-medium wp-image-95" title="Team Foundation Server - Installation" src="http://jarau.de/wp-content/uploads/2012/04/tfs-installation-300x218.jpg" alt="" width="300" height="218" /></a></p>
<p>After the installation is complete the Configuration Wizard will be opened. Here you can select the configuration of your Team Foundation Server. You can choose between:</p>
<ul>
<li>Basic &#8211; A compact modus</li>
<li>Standard &#8211; A compact modus with SharePoint Foundation integration</li>
<li>Advanced &#8211; A great configuration with SharePoint 2010 Server integration and Reporting</li>
<li>Application Tier only &#8211; just the application tier</li>
<li>Upgrade &#8211; Update from a TFS 2010</li>
</ul>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-configurationwizard.jpg"><img class="aligncenter size-medium wp-image-97" title="Team Foundation Server 11 - Configuration Wizard" src="http://jarau.de/wp-content/uploads/2012/04/tfs-configurationwizard-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>We will perform the <strong>Advanced</strong> configuration and start the wizard. But before we go ahead, we need to create a Domainuser  as a service account. Therefore we open the Active Directory configuration of our Windows Server 2008 R2 and create a new User. <a href="http://jarau.de/wp-content/uploads/2012/04/tfs-newuserobject.jpg"><img class="aligncenter size-medium wp-image-98" title="Active Directory - TFS Service Account creation" src="http://jarau.de/wp-content/uploads/2012/04/tfs-newuserobject-300x252.jpg" alt="" width="300" height="252" /></a>I will name the account &#8220;tfsservice&#8221;. For the password, enable that the password can&#8217;t expire, and that the user don&#8217;t have to change the password on the next login. Select a password that you can remember <img src='http://jarau.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> . So let&#8217;s go back to the wizard again and start the configuration.</p>
<p>In the first step we have to define the database. Therefore enter the database instance. By default a local datasource will be selected. You can attend a database label or select a predefined database. For this little example we will use a selected instance and leave everything by default.<a href="http://jarau.de/wp-content/uploads/2012/04/tfs-databaseconf.jpg"><img class="aligncenter size-medium wp-image-100" title="Team Foundation Server - Database Configuration" src="http://jarau.de/wp-content/uploads/2012/04/tfs-databaseconf-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>In the next step we have to define the Service Account and the authentication method. We will now select our defined user (tfsservice) and select NTLM as the authentication method. If your server is Kerberos ready, you could use Kerberos as well.<a href="http://jarau.de/wp-content/uploads/2012/04/tfs-accountconfig.jpg"><img class="aligncenter size-medium wp-image-102" title="Team Foundation Server - Service Account Configuration" src="http://jarau.de/wp-content/uploads/2012/04/tfs-accountconfig-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>We are now able to change the default application-tier settings. In this example I dont want to change anything. In a productive way you would maybe select some different values like the port.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-applicationtier.jpg"><img class="aligncenter size-medium wp-image-103" title="Team Foundation Server - Application Tier" src="http://jarau.de/wp-content/uploads/2012/04/tfs-applicationtier-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The next steps we will leave by default. This is the whole reporting and analysis tier. So if your installation havn&#8217;t fill in the right values, you have to change them.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/04/tfs-reporting.jpg"><img class="aligncenter size-thumbnail wp-image-104" style="float: left;" title="Team Foundation - Reporting Service" src="http://jarau.de/wp-content/uploads/2012/04/tfs-reporting-150x150.jpg" alt="" width="150" height="150" /></a><img class="aligncenter size-thumbnail wp-image-105" style="float: left;" title="Team Foundation Server - Analysis Service" src="http://jarau.de/wp-content/uploads/2012/04/tfs-analysis-150x150.jpg" alt="" width="150" height="150" /><img class="aligncenter size-thumbnail wp-image-106" style="float: left;" title="Team Foundation Server - Reporting Reader" src="http://jarau.de/wp-content/uploads/2012/04/tfs-reportreader-150x150.jpg" alt="" width="150" height="150" /></p>
<p>&nbsp;</p>
<p style="text-align: left; float: none; clear: both;">For the SharePoint configuration you have to define the path to a Webapplication. If you want to use a brand new SharePoint installation with this new instance of Team Foundation Server 11 Beta, make sure that you have already created a Web Application. If necessary change the default values for the SharePoint fields.<a href="http://jarau.de/wp-content/uploads/2012/04/tfs-sharepoint.jpg"><img class="aligncenter size-medium wp-image-108" title="Team Foundation Server - SharePoint Integration" src="http://jarau.de/wp-content/uploads/2012/04/tfs-sharepoint-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p> After you have specify your project collection you can run the readyness check. Hopefully most of them were green <img src='http://jarau.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> . For sure, as you can see my system has some warnings. That is not because we have some mistakes but my system is not strong enough. It&#8217;s only a virtual machine and not for production. <img src='http://jarau.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Start the configuration by clicking the &#8220;Configure&#8221; button.<a href="http://jarau.de/wp-content/uploads/2012/04/tfs-readiness.jpg"><img class="aligncenter size-medium wp-image-111" title="Team Foundation Server - Readiness Check" src="http://jarau.de/wp-content/uploads/2012/04/tfs-readiness-300x224.jpg" alt="" width="300" height="224" /></a>Now the configuration will perform. After that you have a completed installation of the Team Foundation Server 11 Beta. You can open the Web Client by clicking the link. If you use VirtualBox, this is the right moment to make a snapshop before you start playing with the Team Foundation Server 11 Beta.<a href="http://jarau.de/wp-content/uploads/2012/04/tfs-complete.jpg"><img class="aligncenter size-medium wp-image-114" title="Team Foundation Server - Setup Complete" src="http://jarau.de/wp-content/uploads/2012/04/tfs-complete-300x224.jpg" alt="" width="300" height="224" /></a></p>
<p>So Enjoy your TFS! <img src='http://jarau.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://jarau.de/2012/04/29/installing-team-foundation-server-11-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Metro style theme for jQuery Mobile</title>
		<link>http://jarau.de/2012/04/29/metro-style-theme-for-jquery-mobile/</link>
		<comments>http://jarau.de/2012/04/29/metro-style-theme-for-jquery-mobile/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 14:43:57 +0000</pubDate>
		<dc:creator>Jan Rauchfuss</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Metro Style]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[WP7]]></category>

		<guid isPermaLink="false">http://jarau.de/?p=75</guid>
		<description><![CDATA[jQuery Mobile is a unifed, HTML5-based user inferface system for all popular mobile device plattforms. It is build on the jQuery and jQuery UI foundation. Many mobile pages were done with this framework, but it allways has looked like a iPhone app. But how it could look like a Windows Phone 7.5? Microsoft Open Technologies [...]]]></description>
			<content:encoded><![CDATA[<p><a title="jQuery Mobile" href="http://jquerymobile.com/" target="_blank">jQuery Mobile</a> is a unifed, HTML5-based user inferface system for all popular mobile device plattforms. It is build on the jQuery and jQuery UI foundation. Many mobile pages were done with this framework, but it allways has looked like a iPhone app. But how it could look like a Windows Phone 7.5?</p>
<p>Microsoft Open Technologies worked closely with Sergei Grebnov to build an <a title="Blog entry on MSDN" href="http://blogs.msdn.com/b/interoperability/archive/2012/04/26/more-news-from-ms-open-tech-announcing-the-open-source-metro-style-theme.aspx" target="_blank">open source Metro style theme for jQuery Mobile</a>. The theme, composed of CSS- and JavaScript files, can be explored at <a title="jQuery Mobile Metro Theme" href="http://sgrebnov.github.com/jqmobile-metro-theme/" target="_blank">GitHub</a>. For sure you can find there some demo&#8217;s too.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/04/jquerymobilemetro1.png"><img class="wp-image-76" style="float: left;" title="jQuery Mobile Metro Theme - Textelements" src="http://jarau.de/wp-content/uploads/2012/04/jquerymobilemetro1.png" alt="" width="95" height="173" /></a><a href="http://jarau.de/wp-content/uploads/2012/04/jquerymobilemetro1.png"><img class="aligncenter  wp-image-76" style="float: left;" title="jQuery Mobile Metro Theme - Textelements" src="http://jarau.de/wp-content/uploads/2012/04/jquerymobilemetro1.png" alt="" width="95" height="173" /></a><a href="http://jarau.de/wp-content/uploads/2012/04/jquerymobilemetro3.png"><img class="aligncenter  wp-image-80" style="float: left;" title="jQuery Mobile Metro Theme - Form elements (2)" src="http://jarau.de/wp-content/uploads/2012/04/jquerymobilemetro3.png" alt="" width="95" height="173" /></a><a href="http://jarau.de/wp-content/uploads/2012/04/jquerymobilemetro4.png"><img class="aligncenter  wp-image-86" style="float: left;" title="jQuery Mobile Metro Theme - List Views" src="http://jarau.de/wp-content/uploads/2012/04/jquerymobilemetro4.png" alt="" width="95" height="173" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://jarau.de/2012/04/29/metro-style-theme-for-jquery-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whitepaper for Team Foundation Services</title>
		<link>http://jarau.de/2012/04/25/whitepaper-for-team-foundation-services/</link>
		<comments>http://jarau.de/2012/04/25/whitepaper-for-team-foundation-services/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 19:34:56 +0000</pubDate>
		<dc:creator>Jan Rauchfuss</dc:creator>
				<category><![CDATA[Application Lifecycle Management]]></category>
		<category><![CDATA[ALM]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[TFS Services]]></category>
		<category><![CDATA[TFSPreview]]></category>

		<guid isPermaLink="false">http://jarau.de/?p=70</guid>
		<description><![CDATA[Oh I have missed the release of the Whitepaper for the Team Foundation Service by the ALM Rangers. I don&#8217;t hope so but there are maybe some others who has missed it to. The ALM Rangers are a group of experts who promote collaboration between the Visual Studio product group, Microsoft Services, and the Microsoft Most [...]]]></description>
			<content:encoded><![CDATA[<p>Oh I have missed the release of the <a title="Team Foundation Services Guidlines" href="http://vsarguidance.codeplex.com/releases/view/85868" target="_blank">Whitepaper </a>for the Team Foundation Service by the <a title="ALM Rangers readiness beta wave" href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/02/29/welcome-to-visual-studio-11-alm-rangers-readiness-beta-wave.aspx" target="_blank">ALM Rangers</a>. I don&#8217;t hope so but there are maybe some others who has missed it to. The ALM Rangers are a group of experts who promote collaboration between the Visual Studio product group, Microsoft Services, and the Microsoft Most Valuable Professional (MVP) community by addressing missing functionality, removing adoption blockers, and publishing best practices and guidance based on real-world experience.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/almrangersbeta.png"><img class="aligncenter size-full wp-image-71" title="ALM Rangers Readiness Beta “Wave”" src="http://jarau.de/wp-content/uploads/2012/04/almrangersbeta.png" alt="" width="358" height="133" /></a></p>
<p>The <a title="Team Foundation Services Guidlines" href="http://vsarguidance.codeplex.com/releases/view/85868" target="_blank">Whitepaper </a>is a introduce into the Team Foundation Service environment, talking about the pro and contra about moving his Team Foundation Server to Windows Azure. I hope you enjoy this Guidiance as much as I did!</p>
]]></content:encoded>
			<wfw:commentRss>http://jarau.de/2012/04/25/whitepaper-for-team-foundation-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploratory Testing with Microsoft Test Manager 11</title>
		<link>http://jarau.de/2012/04/25/exploratory-testing-with-microsoft-test-manager-11/</link>
		<comments>http://jarau.de/2012/04/25/exploratory-testing-with-microsoft-test-manager-11/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 14:41:56 +0000</pubDate>
		<dc:creator>Jan Rauchfuss</dc:creator>
				<category><![CDATA[Application Lifecycle Management]]></category>
		<category><![CDATA[Software Testing]]></category>
		<category><![CDATA[ALM]]></category>
		<category><![CDATA[Exploratory Testing]]></category>
		<category><![CDATA[Microsoft Test Manager]]></category>

		<guid isPermaLink="false">http://jarau.de/?p=55</guid>
		<description><![CDATA[One approach to software testing is exploratory testing. It concisely describing a simultaneous learning, test design and test execution, in short: You testing software without having any plan. Cem Kaner defines exploratory testing as “a style of software testing that emphasizes the personal freedom and responsibility of the individual tester to continually optimize the quality [...]]]></description>
			<content:encoded><![CDATA[<p>One approach to software testing is exploratory testing. It concisely describing a simultaneous learning, test design and test execution, in short: You testing software without having any plan. Cem Kaner defines exploratory testing as “a style of software testing that emphasizes the personal freedom and responsibility of the individual tester to continually optimize the quality of his/her work by treating test-related learning, test design, test execution, and test result interpretation as mutually supportive activities that run in parallel throughout the project”.</p>
<p>It’s no secret that most of the important bugs where not identified by any test case, they were found by unanticipated exploration of the software. The idea behind exploration testing is that you are testing a software without any test cases, but in the moment when you find a bug you want to create a description of the bug and all actions that were done to reproduce the bug, and to write down a test case to ensure that this bug can be clarified later on.</p>
<p><span id="more-55"></span></p>
<p>With Visual Studio 2012 Microsoft extends the functionality of the Test Manager with the functionality of exploratory testing which is maybe the most important new feature of Visual Studio 2012.</p>
<p>In this little explanation we want to do exploratory testing at Bing.com. We will maybe don’t find any bugs, but for this little explanation it is a good way to visualize how you can do exploratory testing.</p>
<p>Therefore you can open your Internet Explorer and open Bing.com. In the next step start the Microsoft Testing Manager and login into your collection. On the navigation under the Test tab, you can find the little navigation point “Do Exploratory Testing”. This option opens the exploratory testing interface.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-menu.jpg"><img class="aligncenter size-full wp-image-56" title="Navigation to exploratory testing." src="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-menu.jpg" alt="" width="988" height="93" /></a></p>
<p>At the first interface you have to select the “Explore” option to start the exploratory testing. We will not configure any other options and leave everything by default.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-do.jpg"><img class="aligncenter size-full wp-image-57" title="Selecting the exploratory test options." src="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-do.jpg" alt="" width="945" height="91" /></a></p>
<p><a href="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-window.jpg"><img class="alignleft  wp-image-58" title="Exploratory testing window." src="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-window-269x300.jpg" alt="" width="269" height="300" /></a>As you can see at the next figure, the well-known window for running test cases is starting, but in this case without any defined steps. At this window you have the option to start, stop and break a test. For sure you have the functionality to record your tests as well.</p>
<p>You can now start testing. So switch to the browser window and begin testing. In my case I just put in a search string and click search. After the search has finished and the results were rendered, I click on the first option.</p>
<p>Now I could be maybe the point where you find a bug. You have now the chance to create the bug by clicking the “Create Bug” option.</p>
<p>A new window opens, where you can define all the things around the bug you have found. In this point Microsoft Test Manager collecting all the actions I have done and add them to the bug description. In this window you are able to define all the useful information’s for reproducing the bug. For sure you can define a Bug title, like you know in other workflows too. You are also able to modify the actions defined in the description. You can start modifying these steps by clicking “Change Steps”.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-comment.jpg"><img class=" wp-image-59 aligncenter" title="Display of the Steps created by the exploriatory test." src="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-comment-300x108.jpg" alt="" width="300" height="108" /></a></p>
<p>The Microsoft Test Manager helps us to select the necessary steps in a very easy control. By default you are only select a range of related steps, but you are not able to deselect any steps between some steps. In this case I have selected the last three steps, cause I think that the “Select ‘Nur Deutsch’ radio button is interesting for the testing.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-selectsteps.png"><img class="aligncenter size-full wp-image-60" title="Selecting steps from the exploratory test." src="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-selectsteps.png" alt="" width="510" height="286" /></a></p>
<p>Now you are at the situation where you decide that your steps are a great opportunity for a test case. You are able to define a test case too by clicking “Create test case”. The well known window for creating a test case will be shown and you are able to define your test case options.</p>
<p>In this case you are also able to reduce the steps and to make it all clean, like refactoring your test steps and so on.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-testcase.png"><img class="aligncenter  wp-image-61" title="Testcase created from the exploratory test." src="http://jarau.de/wp-content/uploads/2012/04/exploratory-testing-testcase.png" alt="" width="394" height="332" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jarau.de/2012/04/25/exploratory-testing-with-microsoft-test-manager-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Part 1: SharePoint Fluent Ribbon &#8211; Installation and preparation</title>
		<link>http://jarau.de/2012/03/22/part-1-sharepoint-fluent-ribbon-installation-and-preparation/</link>
		<comments>http://jarau.de/2012/03/22/part-1-sharepoint-fluent-ribbon-installation-and-preparation/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 19:30:13 +0000</pubDate>
		<dc:creator>Jan Rauchfuss</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Fluent]]></category>
		<category><![CDATA[Ribbon]]></category>

		<guid isPermaLink="false">http://jarau.de/?p=35</guid>
		<description><![CDATA[Ribbons are one of the most notable enhancements to the user interface (UI) of SharePoint 2010. Most users are familiar with ribbons, because they are already implemented in well-known applications like the Microsoft Office Suit. Ribbons in SharePoint acts much the same way that it does in other Microsoft Office applications.  A part of any [...]]]></description>
			<content:encoded><![CDATA[<p>Ribbons are one of the most notable enhancements to the user interface (UI) of SharePoint 2010. Most users are familiar with ribbons, because they are already implemented in well-known applications like the Microsoft Office Suit. Ribbons in SharePoint acts much the same way that it does in other Microsoft Office applications.</p>
<p style="text-align: left;"><a href="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-ribbon.png"><img class="aligncenter  wp-image-36" title="SharePoint 2010 Standard Ribbon" src="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-ribbon.png" alt="" width="607" height="69" /></a> A part of any designer’s role is to ensure and create a ribbon that fits the need for a specific site. The default ribbon does not fit the need for each application at all. Therefore developer’s and designers have to customize ribbons like adding buttons, tabs or groups.</p>
<p>By default ribbons are created within a XML file. This kind of development is very complex and difficult to enhance. This leads the developer to spend a lot of time creating a ribbon. One other very important issue is the validation functionality. Building our projects doesn’t mean that our ribbon is runnable.</p>
<p>The SharePoint 2010 Fluent Ribbon API is a library to help developers to create and manage ribbons fluently without a single line of XML. This API is hosted on Codeplex (<a href="http://spribbon.codeplex.com/">http://spribbon.codeplex.com/</a>) and released under the Microsoft Public License.</p>
<p>In this and the upcomming post I will show you how to use the Fluent Ribbon API together with SharePoint 2010. So in this post you will learn how to prepare your Solution for the Fluent Ribbons, and in the next posts I will show you how to create, manage and validate ribbons fluently with C#.</p>
<p><span id="more-35"></span></p>
<p>SharePoint 2010 does not implement a feature to develop Ribbons fluently with C# by default. Therefore we need to install the Library for the SharePoint 2010 Fluent Ribbons first. You can download the assembly from <a href="http://spribbon.codeplex.com/releases/">http://spribbon.codeplex.com/releases/</a>. The actual version is 1.4 released on the 10<sup>th</sup> January 2012.</p>
<p>Now we are able to create a first solution and project. Therefore we have to open Visual Studio 2010 first. So by default we are creating an Blank Solution. In this example it’s named “JaRau”.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-blanksolution.png"><img class="aligncenter  wp-image-37" title="Blank SharePoint 2010 Solution" src="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-blanksolution.png" alt="" width="572" height="269" /></a></p>
<p>By right click on our Solution we add a new “Solution Folder” called “Libraries”. We have to open now the Project folder with “Windows Explorer” and creating a Folder called “Libraries” too. Into this folder we copy the “FluentRibbon.dll” assembly.</p>
<p>After that we need to include this file to our Solution Folder. Therefore we use the right click on our “Libraries” solution folder in Visual Studio and we add the just copied assembly as an existing file.</p>
<p><a href="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-solution.png"><img class="alignleft size-full wp-image-39" title="SharePoint 2010 Solution" src="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-solution.png" alt="" width="282" height="116" /></a>In the next step we are creating a SharePoint project. For this example I create an Empty SharePoint 2010 Project named “JaRau.Ribbons”. It will implement just a few application pages and web parts to visualize the usage of the SharePoint 2010 Fluent Ribbon API.</p>
<p>We will now configure our project to use the API. Therefore we need to reference the assembly with the project.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-reference.png"><img class="aligncenter  wp-image-40" title="Adding the Fluent Ribbon Reference" src="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-reference.png" alt="" width="365" height="298" /></a></p>
<p>The most important part is to provide the assembly to be copied into the Global Assembly Cache (GAP). Therefore we need to open the Package of our project and add the assembly to the package. We are able to do this by switching into the “Advance” mode and adding an existing assembly. For sure we choose our FluentRibbon.dll saved to our Solution Folder. After that step are project is able to use and run the SharePoint 2010 Fluent Ribbon API.</p>
<p style="text-align: center;"><a href="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-gac.png"><img class="aligncenter  wp-image-41" title="Add Assembly to the GAC." src="http://jarau.de/wp-content/uploads/2012/03/fluentribbons-gac.png" alt="" width="360" height="398" /></a></p>
<p style="text-align: left;">Now we are finish with the initiate configuration. In the next post we will start developing our first ribbon.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://jarau.de/2012/03/22/part-1-sharepoint-fluent-ribbon-installation-and-preparation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

