-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.targets
27 lines (25 loc) · 1.01 KB
/
Directory.Build.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!--
SPDX-FileCopyrightText: 2023 smdn <[email protected]>
SPDX-License-Identifier: MIT
-->
<Project InitialTargets="ReplaceSmdnNetMuninNodePackageReferencesToProjectReferences">
<!-- Replace PackageReference to ProjectReference of the local project -->
<Target
Name="ReplaceSmdnNetMuninNodePackageReferencesToProjectReferences"
Condition=" '$(UseLocalProjectInsteadOfPublishedPackage)' == 'true' "
>
<ItemGroup>
<_SmdnNetMuninNodeReference
Include="@(PackageReference)"
Condition="$([System.String]::new('%(Identity)').StartsWith('Smdn.Net.MuninNode'))"
ProjectPath="$(MSBuildThisFileDirectory)..\src\%(Identity)\%(Identity).csproj"
/>
</ItemGroup>
<ItemGroup>
<!-- Remove package references to Smdn.Net.MuninNode.* -->
<PackageReference Remove="@(_SmdnNetMuninNodeReference)" />
<!-- Include project reference to Smdn.Net.MuninNode.* -->
<ProjectReference Include="%(_SmdnNetMuninNodeReference.ProjectPath)" />
</ItemGroup>
</Target>
</Project>