Skip to content

Commit

Permalink
Fixed OwinStartup conflicts
Browse files Browse the repository at this point in the history
The OwinStartup attribute discovered in assembly 'MyDnn.SignalRStartup'
referencing startup type 'MyDnn.SignalRStartup.Startup' conflicts with
the attribute in assembly...
  • Loading branch information
mydnn committed Feb 9, 2016
1 parent eb670d0 commit 15cde98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MyDnnSignalRStartup/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System;


[assembly: OwinStartup(typeof(Startup))]
[assembly: OwinStartup("MyDnnOwinStartupForSignalR", typeof(Startup))]
namespace MyDnn.SignalRStartup
{
public class Startup
Expand Down

0 comments on commit 15cde98

Please sign in to comment.