Skip to content
This repository was archived by the owner on Mar 20, 2019. It is now read-only.

Commit adac234

Browse files
committed
Fixed missing project import check causing build break in the v3.1 branch.
1 parent 4ff1387 commit adac234

3 files changed

Lines changed: 1 addition & 1 deletion

File tree

lib/DotNetOpenAuth.BuildTasks.dll

512 Bytes
Binary file not shown.

lib/DotNetOpenAuth.BuildTasks.pdb

0 Bytes
Binary file not shown.

src/DotNetOpenAuth.BuildTasks/ChangeProjectReferenceToAssemblyReference.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public override bool Execute() {
3838

3939
foreach (var project in Projects) {
4040
Project doc = new Project();
41-
doc.Load(project.ItemSpec);
41+
doc.Load(project.ItemSpec, ProjectLoadSettings.IgnoreMissingImports);
4242

4343
var projectReferences = doc.EvaluatedItems.OfType<BuildItem>().Where(item => item.Name == "ProjectReference");
4444
var matchingReferences = from reference in projectReferences

0 commit comments

Comments
 (0)