diff --git a/build-tools/create-packs/License.targets b/build-tools/create-packs/License.targets
index b711f0a54fb..603b5ed5520 100644
--- a/build-tools/create-packs/License.targets
+++ b/build-tools/create-packs/License.targets
@@ -18,6 +18,7 @@
/>
<_PackageFiles Include="$(IntermediateOutputPath)$(PackageLicenseFile)" PackagePath="\" />
+ <_PackageFiles Include="$(XAInstallPrefix)THIRD-PARTY-NOTICES.TXT" PackagePath="\" />
diff --git a/build-tools/installers/create-installers.targets b/build-tools/installers/create-installers.targets
index 4cd80baa804..612683bde26 100644
--- a/build-tools/installers/create-installers.targets
+++ b/build-tools/installers/create-installers.targets
@@ -340,7 +340,7 @@
-
+
diff --git a/build-tools/xaprepare/xaprepare/ConfigAndData/Configurables.cs b/build-tools/xaprepare/xaprepare/ConfigAndData/Configurables.cs
index 873d6251c5d..5911e6bce70 100644
--- a/build-tools/xaprepare/xaprepare/ConfigAndData/Configurables.cs
+++ b/build-tools/xaprepare/xaprepare/ConfigAndData/Configurables.cs
@@ -201,7 +201,7 @@ public static partial class Defaults
/// Used in rules.mk generator. Files to include in the XA bundle archives.
///
public static readonly List BundleZipsInclude = new List {
- "$(ZIP_OUTPUT_BASENAME)/ThirdPartyNotices.txt",
+ "$(ZIP_OUTPUT_BASENAME)/THIRD-PARTY-NOTICES.TXT",
"$(ZIP_OUTPUT_BASENAME)/bin/Debug",
"$(ZIP_OUTPUT_BASENAME)/bin/Release",
};
diff --git a/build-tools/xaprepare/xaprepare/Scenarios/Scenario_ThirdPartyNotices.cs b/build-tools/xaprepare/xaprepare/Scenarios/Scenario_ThirdPartyNotices.cs
index e8aa50e8c0c..3934dc69ce3 100644
--- a/build-tools/xaprepare/xaprepare/Scenarios/Scenario_ThirdPartyNotices.cs
+++ b/build-tools/xaprepare/xaprepare/Scenarios/Scenario_ThirdPartyNotices.cs
@@ -7,7 +7,7 @@ namespace Xamarin.Android.Prepare
class Scenario_ThirdPartyNotices : Scenario
{
public Scenario_ThirdPartyNotices ()
- : base ("ThirdPartyNotices", "Generate the `ThirdPartyNotices.txt` files.")
+ : base ("ThirdPartyNotices", "Generate the `THIRD-PARTY-NOTICES.TXT` files.")
{
NeedsGitSubmodules = true;
}
diff --git a/build-tools/xaprepare/xaprepare/Steps/Step_CopyExtraResultFilesForCI.cs b/build-tools/xaprepare/xaprepare/Steps/Step_CopyExtraResultFilesForCI.cs
index 2bacace73b0..aca10a98d6f 100644
--- a/build-tools/xaprepare/xaprepare/Steps/Step_CopyExtraResultFilesForCI.cs
+++ b/build-tools/xaprepare/xaprepare/Steps/Step_CopyExtraResultFilesForCI.cs
@@ -29,7 +29,7 @@ await Task.Run (() => {
string[] xaRootDirBuildFiles = {
"Configuration.OperatingSystem.props",
"Configuration.Override.props",
- "ThirdPartyNotices.txt",
+ "THIRD-PARTY-NOTICES.TXT",
"config.log",
"config.status",
"config.h",
diff --git a/build-tools/xaprepare/xaprepare/Steps/Step_ThirdPartyNotices.cs b/build-tools/xaprepare/xaprepare/Steps/Step_ThirdPartyNotices.cs
index c2d40345da1..1aa1c2cad04 100644
--- a/build-tools/xaprepare/xaprepare/Steps/Step_ThirdPartyNotices.cs
+++ b/build-tools/xaprepare/xaprepare/Steps/Step_ThirdPartyNotices.cs
@@ -60,12 +60,12 @@ public Step_ThirdPartyNotices ()
#pragma warning disable CS1998
protected override async Task Execute (Context context)
{
- GenerateThirdPartyNotices (Path.Combine (BuildPaths.XamarinAndroidSourceRoot, "ThirdPartyNotices.txt"),
+ GenerateThirdPartyNotices (Path.Combine (BuildPaths.XamarinAndroidSourceRoot, "THIRD-PARTY-NOTICES.TXT"),
ThirdPartyLicenseType.Foundation,
includeExternalDeps: false,
includeBuildDeps: true);
Log.StatusLine ();
- GenerateThirdPartyNotices (Path.Combine (context.XAInstallPrefix, "ThirdPartyNotices.txt"),
+ GenerateThirdPartyNotices (Path.Combine (context.XAInstallPrefix, "THIRD-PARTY-NOTICES.TXT"),
ThirdPartyLicenseType.MicrosoftOSS,
includeExternalDeps: true,
includeBuildDeps: false);