CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
SerializationPartialGenerator.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="SerializationPartialGenerator.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Source generator capable of completing the generation of a single partial type</summary>
7//-----------------------------------------------------------------------
8using Microsoft.CodeAnalysis;
9using Microsoft.CodeAnalysis.CSharp.Syntax;
10using Microsoft.CodeAnalysis.Text;
11using System;
12using System.Collections.Generic;
13using System.Text;
14
16{
17
22 internal class SerializationPartialGenerator
23 {
24
30 public void GeneratePartialType(GeneratorExecutionContext context, ExtractedTypeDefinition typeDefinition)
31 {
32 GenerationResults generationResults;
33 SerializationPartialBuilder builder = new SerializationPartialBuilder();
34
35 // Build the text for the generated type using the builder
36 generationResults = builder.BuildPartialTypeDefinition(typeDefinition);
37
38 // Add the generated source to the output
39 context.AddSource($"{generationResults.FullyQualifiedName}.g",
40 SourceText.From(generationResults.GeneratedSource, Encoding.UTF8));
41 }
42
43 }
44
45}