Skip to content

Commit

Permalink
Added formatting for readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ahc2483 committed Oct 10, 2012
1 parent 86598f3 commit bb44f69
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ServiceTasks
================

Offers the ability to schedule commands to be sent, using the NServiceBus Task framework


Example Configuration
================

ServiceTasks
================

Offers the ability to schedule commands to be sent, using the NServiceBus Task framework


Example Configuration
================
<pre><code>
<configSections>
<section name="TaskSchedule" type="ServiceTasks.Schedule.Storage.TaskScheduleConfiguration, ServiceTasks"/>
</configSections>
Expand All @@ -17,11 +17,11 @@ Example Configuration
messageType="Messages.Commands.MyCommand, Messages.Commands, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"/>
</Tasks>
</TaskSchedule>
</code></pre>


If using with NServiceBus: Sample NServiceBus Endpoint Config (ServiceTasks needs this in order to know where your schedule is stored. You can use your builder of choice)
================

If using with NServiceBus: Sample NServiceBus Endpoint Config (ServiceTasks needs this in order to know where your schedule is stored. You can use your builder of choice)
================
<pre><code>
[EndpointName(myendpoint")]
public class EndpointConfig : IConfigureThisEndpoint, AsA_Publisher, IWantCustomInitialization
{
Expand All @@ -34,4 +34,5 @@ public class EndpointConfig : IConfigureThisEndpoint, AsA_Publisher, IWantCustom
NServiceBus.Configure.With()
.AutofacBuilder(builder.Build());
}
}
}
</code></pre>

0 comments on commit bb44f69

Please sign in to comment.