using System.Collections.Generic; namespace AspNetCoreSdkTests.Templates { public class WebTemplate : ConsoleApplicationTemplate { public override string Name => "web"; public override TemplateType Type => TemplateType.Application; public override IEnumerable ExpectedObjFilesAfterRestore => throw new System.NotImplementedException(); public override IEnumerable ExpectedObjFilesAfterBuild => throw new System.NotImplementedException(); public override IEnumerable ExpectedBinFilesAfterBuild => throw new System.NotImplementedException(); } }