File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 62
62
63
63
<ManagePackageVersionsCentrally >true</ManagePackageVersionsCentrally >
64
64
<CentralPackageTransitivePinningEnabled >true</CentralPackageTransitivePinningEnabled >
65
+
66
+ <!-- https://github.com/dotnet/source-build/issues/4115. -->
67
+ <PublishWindowsPdb >false</PublishWindowsPdb >
65
68
</PropertyGroup >
66
69
67
70
<PropertyGroup Condition =" '$(IsTestProject)' == 'true'" >
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ function InitializeCustomSDKToolset {
10
10
11
11
# The following frameworks and tools are used only for testing.
12
12
# Do not attempt to install them in source build.
13
- if ($productBuild -or $properties -like " *DotNetBuildRepo=true* " ) {
13
+ if ($productBuild ) {
14
14
return
15
15
}
16
16
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ function InitializeCustomSDKToolset {
7
7
8
8
# The following frameworks and tools are used only for testing.
9
9
# Do not attempt to install them in source build.
10
- if [[ $product_build == true || $properties == * " DotNetBuildRepo=true " * ]]; then
10
+ if [[ $product_build == true ]]; then
11
11
return
12
12
fi
13
13
Original file line number Diff line number Diff line change @@ -191,7 +191,6 @@ private int ExecuteCore(
191
191
b . RegisterExtensions ( ) ;
192
192
193
193
b . Features . Add ( new StaticTagHelperFeature ( ) { TagHelpers = tagHelpers , } ) ;
194
- b . Features . Add ( new DefaultTypeNameFeature ( ) ) ;
195
194
196
195
b . ConfigureCodeGenerationOptions ( b =>
197
196
{
You can’t perform that action at this time.
0 commit comments