Enabled XML docs.
This commit is contained in:
parent
2a2f46def7
commit
34df045693
|
@ -20,6 +20,14 @@
|
|||
<RootNamespace>MapTo</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
||||
<DocumentationFile>bin\Debug\MapTo.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
||||
<DocumentationFile>bin\Release\MapTo.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
||||
<_Parameter1>$(AssemblyName).Tests</_Parameter1>
|
||||
|
|
|
@ -7,6 +7,9 @@ using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|||
|
||||
namespace MapTo
|
||||
{
|
||||
/// <summary>
|
||||
/// MapTo source generator.
|
||||
/// </summary>
|
||||
[Generator]
|
||||
public class MapToGenerator : ISourceGenerator
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@ using System.IO;
|
|||
|
||||
namespace MapTo.Sources
|
||||
{
|
||||
public sealed class SourceBuilder : IDisposable
|
||||
internal sealed class SourceBuilder : IDisposable
|
||||
{
|
||||
private readonly StringWriter _writer;
|
||||
private readonly IndentedTextWriter _indentedWriter;
|
||||
|
|
Loading…
Reference in New Issue