Skip to content

Commit

Permalink
Merge pull request #177 from abbottdev/feature/fix-prop-includes
Browse files Browse the repository at this point in the history
Use None/Include to ensure items are included in generated nupkg files.
  • Loading branch information
mhutch committed Jan 25, 2024
2 parents 9b6fc72 + 16b72e1 commit b0ef142
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Mono.TextTemplating.Build/Mono.TextTemplating.Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
</PropertyGroup>

<ItemGroup>
<None Update="T4.BuildTools.props" PackagePath="build\$(PackageId).props" Pack="true" />
<None Update="T4.BuildTools.targets" PackagePath="build\$(PackageId).targets" Pack="true" />
<None Update="multitargeting.props" PackagePath="buildMultiTargeting\$(PackageId).props" Pack="true" />
<None Update="multitargeting.targets" PackagePath="buildMultiTargeting\$(PackageId).targets" Pack="true" />
<None Update="T4.BuildTools.targets.buildschema.json" PackagePath="build\$(PackageId).targets.buildschema.json" Pack="true" />
<None Update="T4PropertyPage.xaml" PackagePath="build\T4PropertyPage.xaml" Pack="true" />
<None Update="T4PropertySchema.xaml" PackagePath="build\T4PropertyPageSchema.xaml" Pack="true" />
<None Include="T4.BuildTools.props" PackagePath="build\$(PackageId).props" Pack="true" />
<None Include="T4.BuildTools.targets" PackagePath="build\$(PackageId).targets" Pack="true" />
<None Include="multitargeting.props" PackagePath="buildMultiTargeting\$(PackageId).props" Pack="true" />
<None Include="multitargeting.targets" PackagePath="buildMultiTargeting\$(PackageId).targets" Pack="true" />
<None Include="T4.BuildTools.targets.buildschema.json" PackagePath="build\$(PackageId).targets.buildschema.json" Pack="true" />
<None Include="T4PropertyPage.xaml" PackagePath="build\T4PropertyPage.xaml" Pack="true" />
<None Include="T4PropertySchema.xaml" PackagePath="build\T4PropertyPageSchema.xaml" Pack="true" />
</ItemGroup>

<Target Name="AddCopyLocalToPack" BeforeTargets="_GetBuildOutputFilesWithTfm" DependsOnTargets="ReferenceCopyLocalPathsOutputGroup">
Expand Down

0 comments on commit b0ef142

Please sign in to comment.