mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- For all plugin library projects we do not output referenced project assembly dll such as Flow.Launcher.Plugin - Output all PackageReference dlls for plugins
15 lines
No EOL
602 B
XML
15 lines
No EOL
602 B
XML
<Project>
|
|
<Target Name="ExcludePluginProjectReferenceOutput"
|
|
AfterTargets="AssignProjectConfiguration"
|
|
BeforeTargets="ResolveProjectReferences"
|
|
Condition="'$(OutputType)' == 'Library' and '$(CopyLocalLockFileAssemblies)' == 'true' and $(AssemblyName.EndsWith('Tests')) == 'false' ">
|
|
<ItemGroup>
|
|
<ProjectReferenceWithConfiguration Update="@(ProjectReferenceWithConfiguration)" >
|
|
<Private>false</Private>
|
|
</ProjectReferenceWithConfiguration>
|
|
<ProjectReference Update="@(ProjectReference)" >
|
|
<Private>false</Private>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
</Target>
|
|
</Project> |