Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/IndentingBuilder/IndentingBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ namespace StaticCs
/// Manages indentation levels with <see cref="Indent"/> and <see cref="Dedent"/> methods,
/// and automatically applies the current indentation to appended content and interpolated strings.
/// </summary>
public sealed class IndentingBuilder
internal sealed class IndentingBuilder
: IComparable<IndentingBuilder>,
IEquatable<IndentingBuilder>
{
Expand Down
7 changes: 7 additions & 0 deletions src/IndentingBuilder/IndentingBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@
<ContentTargetFolders>contentFiles</ContentTargetFolders>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="polysharp" Version="1.14.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<None Include="IndentingBuilder.cs">
<Pack>true</Pack>
Expand Down