diff --git a/Directory.Build.targets b/Directory.Build.targets
new file mode 100644
index 000000000..6e47fc572
--- /dev/null
+++ b/Directory.Build.targets
@@ -0,0 +1,18 @@
+
+
+
+
+ <_ProjectReferenceWithExplicitPackageVersion Include="@(ProjectReference->'%(FullPath)')" Condition="'%(ProjectReference.PackageVersion)' != ''" />
+ <_ProjectReferenceWithExactPackageVersion Include="@(ProjectReference->'%(FullPath)')" Condition="'%(ProjectReference.ExactVersion)' == 'true'" />
+ <_ProjectReferenceWithReassignedVersion Include="@(_ProjectReferencesWithVersions)" Condition="'%(Identity)' != '' And '@(_ProjectReferenceWithExplicitPackageVersion)' == '@(_ProjectReferencesWithVersions)'">
+ @(_ProjectReferenceWithExplicitPackageVersion->'%(PackageVersion)')
+
+ <_ProjectReferenceWithReassignedVersion Include="@(_ProjectReferencesWithVersions)" Condition="'%(Identity)' != '' And '@(_ProjectReferenceWithExactPackageVersion)' == '@(_ProjectReferencesWithVersions)'">
+ [@(_ProjectReferencesWithVersions->'%(ProjectVersion)')]
+
+ <_ProjectReferencesWithVersions Remove="@(_ProjectReferenceWithReassignedVersion)" />
+ <_ProjectReferencesWithVersions Include="@(_ProjectReferenceWithReassignedVersion)" />
+
+
+
diff --git a/source/AndroidXProject.cshtml b/source/AndroidXProject.cshtml
index 1305f8892..6eb6f7a8a 100644
--- a/source/AndroidXProject.cshtml
+++ b/source/AndroidXProject.cshtml
@@ -172,7 +172,8 @@
@foreach (var dep in @Model.NuGetDependencies) {
if (dep.IsProjectReference) {
-
+ var exact_version = dep.MavenArtifact.MavenArtifactVersion.StartsWith('[').ToString();
+
}
}