diff --git a/TestAssets/TestProjects/TestLibraryWithConfiguration/TestLibraryWithConfiguration.csproj b/TestAssets/TestProjects/TestLibraryWithConfiguration/TestLibraryWithConfiguration.csproj
index 99cc559cb..46fe4b78b 100755
--- a/TestAssets/TestProjects/TestLibraryWithConfiguration/TestLibraryWithConfiguration.csproj
+++ b/TestAssets/TestProjects/TestLibraryWithConfiguration/TestLibraryWithConfiguration.csproj
@@ -5,7 +5,6 @@
netstandard1.5
$(NoWarn);CS1591
true
- $(OutputPath)\$(TargetFramework)\$(AssemblyName).xml
diff --git a/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs b/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs
index d0160a223..364833709 100644
--- a/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs
+++ b/src/Microsoft.DotNet.ProjectJsonMigration/Rules/MigrateBuildOptionsRule.cs
@@ -96,13 +96,7 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
private AddPropertyTransform XmlDocTransform =>
new AddPropertyTransform("GenerateDocumentationFile",
compilerOptions => compilerOptions.GenerateXmlDocumentation.ToString().ToLower(),
- compilerOptions => compilerOptions.GenerateXmlDocumentation != null && compilerOptions.GenerateXmlDocumentation.Value);
-
- // TODO: https://github.com/dotnet/sdk/issues/67
- private AddPropertyTransform XmlDocTransformFilePath =>
- new AddPropertyTransform("DocumentationFile",
- @"$(OutputPath)\$(TargetFramework)\$(AssemblyName).xml",
- compilerOptions => compilerOptions.GenerateXmlDocumentation != null && compilerOptions.GenerateXmlDocumentation.Value);
+ compilerOptions => compilerOptions.GenerateXmlDocumentation != null && compilerOptions.GenerateXmlDocumentation.Value);
private AddPropertyTransform AssemblyNameTransform =>
new AddPropertyTransform("AssemblyName",
@@ -177,7 +171,6 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Rules
PublicSignTransform,
DebugTypeTransform,
XmlDocTransform,
- XmlDocTransformFilePath,
PreserveCompilationContextTransform,
AssemblyNameTransform
};