Skip to content

Commit 73c19f4

Browse files
[VMR] Codeflow 9badd70-9badd70
[[ commit created by automation ]]
1 parent 9badd70 commit 73c19f4

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Directory.Build.props

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262

6363
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
6464
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
65+
66+
<!-- https://github.com/dotnet/source-build/issues/4115. -->
67+
<PublishWindowsPdb>false</PublishWindowsPdb>
6568
</PropertyGroup>
6669

6770
<PropertyGroup Condition="'$(IsTestProject)' == 'true'">

eng/restore-toolset.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function InitializeCustomSDKToolset {
1010

1111
# The following frameworks and tools are used only for testing.
1212
# Do not attempt to install them in source build.
13-
if ($productBuild -or $properties -like "*DotNetBuildRepo=true*") {
13+
if ($productBuild) {
1414
return
1515
}
1616

eng/restore-toolset.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function InitializeCustomSDKToolset {
77

88
# The following frameworks and tools are used only for testing.
99
# Do not attempt to install them in source build.
10-
if [[ $product_build == true || $properties == *"DotNetBuildRepo=true"* ]]; then
10+
if [[ $product_build == true ]]; then
1111
return
1212
fi
1313

src/RazorSdk/Tool/GenerateCommand.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ private int ExecuteCore(
191191
b.RegisterExtensions();
192192

193193
b.Features.Add(new StaticTagHelperFeature() { TagHelpers = tagHelpers, });
194-
b.Features.Add(new DefaultTypeNameFeature());
195194

196195
b.ConfigureCodeGenerationOptions(b =>
197196
{

0 commit comments

Comments
 (0)