<?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>enterprise Archives - XABLU</title>
	<atom:link href="https://www.xablu.com/tag/enterprise/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.xablu.com/tag/enterprise/</link>
	<description>We build Ventures, Products and Teams</description>
	<lastBuildDate>Wed, 19 Nov 2025 11:40:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://www.xablu.com/wp-content/uploads/2019/08/xablu-favicon-100x100.png</url>
	<title>enterprise Archives - XABLU</title>
	<link>https://www.xablu.com/tag/enterprise/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>.NET standard</title>
		<link>https://www.xablu.com/2016/10/20/net-standard/</link>
		
		<dc:creator><![CDATA[XABLU HQ]]></dc:creator>
		<pubDate>Thu, 20 Oct 2016 10:10:00 +0000</pubDate>
				<category><![CDATA[Insights]]></category>
		<category><![CDATA[dotnet]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mvvmcross]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[xamarin]]></category>
		<guid isPermaLink="false">https://staging.xablu.com/?p=18697</guid>

					<description><![CDATA[<p>The goal of .NET Standard is &#8220;one library to rule them all&#8221;, or more simply, one set of APIs that can be used across platforms without compatibility issues. At the [&#8230;]</p>
<p>The post <a href="https://www.xablu.com/2016/10/20/net-standard/">.NET standard</a> appeared first on <a href="https://www.xablu.com">XABLU</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="18697" class="elementor elementor-18697" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="post">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-2d0206cc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2d0206cc" data-element_type="section" data-e-type="section" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-26936a05" data-id="26936a05" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-b373d57 elementor-author-box--avatar-yes elementor-author-box--name-yes elementor-author-box--biography-yes elementor-author-box--link-no elementor-widget elementor-widget-author-box" data-id="b373d57" data-element_type="widget" data-e-type="widget" data-widget_type="author-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-author-box">
							<div  class="elementor-author-box__avatar">
					<img decoding="async" src="https://secure.gravatar.com/avatar/cfb7a7770a552045b0cf0ec6e2dfee73385e3d8ba8196fedc45fdba6a4099c7d?s=300&#038;d=mm&#038;r=g" alt="Picture of XABLU HQ" loading="lazy">
				</div>
			
			<div class="elementor-author-box__text">
									<div >
						<h4 class="elementor-author-box__name">
							XABLU HQ						</h4>
					</div>
				
									<div class="elementor-author-box__bio">
											</div>
				
							</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-44264cd2 elementor-widget elementor-widget-text-editor" data-id="44264cd2" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p><em>The goal of .NET Standard is &#8220;one library to rule them all&#8221;, or more simply, one set of APIs that can be used across platforms without compatibility issues.</em></p><p>At the moment, developers targeting one of the .NET variants need to understand the underlying platform to be able to develop for it. What makes it even more complicated is that there are multiple platform and API versions. Currently, the best solution is to create a PCL (Portable Class Library) and use &#8216;Bait &amp; Switch&#8217; to switch out a set of interfaces (so called facades) with the actual native implementation. This works well for abstracting platform specific features, but for more common API&#8217;s such as XML, Networking, IO, or even Primitives or Collections, you just want these to be available through a standardized framework.</p><p><em>&#8220;.NET Standard solves the code sharing problem for .NET developers across all platforms by bringing together the APIs that you expect and love across environments: desktop applications, mobile apps &amp; games, and cloud services,&#8221;</em> writes Microsoft&#8217;s Immo Landwerth, in a <a href="https://blogs.msdn.microsoft.com/dotnet/2016/09/26/introducing-net-standard/">blog</a> post.</p><p>This doesn&#8217;t mean that all compatibility issues are gone, but it does give a consistency in APIs. This also means that the smallest API surface, which is .NET Core will be updated to work with all the other platforms, and even behave the same. For developers, this means they only have to create and maintain one base class library.</p><p>For .NET Standard 2.0 the major decision was made to revert to compatibility with .NET Standard 1.4, drop the extra API&#8217;s added in 1.5 and 1.6, and make sure that all the API&#8217;s in 1.4 work on all platforms! As a little bonus it will be built on .NET 4.6.1.</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-3374fbf2 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3374fbf2" data-element_type="section" data-e-type="section" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-279c411e" data-id="279c411e" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-10216c76 elementor-widget elementor-widget-text-editor" data-id="10216c76" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: center;"><i>Curious how Xablu can help your organization ?<br /></i></p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-63eb4c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="63eb4c" data-element_type="section" data-e-type="section" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-76affbc6" data-id="76affbc6" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7e9271cc elementor-align-center elementor-widget elementor-widget-button" data-id="7e9271cc" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/contact-us/" target="_blank">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Contact us Today</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>The post <a href="https://www.xablu.com/2016/10/20/net-standard/">.NET standard</a> appeared first on <a href="https://www.xablu.com">XABLU</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>TechDays 2016 wrap up</title>
		<link>https://www.xablu.com/2016/10/12/techdays-2016-wrap-up/</link>
		
		<dc:creator><![CDATA[XABLU HQ]]></dc:creator>
		<pubDate>Wed, 12 Oct 2016 10:05:00 +0000</pubDate>
				<category><![CDATA[Event Reports]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mvvmcross]]></category>
		<category><![CDATA[partner]]></category>
		<category><![CDATA[techdays]]></category>
		<category><![CDATA[xamarin]]></category>
		<guid isPermaLink="false">https://staging.xablu.com/?p=18689</guid>

					<description><![CDATA[<p>XABLU attended TechDays 2016 with our &#8216;100% Pure Xamarin&#8217; story. It was really a blast to be in the zone where the action is happening. Over the last years Microsoft [&#8230;]</p>
<p>The post <a href="https://www.xablu.com/2016/10/12/techdays-2016-wrap-up/">TechDays 2016 wrap up</a> appeared first on <a href="https://www.xablu.com">XABLU</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="18689" class="elementor elementor-18689" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="post">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-1f0ec385 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1f0ec385" data-element_type="section" data-e-type="section" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4b129c2f" data-id="4b129c2f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-11a3dee elementor-author-box--avatar-yes elementor-author-box--name-yes elementor-author-box--biography-yes elementor-author-box--link-no elementor-widget elementor-widget-author-box" data-id="11a3dee" data-element_type="widget" data-e-type="widget" data-widget_type="author-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-author-box">
							<div  class="elementor-author-box__avatar">
					<img decoding="async" src="https://secure.gravatar.com/avatar/cfb7a7770a552045b0cf0ec6e2dfee73385e3d8ba8196fedc45fdba6a4099c7d?s=300&#038;d=mm&#038;r=g" alt="Picture of XABLU HQ" loading="lazy">
				</div>
			
			<div class="elementor-author-box__text">
									<div >
						<h4 class="elementor-author-box__name">
							XABLU HQ						</h4>
					</div>
				
									<div class="elementor-author-box__bio">
											</div>
				
							</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-5dca4381 elementor-widget elementor-widget-text-editor" data-id="5dca4381" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>XABLU attended <a href="http://www.techdays.nl/">TechDays 2016</a> with our &#8216;100% Pure Xamarin&#8217; story. It was really a blast to be in the zone where the action is happening. Over the last years Microsoft is making a big shift towards open source and being cross-platform; the vibration that this gives is amazing! It&#8217;s inspiring to see all these Microsoft partners sharing their knowledge on such a broad scale.</p><p>Of course XABLU didn’t go unnoticed at this event. During the first day of TechDays we made it to <a href="https://www.xablu.com/2016/10/xamarin-premier-partner/">Xamarin Premier Consulting Partner</a>! On the second day there was another highlight: XABLU offers <a href="https://www.xablu.com/mvvmcross/">MvvmCross</a> training now.</p><p>Our very own Martijn van Dijk (<a href="https://twitter.com/mhvdijk">@mhvdijk</a>) and Marc Bruins (<a href="https://twitter.com/MarcBruins">@MarcBruins</a>) both had a session which was well attended. Martijn talked about MvvmCross and its unique Presenters mechanism and Marc talked about using Xamarin in the enterprise.</p><p>If you sum up all that has happened during TechDays we had a wonderful two days. Thanks TechDays for the amazing experience and see you next year!</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-784de7e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="784de7e" data-element_type="section" data-e-type="section" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-45a8eeac" data-id="45a8eeac" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-a2c7db6 elementor-widget elementor-widget-text-editor" data-id="a2c7db6" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: center;"><i>Curious how Xablu can help your organization ?<br /></i></p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-bca9b3b elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="bca9b3b" data-element_type="section" data-e-type="section" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-68a9561c" data-id="68a9561c" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-7d36e847 elementor-align-center elementor-widget elementor-widget-button" data-id="7d36e847" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/contact-us/" target="_blank">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Contact us Today</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>The post <a href="https://www.xablu.com/2016/10/12/techdays-2016-wrap-up/">TechDays 2016 wrap up</a> appeared first on <a href="https://www.xablu.com">XABLU</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>XABLU becomes Xamarin Premier Consulting Partner</title>
		<link>https://www.xablu.com/2016/10/06/xablu-becomes-xamarin-premier-consulting-partner/</link>
		
		<dc:creator><![CDATA[XABLU HQ]]></dc:creator>
		<pubDate>Thu, 06 Oct 2016 10:00:00 +0000</pubDate>
				<category><![CDATA[Company News]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[partner]]></category>
		<category><![CDATA[xamarin]]></category>
		<guid isPermaLink="false">https://staging.xablu.com/?p=18680</guid>

					<description><![CDATA[<p>When we started XABLU more than 1 year ago it was clear from the beginning that we wanted to be a &#8216;100% Pure Xamarin&#8217; company with a focus on mobile [&#8230;]</p>
<p>The post <a href="https://www.xablu.com/2016/10/06/xablu-becomes-xamarin-premier-consulting-partner/">XABLU becomes Xamarin Premier Consulting Partner</a> appeared first on <a href="https://www.xablu.com">XABLU</a>.</p>
]]></description>
										<content:encoded><![CDATA[		<div data-elementor-type="wp-post" data-elementor-id="18680" class="elementor elementor-18680" data-elementor-settings="{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}" data-elementor-post-type="post">
						<section class="elementor-section elementor-top-section elementor-element elementor-element-655b3b0d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="655b3b0d" data-element_type="section" data-e-type="section" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-636ae94f" data-id="636ae94f" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-da3b470 elementor-author-box--avatar-yes elementor-author-box--name-yes elementor-author-box--biography-yes elementor-author-box--link-no elementor-widget elementor-widget-author-box" data-id="da3b470" data-element_type="widget" data-e-type="widget" data-widget_type="author-box.default">
				<div class="elementor-widget-container">
							<div class="elementor-author-box">
							<div  class="elementor-author-box__avatar">
					<img decoding="async" src="https://secure.gravatar.com/avatar/cfb7a7770a552045b0cf0ec6e2dfee73385e3d8ba8196fedc45fdba6a4099c7d?s=300&#038;d=mm&#038;r=g" alt="Picture of XABLU HQ" loading="lazy">
				</div>
			
			<div class="elementor-author-box__text">
									<div >
						<h4 class="elementor-author-box__name">
							XABLU HQ						</h4>
					</div>
				
									<div class="elementor-author-box__bio">
											</div>
				
							</div>
		</div>
						</div>
				</div>
				<div class="elementor-element elementor-element-efcd94 elementor-widget elementor-widget-text-editor" data-id="efcd94" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p>When we started XABLU more than 1 year ago it was clear from the beginning that we wanted to be a &#8216;100% Pure Xamarin&#8217; company with a focus on mobile app development with Xamarin technology.</p><p>This week we have become a &#8216;Xamarin Premier Consulting Partner&#8217;: a clear and strong message on both our strategy and capabilities!</p><p>It is also a &#8216;thumbs up&#8217; for the XABLU team, as they&#8217;re the ones that show and demonstrate our Xamarin skills on a daily basis.</p><p>And finally a huge thanks to the Xamarin team for making this happen!</p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-54662cfc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="54662cfc" data-element_type="section" data-e-type="section" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7cacf978" data-id="7cacf978" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-aa150e2 elementor-widget elementor-widget-text-editor" data-id="aa150e2" data-element_type="widget" data-e-type="widget" data-widget_type="text-editor.default">
				<div class="elementor-widget-container">
									<p style="text-align: center;"><i>Curious how Xablu can help your organization ?<br /></i></p>								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				<section class="elementor-section elementor-top-section elementor-element elementor-element-19834096 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="19834096" data-element_type="section" data-e-type="section" data-settings="{&quot;_ha_eqh_enable&quot;:false}">
						<div class="elementor-container elementor-column-gap-default">
					<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2264b03" data-id="2264b03" data-element_type="column" data-e-type="column">
			<div class="elementor-widget-wrap elementor-element-populated">
						<div class="elementor-element elementor-element-4f00a570 elementor-align-center elementor-widget elementor-widget-button" data-id="4f00a570" data-element_type="widget" data-e-type="widget" data-widget_type="button.default">
				<div class="elementor-widget-container">
									<div class="elementor-button-wrapper">
					<a class="elementor-button elementor-button-link elementor-size-sm" href="/contact-us/" target="_blank">
						<span class="elementor-button-content-wrapper">
									<span class="elementor-button-text">Contact us Today</span>
					</span>
					</a>
				</div>
								</div>
				</div>
					</div>
		</div>
					</div>
		</section>
				</div>
		<p>The post <a href="https://www.xablu.com/2016/10/06/xablu-becomes-xamarin-premier-consulting-partner/">XABLU becomes Xamarin Premier Consulting Partner</a> appeared first on <a href="https://www.xablu.com">XABLU</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
