Private/Cs/WebProj/New-AppSettingsCsToString.ps1
Function New-AppSettingsCsToString($csprojName) { return @" using System.Collections.Generic; namespace $csprojName { /// <summary> /// POCO to hold values in appSettings.json /// </summary> public class AppSettings { public string Title { get; set; } } } "@ } |