Skip to content

Commit 9647bf1

Browse files
authored
Make IndentingBuilder a src package (#28)
1 parent e14a677 commit 9647bf1

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

src/IndentingBuilder/IndentingBuilder.csproj

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,28 @@
99

1010
<PropertyGroup>
1111
<PackageId>StaticCS.IndentingBuilder</PackageId>
12-
<Version>0.1.0</Version>
12+
<Version>0.2.0</Version>
1313
<IsPackable>true</IsPackable>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1515
<RepositoryUrl>https://github.com/agocke/static-cs</RepositoryUrl>
16-
<Description>A string builder with automatic indentation support for multi-line text generation.</Description>
16+
<Description>A string builder with automatic indentation support for multi-line text generation. Distributed as source code for easy inclusion in source generators.</Description>
1717
<Authors>agocke</Authors>
18-
<PackageTags>string-builder;indentation;code-generation;text-generation</PackageTags>
18+
<PackageTags>string-builder;indentation;code-generation;text-generation;source-only</PackageTags>
19+
20+
<IncludeBuildOutput>false</IncludeBuildOutput>
21+
<DevelopmentDependency>true</DevelopmentDependency>
22+
<ContentTargetFolders>contentFiles</ContentTargetFolders>
1923
</PropertyGroup>
2024

25+
<ItemGroup>
26+
<None Include="IndentingBuilder.cs">
27+
<Pack>true</Pack>
28+
<PackagePath>contentFiles/cs/any</PackagePath>
29+
<BuildAction>Compile</BuildAction>
30+
<CopyToOutput>false</CopyToOutput>
31+
</None>
32+
</ItemGroup>
33+
2134
<ItemGroup>
2235
<PackageReference Include="PolySharp" Version="1.15.0">
2336
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)