Author: brett
Date: Wed Jan 18 01:27:14 2012
New Revision: 1232711
URL: http://svn.apache.org/viewvc?rev=1232711&view=rev
Log:
should always use the version when querying the GAC, as we will in the
subsequent call anyway - and don't want a conflict due to the wrong version
Modified:
incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/Converter/Algorithms/AbstractPomConverter.cs
Modified:
incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/Converter/Algorithms/AbstractPomConverter.cs
URL:
http://svn.apache.org/viewvc/incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/Converter/Algorithms/AbstractPomConverter.cs?rev=1232711&r1=1232710&r2=1232711&view=diff
==============================================================================
---
incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/Converter/Algorithms/AbstractPomConverter.cs
(original)
+++
incubator/npanday/trunk/dotnet/assemblies/NPanday.ProjectImporter/Engine/src/main/csharp/Converter/Algorithms/AbstractPomConverter.cs
Wed Jan 18 01:27:14 2012
@@ -752,7 +752,7 @@ namespace NPanday.ProjectImporter.Conver
return dependency;
}
- List<string> refs =
GacUtility.GetInstance().GetAssemblyInfo(reference.Name, null,
projectDigest.Platform);
+ List<string> refs =
GacUtility.GetInstance().GetAssemblyInfo(reference.Name, reference.Version,
projectDigest.Platform);
// resolve from GAC
if (refs.Count > 0)