Skip to content

Commit

Permalink
dotnet: public main shall be
Browse files Browse the repository at this point in the history
  • Loading branch information
majek committed Jun 2, 2011
1 parent 654d2a1 commit 85516bb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dotnet/EmitLog.cs
@@ -1,7 +1,7 @@
using RabbitMQ.Client;

class Program {
static void Main(string[] args) {
public static void Main(string[] args) {
ConnectionFactory factory = new ConnectionFactory();
factory.HostName = "localhost";
using (IConnection connection = factory.CreateConnection())
Expand Down
2 changes: 1 addition & 1 deletion dotnet/NewTask.cs
@@ -1,7 +1,7 @@
using RabbitMQ.Client;

class Program {
static void Main(string[] args) {
public static void Main(string[] args) {
ConnectionFactory factory = new ConnectionFactory();
factory.HostName = "localhost";
using (IConnection connection = factory.CreateConnection())
Expand Down
2 changes: 1 addition & 1 deletion dotnet/Receive.cs
Expand Up @@ -2,7 +2,7 @@
using RabbitMQ.Client.Events;

class Program {
static void Main() {
public static void Main() {
ConnectionFactory factory = new ConnectionFactory();
factory.HostName = "localhost";
using (IConnection connection = factory.CreateConnection())
Expand Down
2 changes: 1 addition & 1 deletion dotnet/ReceiveLogs.cs
Expand Up @@ -2,7 +2,7 @@
using RabbitMQ.Client.Events;

class Program {
static void Main() {
public static void Main() {
ConnectionFactory factory = new ConnectionFactory();
factory.HostName = "localhost";
using (IConnection connection = factory.CreateConnection())
Expand Down
2 changes: 1 addition & 1 deletion dotnet/Send.cs
@@ -1,7 +1,7 @@
using RabbitMQ.Client;

class Program {
static void Main() {
public static void Main() {
ConnectionFactory factory = new ConnectionFactory();
factory.HostName = "localhost";
using (IConnection connection = factory.CreateConnection())
Expand Down
2 changes: 1 addition & 1 deletion dotnet/Worker.cs
Expand Up @@ -2,7 +2,7 @@
using RabbitMQ.Client.Events;

class Program {
static void Main() {
public static void Main() {
ConnectionFactory factory = new ConnectionFactory();
factory.HostName = "localhost";
using (IConnection connection = factory.CreateConnection())
Expand Down

0 comments on commit 85516bb

Please sign in to comment.