您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

24 行
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. }