microsoft/healthcare-shared-components
Publicmirrored from https://github.com/microsoft/healthcare-shared-componentsAvailable
tools/Microsoft.Health.Extensions.BuildTimeCodeGenerator/ICodeGenerator.cs
14lines · modecode
| 1 | // ------------------------------------------------------------------------------------------------- |
| 2 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 3 | // Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. |
| 4 | // ------------------------------------------------------------------------------------------------- |
| 5 | |
| 6 | using Microsoft.CodeAnalysis.CSharp.Syntax; |
| 7 | |
| 8 | namespace Microsoft.Health.Extensions.BuildTimeCodeGenerator |
| 9 | { |
| 10 | public interface ICodeGenerator |
| 11 | { |
| 12 | (MemberDeclarationSyntax[], UsingDirectiveSyntax[]) Generate(string typeName); |
| 13 | } |
| 14 | } |
| 15 | |