You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
436 B

  1. using Microsoft.Owin;
  2. using Owin;
  3. using System.Collections.Generic;
  4. using System.Data;
  5. using System.IO;
  6. using System.Reflection;
  7. [assembly: OwinStartup(typeof(Learun.Application.Web.Startup1))]
  8. namespace Learun.Application.Web
  9. {
  10. public class Startup1
  11. {
  12. public static string EmbeddedReportsPrefix = "Learun.Application.Web";
  13. public void Configuration(IAppBuilder app)
  14. {
  15. }
  16. }
  17. }