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.
|
- using Microsoft.Owin;
- using Owin;
- using System.Collections.Generic;
- using System.Data;
- using System.IO;
- using System.Reflection;
-
- [assembly: OwinStartup(typeof(Learun.Application.Web.Startup1))]
-
- namespace Learun.Application.Web
- {
- public class Startup1
- {
- public static string EmbeddedReportsPrefix = "Learun.Application.Web";
-
-
- public void Configuration(IAppBuilder app)
- {
-
- }
-
- }
- }
|