Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

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