1
1
// Licensed to the .NET Foundation under one or more agreements.
2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
4
+ //using System;
5
+ using System ;
4
6
using System . Collections . Generic ;
5
7
using System . IO ;
8
+ using System . Linq ;
6
9
using System . Runtime . Serialization . Json ;
7
10
using System . Text ;
8
11
using Microsoft . Build . Framework ;
@@ -33,11 +36,14 @@ public override bool Execute()
33
36
{
34
37
using var fileStream = File . Create ( ManifestPath ) ;
35
38
var output = new Dictionary < string , string > ( ) ;
39
+ var manifestDirectory = Path . GetDirectoryName ( ManifestPath ) ;
40
+
36
41
foreach ( var project in Projects )
37
42
{
38
43
var contentRoot = project . GetMetadata ( "ContentRoot" ) ;
39
44
var assemblyName = project . GetMetadata ( "Identity" ) ;
40
- output [ assemblyName ] = contentRoot ;
45
+ var relativeContentRoot = GetRelativePath ( manifestDirectory , contentRoot ) ;
46
+ output [ assemblyName ] = relativeContentRoot ;
41
47
}
42
48
43
49
var serializer = new DataContractJsonSerializer ( typeof ( Dictionary < string , string > ) , new DataContractJsonSerializerSettings
@@ -49,4 +55,44 @@ public override bool Execute()
49
55
50
56
return ! Log . HasLoggedErrors ;
51
57
}
58
+
59
+ private static string GetRelativePath ( string ? relativeTo , string path )
60
+ {
61
+ if ( string . IsNullOrEmpty ( relativeTo ) )
62
+ {
63
+ return path ;
64
+ }
65
+
66
+ // Ensure the paths are absolute
67
+ string absoluteRelativeTo = Path . GetFullPath ( relativeTo ) ;
68
+ string absolutePath = Path . GetFullPath ( path ) ;
69
+
70
+ // Split the paths into their components
71
+ string [ ] relativeToParts = absoluteRelativeTo . TrimEnd ( Path . DirectorySeparatorChar ) . Split ( Path . DirectorySeparatorChar ) ;
72
+ string [ ] pathParts = absolutePath . TrimEnd ( Path . DirectorySeparatorChar ) . Split ( Path . DirectorySeparatorChar ) ;
73
+
74
+ // Find the common base path length
75
+ int commonLength = 0 ;
76
+ while ( commonLength < relativeToParts . Length && commonLength < pathParts . Length &&
77
+ string . Equals ( relativeToParts [ commonLength ] , pathParts [ commonLength ] , StringComparison . OrdinalIgnoreCase ) )
78
+ {
79
+ commonLength ++ ;
80
+ }
81
+
82
+ // Calculate the number of directories to go up from the relativeTo path
83
+ int upDirectories = relativeToParts . Length - commonLength ;
84
+
85
+ // Build the relative path
86
+ string relativePath = string . Join ( Path . DirectorySeparatorChar . ToString ( ) , new string [ upDirectories ] . Select ( _ => ".." ) . ToArray ( ) ) ;
87
+ if ( commonLength < pathParts . Length )
88
+ {
89
+ if ( relativePath . Length > 0 )
90
+ {
91
+ relativePath += Path . DirectorySeparatorChar ;
92
+ }
93
+ relativePath += string . Join ( Path . DirectorySeparatorChar . ToString ( ) , pathParts . Skip ( commonLength ) ) ;
94
+ }
95
+
96
+ return relativePath ;
97
+ }
52
98
}
0 commit comments