dotnetcatch.wordpress.com Open in urlscan Pro
192.0.78.12  Public Scan

Submitted URL: http://dotnetcatch.wordpress.com/
Effective URL: https://dotnetcatch.wordpress.com/
Submission: On June 02 via api from US — Scanned from US

Form analysis 3 forms found in the DOM

POST https://subscribe.wordpress.com

<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
  <div>
    <input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address">
  </div>
  <input type="hidden" name="action" value="subscribe">
  <input type="hidden" name="blog_id" value="14738250">
  <input type="hidden" name="source" value="https://dotnetcatch.wordpress.com/">
  <input type="hidden" name="sub-type" value="actionbar-follow">
  <input type="hidden" id="_wpnonce" name="_wpnonce" value="be0c5ec8eb">
  <div class="actnbr-button-wrap">
    <button type="submit" value="Sign me up"> Sign me up </button>
  </div>
</form>

<form id="jp-carousel-comment-form">
  <label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label>
  <textarea name="comment" class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea" id="jp-carousel-comment-form-comment-field" placeholder="Write a Comment..."></textarea>
  <div id="jp-carousel-comment-form-submit-and-info-wrapper">
    <div id="jp-carousel-comment-form-commenting-as">
      <fieldset>
        <label for="jp-carousel-comment-form-email-field">Email (Required)</label>
        <input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field">
      </fieldset>
      <fieldset>
        <label for="jp-carousel-comment-form-author-field">Name (Required)</label>
        <input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field">
      </fieldset>
      <fieldset>
        <label for="jp-carousel-comment-form-url-field">Website</label>
        <input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field">
      </fieldset>
    </div>
    <input type="submit" name="submit" class="jp-carousel-comment-form-button" id="jp-carousel-comment-form-button-submit" value="Post Comment">
  </div>
</form>

POST

<form method="post">
  <input type="submit" value="Close and accept" class="accept"> Privacy &amp; Cookies: This site uses cookies. By continuing to use this website, you agree to their use. <br> To find out more, including how to control cookies, see here: <a href="https://automattic.com/cookies/" rel="nofollow">
			Cookie Policy		</a>
</form>

Text Content

Skip to content
Menu
 * About


DOTNET CATCH


.NET AND SOFTWARE DEVELOPMENT LEARNINGS, TIPS AND RANTS

Written by rschiefer (@chief7)February 10, 2017


DEPLOY SSIS PACKAGES WITH MSDEPLOY

SQL Server Integration Services (SSIS) is a common and useful tool for many
large enterprises but they rarely have an automated deployment strategy.  The
common misconception is SSIS deployments are hard or not possible to automate. 
Like everything else we have attempted to automate the deployment of, MSDeploy
can handle SSIS packages too.  In this […]

Sponsored Content

Skip
Ads by

Cheap Business Class Flights Departing From New York
Book Now
Business Class Flight Sale | Search Ads | Sponsored
New York: Unsold Phones Are Almost Being Given Away Phone Deals | Search Ads |
Sponsored
Men Over 40: No More Blue Pills (Watch)
Watch More
Boostaro | Sponsored




Written by rschiefer (@chief7)June 15, 2016


TRANSITIONING FROM KANBAN TO SCRUMBAN

We implemented Kanban and continuous flow almost two years ago. Continuous
Delivery was a big part of that transition and we made big strides in our CD
process which allowed us to deploy multiple times per week for most of our
products. With the adoption of SAFe (Scaled Agile Framework) our teams were
asked to […]

Written by rschiefer (@chief7)May 29, 2016


SCALING AGILE FOR THE ENTERPRISE

I had the amazing opportunity to spend this week seeing how agile can scale to
an enterprise level of 400+ team members. In this post I would like to review
some of my thoughts and opinions. SAFe – Scaled Agile Framework We have been
using Kanban for the last 18 months in our group at […]

Written by rschiefer (@chief7)May 19, 2016May 19, 2016


EXTENDING THE WEBDEPLOY MANIFEST

Several developers have asked how they can  extend WebDeploy to do more.  As
discussed  in my Anatomy of WebDeploy Package post, WebDeploy creates a package
based on a manifest.  The manifest is simply a list of MSDeploy providers.  So
how do we add more to the manifest? Sayed Hashimi posted an article entitled
“Setting Folder […]

Written by rschiefer (@chief7)May 11, 2016


DSC IN CHEF: CONVERTING RUBY HASHES TO POWERSHELL TYPES

Background Chef on Windows in the past has not had a great story but over the
last 6 months they have come a long way to improve their support for the
platform. In February of 2016 Microsoft also released the Windows Management
Framework 5.0 with significant Desired State Configuration (DSC) improvements.
Chef and DSC are […]

Written by rschiefer (@chief7)May 5, 2016


CONTINUOUS DELIVERY… INCREMENTALLY

There is a lot of buzz amonst the development community at large about
Continuous Delivery.  Everyone seems to think its a good idea but I’ve seen few
execute implementation well.  In this post, we will briefly review what CD is
and then I’ll give my opinions on the best way to implement it (HINT: its […]

Written by rschiefer (@chief7)April 27, 2016


SETPARAMETERS VIA MSBUILD COMMANDLINE

Over the last few months I’ve seen several questions regarding setting WebDeploy
parameterization values when deploying via MSBuild using the MSDeployPublish and
related targets.  These targets are used when publishing via Visual Studio or
can be triggered by setting the MSBuild properties DeployOnBuild equal to “true”
and DeployOnTarget to “MSDeployPublish”. The typical scenario is the […]

Written by rschiefer (@chief7)April 20, 2016April 22, 2016


MSDEPLOYALLTHETHINGS VSTS/TFS EXTENSION IS PUBLIC!

As of this morning I have made my first VSTS task public in the VisualStudio
VSTS Marketplace.  I blogged about my experience developing the task last
month.  Check that post out for more details: VSTS Release: Custom Deploy Task
to Deploy Virtual Applications to Azure This is just the beginning! I plan to
add more […]

Written by rschiefer (@chief7)April 16, 2016April 16, 2016


MSBUILD ONCE, MSDEPLOY MANY TIMES

Microsoft and the Visual Studio team have made it very easy to deploy an ASP.NET
web application.  So easy that few take the time to look beyond its capabilities
until absolutely necessary.  MSBuild initiates WebDeploy through right click
Publish functionality in Visual Studio, deployment via TFS or when you manually
execute the “Package” target to […]

Written by rschiefer (@chief7)April 7, 2016April 7, 2016


BUILD 2016 RECAP & HIGHLIGHTS FOR ASP.NET DEVELOPERS

I had the incredible opportunity to attend BUILD 2016 this year.  Actually EBSCO
sent four of us and we learned a lot!  There were so many good keynotes and
sessions.  The great part is even if you couldn’t attend in person, every
keynote/session was live streamed on Channel9 and now all the recordings are
available. […]


POSTS NAVIGATION

Older posts
Create a free website or blog at WordPress.com.

dotnet Catch
Blog at WordPress.com.
 * Follow Following
    * dotnet Catch
      Sign me up
    * Already have a WordPress.com account? Log in now.

 *  * dotnet Catch
    * Customize
    * Follow Following
    * Sign up
    * Log in
    * Report this content
    * View site in Reader
    * Manage subscriptions
    * Collapse this bar

 

Loading Comments...

 

Write a Comment...
Email (Required) Name (Required) Website

Privacy & Cookies: This site uses cookies. By continuing to use this website,
you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy