From 20b3ce4b9dfd423306d1422606823a9b890e3f71 Mon Sep 17 00:00:00 2001 From: Jonathan Pobst Date: Tue, 22 Mar 2022 14:02:22 -0500 Subject: [PATCH 1/3] [Java.Interop-MonoAndroid.csproj] Set Version after Directory.Build.props We are setting `0.1.0.0` in `Java.Interop-MonoAndroid.csproj`, which is correct. However immediately after that we `` which defaults projects to `$(JIUtilityVersion)`. This commit reorders the `.csproj` to set the `` in the project *after* the import. --- src/Java.Interop/Java.Interop-MonoAndroid.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Java.Interop/Java.Interop-MonoAndroid.csproj b/src/Java.Interop/Java.Interop-MonoAndroid.csproj index a920f8ae4..403fc3d07 100644 --- a/src/Java.Interop/Java.Interop-MonoAndroid.csproj +++ b/src/Java.Interop/Java.Interop-MonoAndroid.csproj @@ -17,10 +17,10 @@ 8.0 true true - 0.1.0.0 + 0.1.0.0 ..\..\bin\Build$(Configuration)\XAConfig.props @@ -114,4 +114,4 @@ - \ No newline at end of file + From 70fa989b6d9de3bcc7275f738386f6b4838a0376 Mon Sep 17 00:00:00 2001 From: Jonathan Pryor Date: Tue, 22 Mar 2022 15:22:33 -0400 Subject: [PATCH 2/3] remove ws change From 902efd45ca143fac8d1934c5a0f4b46dbf5eabd0 Mon Sep 17 00:00:00 2001 From: Jonathan Pryor Date: Tue, 22 Mar 2022 15:23:01 -0400 Subject: [PATCH 3/3] *can* you remove trailing newline in github?