Skip to content

Commit

Permalink
FI Xamarin change to ProjectFileExtensions
Browse files Browse the repository at this point in the history
Forward integration of xamarin/xamarin-macios@d4fb41b
  • Loading branch information
premun authored Nov 12, 2020
1 parent 26b147b commit 9769171
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ public static void FixProjectReferences(this XmlDocument csproj, string? subdir,

public static void FixTestLibrariesReferences(this XmlDocument csproj, string platform)
{
var nodes = csproj.SelectNodes("//*[local-name() = 'ObjcBindingNativeLibrary' or local-name() = 'ObjcBindingNativeFramework']");
var nodes = csproj.SelectNodes("//*[local-name() = 'ObjcBindingNativeLibrary' or local-name() = 'ObjcBindingNativeFramework' or local-name() = 'NativeReference']");
var test_libraries = new string[] {
"libtest.a",
"libtest2.a",
Expand Down Expand Up @@ -1206,6 +1206,7 @@ public static void ResolveAllPaths(this XmlDocument csproj, string project_path,
new string [] { "FilesToCopyChannels", "Include" },
new string [] { "CustomMetalSmeltingInput", "Include" },
new string [] { "Metal", "Include" },
new string [] { "NativeReference", "Include" },
};
var nodes_with_variables = new string[]
{
Expand Down

0 comments on commit 9769171

Please sign in to comment.