Skip to content

Commit

Permalink
internalizes all dependency types
Browse files Browse the repository at this point in the history
  • Loading branch information
pardeike committed Feb 7, 2024
1 parent 21f5091 commit fc0537d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Harmony.sln
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
azure-pipelines.yml = azure-pipelines.yml
CNAME = CNAME
CODE_OF_CONDUCT.md = CODE_OF_CONDUCT.md
Directory.Build.props = Directory.Build.props
ILRepack.targets = ILRepack.targets
global.json = global.json
LICENSE = LICENSE
README.md = README.md
Expand Down
11 changes: 10 additions & 1 deletion ILRepack.targets
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
<ItemGroup>
<InputAssemblies Include="$(OutputPath)\*.dll" />
</ItemGroup>
<ILRepack InputAssemblies="@(InputAssemblies)" OutputFile="$(OutputPath)\$(AssemblyName).dll" CopyAttributes="true" XmlDocumentation="true" Parallel="true" TargetKind="Dll" Wildcards="true" />
<ILRepack
InputAssemblies="@(InputAssemblies)"
OutputFile="$(OutputPath)\$(AssemblyName).dll"
CopyAttributes="true"
XmlDocumentation="true"
Internalize="true"
Parallel="true"
TargetKind="Dll"
Wildcards="true"
/>
</Target>
</Project>

0 comments on commit fc0537d

Please sign in to comment.