Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(build): remove json files from nuget package content folders #18

Merged
merged 12 commits into from
May 8, 2024
Merged
8 changes: 7 additions & 1 deletion Directory.build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
<AssemblyToSign Include="$(TargetPath)" />
<AssemblyToSign Include="$(XmlSerializersTargetPath)" Condition="Exists('$(XmlSerializersTargetPath)')" />
</ItemGroup>

</Target>

<ItemGroup>
<Content Remove="Admin/Client/*.json" />
<Content Remove="Admin/FrontEnd/*.json" />
<Content Remove="Admin/*.json" />
<Content Remove="../Kentico.Xperience.TagManager/*.json"/>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix indentation.

</ItemGroup>
</Project>
Loading