Skip to content

Commit c84ce0d

Browse files
authored
Refactor msbuild props and targets (#10664)
* Address versioning and public release * Adjust tag link in release notes * resources -> res * Clean up props and versioning * Remove buildNumber from CI files * Remove initialize pipeline stage * Run test in parallel * Skip readme if not present * Fix missing Version.targets import * Bring back tools PublicKey.snk * Comment out tests for now * Re-add delaysign * TreatWarningAsError=false for ExtensionMetadataGenerator * Re-enable tests * Move 'UpdateBuildNumber' * Fix spelling * Remove old python.props code owners entry * Remove Placeholder configurations, replace with props file * Re-add AllowUnsafeBlocks * Build DotnetIsolatedPlaceholder projects as p2p ref * Private=false for test resource projects * RunAnalyzers=false for DotnetIsolated test apps * Revert Private=false change for TestFunctions * Revert other test app ref changes * Use property for placeholder simulation * Fix Targets -> Target * Fix indentation * Add Build.Counter variable
1 parent f2a39e0 commit c84ce0d

File tree

55 files changed

+370
-549
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+370
-549
lines changed

CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* @azure/azure-functions-core
99

1010
# Adding codeowner for Python specific files such that GitHub automatically adds python folks as a reviewer.
11-
build/python.props @vrdmr @gavin-aguiar @YunchuWang @pdthummar @hallvictoria
1211
eng/build/Workers.Python.props @vrdmr @gavin-aguiar @YunchuWang @pdthummar @hallvictoria
1312

1413
# Deps.json validation file

Directory.Build.props

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,10 @@
1212
<PropertyGroup>
1313
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
1414
<EngRoot>$(RepoRoot)eng/</EngRoot>
15-
<TargetsRoot>$(EngRoot)build/</TargetsRoot>
15+
<EngBuildRoot>$(EngRoot)build/</EngBuildRoot>
16+
<EngResourceRoot>$(EngRoot)res/</EngResourceRoot>
1617
</PropertyGroup>
1718

18-
<PropertyGroup>
19-
<ContinuousIntegrationBuild>false</ContinuousIntegrationBuild>
20-
<ContinuousIntegrationBuild Condition="'$(TF_BUILD)' == 'true'">true</ContinuousIntegrationBuild>
21-
<CI>$(ContinuousIntegrationBuild)</CI>
22-
</PropertyGroup>
23-
24-
<PropertyGroup>
25-
<!-- Nuget audit as warnings only, even in TreatWarningsAsErrors. -->
26-
<!-- Except for in CI, critical will fail the build. -->
27-
<WarningsNotAsErrors>$(WarningsNotAsErrors)NU1901;NU1902;NU1903;</WarningsNotAsErrors>
28-
<WarningsNotAsErrors Condition="'$(CI)' == 'false'">$(WarningsNotAsErrors)NU1904;</WarningsNotAsErrors>
29-
<WarningsAsErrors Condition="'$(CI)' == 'true'">$(WarningsAsErrors)NU1904;</WarningsAsErrors>
30-
<NuGetAuditLevel>moderate</NuGetAuditLevel> <!-- warn on moderate severity only. -->
31-
<NuGetAuditMode>all</NuGetAuditMode> <!-- audit transitive dependencies. -->
32-
</PropertyGroup>
19+
<Import Project="$(EngBuildRoot)Engineering.props" />
3320

3421
</Project>

Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22

3-
<Import Project="$(TargetsRoot)Engineering.targets" />
3+
<Import Project="$(EngBuildRoot)Engineering.targets" />
44

55
</Project>

WebJobs.Script.sln

Lines changed: 0 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebJobs.Script.Tests", "tes
2828
EndProject
2929
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "WebJobs.Script.Tests.Shared", "test\WebJobs.Script.Tests.Shared\WebJobs.Script.Tests.Shared.shproj", "{35C9CCB7-D8B6-4161-BB0D-BCFA7C6DCFFB}"
3030
EndProject
31-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{6D78685E-D299-4803-9923-12143F0CA41F}"
32-
ProjectSection(SolutionItems) = preProject
33-
build\common.props = build\common.props
34-
build\package.props = build\package.props
35-
EndProjectSection
36-
EndProject
3731
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebJobs.Script.Tests.Integration", "test\WebJobs.Script.Tests.Integration\WebJobs.Script.Tests.Integration.csproj", "{EDDDAED1-0E37-4ED7-A595-63F686DEE90A}"
3832
EndProject
3933
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebJobs.Script.Grpc", "src\WebJobs.Script.Grpc\WebJobs.Script.Grpc.csproj", "{38920568-003E-448F-963B-41B739D1E01C}"
@@ -75,133 +69,71 @@ EndProject
7569
Global
7670
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7771
Debug|Any CPU = Debug|Any CPU
78-
DebugPlaceholder|Any CPU = DebugPlaceholder|Any CPU
7972
Release|Any CPU = Release|Any CPU
80-
ReleasePlaceholder|Any CPU = ReleasePlaceholder|Any CPU
8173
EndGlobalSection
8274
GlobalSection(ProjectConfigurationPlatforms) = postSolution
8375
{BCFBE330-871A-44BE-9016-83845231230F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
8476
{BCFBE330-871A-44BE-9016-83845231230F}.Debug|Any CPU.Build.0 = Debug|Any CPU
85-
{BCFBE330-871A-44BE-9016-83845231230F}.DebugPlaceholder|Any CPU.ActiveCfg = DebugPlaceholder|Any CPU
86-
{BCFBE330-871A-44BE-9016-83845231230F}.DebugPlaceholder|Any CPU.Build.0 = DebugPlaceholder|Any CPU
8777
{BCFBE330-871A-44BE-9016-83845231230F}.Release|Any CPU.ActiveCfg = Release|Any CPU
8878
{BCFBE330-871A-44BE-9016-83845231230F}.Release|Any CPU.Build.0 = Release|Any CPU
89-
{BCFBE330-871A-44BE-9016-83845231230F}.ReleasePlaceholder|Any CPU.ActiveCfg = ReleasePlaceholder|Any CPU
90-
{BCFBE330-871A-44BE-9016-83845231230F}.ReleasePlaceholder|Any CPU.Build.0 = ReleasePlaceholder|Any CPU
9179
{D5162088-C119-4A06-896D-E65983CAEDFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
9280
{D5162088-C119-4A06-896D-E65983CAEDFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
93-
{D5162088-C119-4A06-896D-E65983CAEDFD}.DebugPlaceholder|Any CPU.ActiveCfg = DebugPlaceholder|Any CPU
94-
{D5162088-C119-4A06-896D-E65983CAEDFD}.DebugPlaceholder|Any CPU.Build.0 = DebugPlaceholder|Any CPU
9581
{D5162088-C119-4A06-896D-E65983CAEDFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
9682
{D5162088-C119-4A06-896D-E65983CAEDFD}.Release|Any CPU.Build.0 = Release|Any CPU
97-
{D5162088-C119-4A06-896D-E65983CAEDFD}.ReleasePlaceholder|Any CPU.ActiveCfg = ReleasePlaceholder|Any CPU
98-
{D5162088-C119-4A06-896D-E65983CAEDFD}.ReleasePlaceholder|Any CPU.Build.0 = ReleasePlaceholder|Any CPU
9983
{3BA93614-3A4A-49B0-BFBC-7831E2C02BB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
10084
{3BA93614-3A4A-49B0-BFBC-7831E2C02BB7}.Debug|Any CPU.Build.0 = Debug|Any CPU
101-
{3BA93614-3A4A-49B0-BFBC-7831E2C02BB7}.DebugPlaceholder|Any CPU.ActiveCfg = DebugPlaceholder|Any CPU
102-
{3BA93614-3A4A-49B0-BFBC-7831E2C02BB7}.DebugPlaceholder|Any CPU.Build.0 = DebugPlaceholder|Any CPU
10385
{3BA93614-3A4A-49B0-BFBC-7831E2C02BB7}.Release|Any CPU.ActiveCfg = Release|Any CPU
10486
{3BA93614-3A4A-49B0-BFBC-7831E2C02BB7}.Release|Any CPU.Build.0 = Release|Any CPU
105-
{3BA93614-3A4A-49B0-BFBC-7831E2C02BB7}.ReleasePlaceholder|Any CPU.ActiveCfg = ReleasePlaceholder|Any CPU
106-
{3BA93614-3A4A-49B0-BFBC-7831E2C02BB7}.ReleasePlaceholder|Any CPU.Build.0 = ReleasePlaceholder|Any CPU
10787
{EDDDAED1-0E37-4ED7-A595-63F686DEE90A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
10888
{EDDDAED1-0E37-4ED7-A595-63F686DEE90A}.Debug|Any CPU.Build.0 = Debug|Any CPU
109-
{EDDDAED1-0E37-4ED7-A595-63F686DEE90A}.DebugPlaceholder|Any CPU.ActiveCfg = DebugPlaceholder|Any CPU
110-
{EDDDAED1-0E37-4ED7-A595-63F686DEE90A}.DebugPlaceholder|Any CPU.Build.0 = DebugPlaceholder|Any CPU
11189
{EDDDAED1-0E37-4ED7-A595-63F686DEE90A}.Release|Any CPU.ActiveCfg = Release|Any CPU
11290
{EDDDAED1-0E37-4ED7-A595-63F686DEE90A}.Release|Any CPU.Build.0 = Release|Any CPU
113-
{EDDDAED1-0E37-4ED7-A595-63F686DEE90A}.ReleasePlaceholder|Any CPU.ActiveCfg = ReleasePlaceholder|Any CPU
114-
{EDDDAED1-0E37-4ED7-A595-63F686DEE90A}.ReleasePlaceholder|Any CPU.Build.0 = ReleasePlaceholder|Any CPU
11591
{38920568-003E-448F-963B-41B739D1E01C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
11692
{38920568-003E-448F-963B-41B739D1E01C}.Debug|Any CPU.Build.0 = Debug|Any CPU
117-
{38920568-003E-448F-963B-41B739D1E01C}.DebugPlaceholder|Any CPU.ActiveCfg = DebugPlaceholder|Any CPU
118-
{38920568-003E-448F-963B-41B739D1E01C}.DebugPlaceholder|Any CPU.Build.0 = DebugPlaceholder|Any CPU
11993
{38920568-003E-448F-963B-41B739D1E01C}.Release|Any CPU.ActiveCfg = Release|Any CPU
12094
{38920568-003E-448F-963B-41B739D1E01C}.Release|Any CPU.Build.0 = Release|Any CPU
121-
{38920568-003E-448F-963B-41B739D1E01C}.ReleasePlaceholder|Any CPU.ActiveCfg = ReleasePlaceholder|Any CPU
122-
{38920568-003E-448F-963B-41B739D1E01C}.ReleasePlaceholder|Any CPU.Build.0 = ReleasePlaceholder|Any CPU
12395
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
12496
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.Debug|Any CPU.Build.0 = Debug|Any CPU
125-
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.DebugPlaceholder|Any CPU.ActiveCfg = DebugPlaceholder|Any CPU
126-
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.DebugPlaceholder|Any CPU.Build.0 = DebugPlaceholder|Any CPU
12797
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.Release|Any CPU.ActiveCfg = Release|Any CPU
12898
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.Release|Any CPU.Build.0 = Release|Any CPU
129-
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.ReleasePlaceholder|Any CPU.ActiveCfg = ReleasePlaceholder|Any CPU
130-
{5C308A72-5CF3-45E8-B64F-2C98F567054A}.ReleasePlaceholder|Any CPU.Build.0 = ReleasePlaceholder|Any CPU
13199
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
132100
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.Debug|Any CPU.Build.0 = Debug|Any CPU
133-
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.DebugPlaceholder|Any CPU.ActiveCfg = DebugPlaceholder|Any CPU
134-
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.DebugPlaceholder|Any CPU.Build.0 = DebugPlaceholder|Any CPU
135101
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.Release|Any CPU.ActiveCfg = Release|Any CPU
136102
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.Release|Any CPU.Build.0 = Release|Any CPU
137-
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.ReleasePlaceholder|Any CPU.ActiveCfg = ReleasePlaceholder|Any CPU
138-
{9A522D9D-2D86-4572-B7D1-ECBFBFAF312C}.ReleasePlaceholder|Any CPU.Build.0 = ReleasePlaceholder|Any CPU
139103
{F381CDD6-50BD-48BC-B292-230C52589A30}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
140-
{F381CDD6-50BD-48BC-B292-230C52589A30}.DebugPlaceholder|Any CPU.ActiveCfg = DebugPlaceholder|Any CPU
141104
{F381CDD6-50BD-48BC-B292-230C52589A30}.Release|Any CPU.ActiveCfg = Release|Any CPU
142-
{F381CDD6-50BD-48BC-B292-230C52589A30}.ReleasePlaceholder|Any CPU.ActiveCfg = ReleasePlaceholder|Any CPU
143105
{766DE3D5-4FB1-4602-9BB5-3779EECC232D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
144106
{766DE3D5-4FB1-4602-9BB5-3779EECC232D}.Debug|Any CPU.Build.0 = Debug|Any CPU
145-
{766DE3D5-4FB1-4602-9BB5-3779EECC232D}.DebugPlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
146107
{766DE3D5-4FB1-4602-9BB5-3779EECC232D}.Release|Any CPU.ActiveCfg = Release|Any CPU
147108
{766DE3D5-4FB1-4602-9BB5-3779EECC232D}.Release|Any CPU.Build.0 = Release|Any CPU
148-
{766DE3D5-4FB1-4602-9BB5-3779EECC232D}.ReleasePlaceholder|Any CPU.ActiveCfg = Release|Any CPU
149109
{504B98C7-F27F-4C02-9881-33048D4283CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
150110
{504B98C7-F27F-4C02-9881-33048D4283CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
151-
{504B98C7-F27F-4C02-9881-33048D4283CF}.DebugPlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
152-
{504B98C7-F27F-4C02-9881-33048D4283CF}.DebugPlaceholder|Any CPU.Build.0 = Debug|Any CPU
153111
{504B98C7-F27F-4C02-9881-33048D4283CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
154112
{504B98C7-F27F-4C02-9881-33048D4283CF}.Release|Any CPU.Build.0 = Release|Any CPU
155-
{504B98C7-F27F-4C02-9881-33048D4283CF}.ReleasePlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
156-
{504B98C7-F27F-4C02-9881-33048D4283CF}.ReleasePlaceholder|Any CPU.Build.0 = Debug|Any CPU
157113
{A094FBDA-B6A7-48DA-BF7C-39FA661C1A07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
158114
{A094FBDA-B6A7-48DA-BF7C-39FA661C1A07}.Debug|Any CPU.Build.0 = Debug|Any CPU
159-
{A094FBDA-B6A7-48DA-BF7C-39FA661C1A07}.DebugPlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
160-
{A094FBDA-B6A7-48DA-BF7C-39FA661C1A07}.DebugPlaceholder|Any CPU.Build.0 = Debug|Any CPU
161115
{A094FBDA-B6A7-48DA-BF7C-39FA661C1A07}.Release|Any CPU.ActiveCfg = Release|Any CPU
162116
{A094FBDA-B6A7-48DA-BF7C-39FA661C1A07}.Release|Any CPU.Build.0 = Release|Any CPU
163-
{A094FBDA-B6A7-48DA-BF7C-39FA661C1A07}.ReleasePlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
164-
{A094FBDA-B6A7-48DA-BF7C-39FA661C1A07}.ReleasePlaceholder|Any CPU.Build.0 = Debug|Any CPU
165117
{9D7556C5-C828-4C19-8EC9-E10030777E48}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
166118
{9D7556C5-C828-4C19-8EC9-E10030777E48}.Debug|Any CPU.Build.0 = Debug|Any CPU
167-
{9D7556C5-C828-4C19-8EC9-E10030777E48}.DebugPlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
168-
{9D7556C5-C828-4C19-8EC9-E10030777E48}.DebugPlaceholder|Any CPU.Build.0 = Debug|Any CPU
169119
{9D7556C5-C828-4C19-8EC9-E10030777E48}.Release|Any CPU.ActiveCfg = Release|Any CPU
170120
{9D7556C5-C828-4C19-8EC9-E10030777E48}.Release|Any CPU.Build.0 = Release|Any CPU
171-
{9D7556C5-C828-4C19-8EC9-E10030777E48}.ReleasePlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
172-
{9D7556C5-C828-4C19-8EC9-E10030777E48}.ReleasePlaceholder|Any CPU.Build.0 = Debug|Any CPU
173121
{29167303-5857-4BD5-9DDA-9EEA8C26CACC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
174122
{29167303-5857-4BD5-9DDA-9EEA8C26CACC}.Debug|Any CPU.Build.0 = Debug|Any CPU
175-
{29167303-5857-4BD5-9DDA-9EEA8C26CACC}.DebugPlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
176-
{29167303-5857-4BD5-9DDA-9EEA8C26CACC}.DebugPlaceholder|Any CPU.Build.0 = Debug|Any CPU
177123
{29167303-5857-4BD5-9DDA-9EEA8C26CACC}.Release|Any CPU.ActiveCfg = Release|Any CPU
178124
{29167303-5857-4BD5-9DDA-9EEA8C26CACC}.Release|Any CPU.Build.0 = Release|Any CPU
179-
{29167303-5857-4BD5-9DDA-9EEA8C26CACC}.ReleasePlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
180-
{29167303-5857-4BD5-9DDA-9EEA8C26CACC}.ReleasePlaceholder|Any CPU.Build.0 = Debug|Any CPU
181125
{A7A6A7C2-DD95-4425-916E-9AC629CD4DB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
182126
{A7A6A7C2-DD95-4425-916E-9AC629CD4DB8}.Debug|Any CPU.Build.0 = Debug|Any CPU
183-
{A7A6A7C2-DD95-4425-916E-9AC629CD4DB8}.DebugPlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
184-
{A7A6A7C2-DD95-4425-916E-9AC629CD4DB8}.DebugPlaceholder|Any CPU.Build.0 = Debug|Any CPU
185127
{A7A6A7C2-DD95-4425-916E-9AC629CD4DB8}.Release|Any CPU.ActiveCfg = Release|Any CPU
186128
{A7A6A7C2-DD95-4425-916E-9AC629CD4DB8}.Release|Any CPU.Build.0 = Release|Any CPU
187-
{A7A6A7C2-DD95-4425-916E-9AC629CD4DB8}.ReleasePlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
188-
{A7A6A7C2-DD95-4425-916E-9AC629CD4DB8}.ReleasePlaceholder|Any CPU.Build.0 = Debug|Any CPU
189129
{C14B6921-A12B-4203-8E3A-34BA4E5ACC98}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
190130
{C14B6921-A12B-4203-8E3A-34BA4E5ACC98}.Debug|Any CPU.Build.0 = Debug|Any CPU
191-
{C14B6921-A12B-4203-8E3A-34BA4E5ACC98}.DebugPlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
192-
{C14B6921-A12B-4203-8E3A-34BA4E5ACC98}.DebugPlaceholder|Any CPU.Build.0 = Debug|Any CPU
193131
{C14B6921-A12B-4203-8E3A-34BA4E5ACC98}.Release|Any CPU.ActiveCfg = Release|Any CPU
194132
{C14B6921-A12B-4203-8E3A-34BA4E5ACC98}.Release|Any CPU.Build.0 = Release|Any CPU
195-
{C14B6921-A12B-4203-8E3A-34BA4E5ACC98}.ReleasePlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
196-
{C14B6921-A12B-4203-8E3A-34BA4E5ACC98}.ReleasePlaceholder|Any CPU.Build.0 = Debug|Any CPU
197133
{51E41947-888E-43BE-A1A9-6607AAED7B57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
198134
{51E41947-888E-43BE-A1A9-6607AAED7B57}.Debug|Any CPU.Build.0 = Debug|Any CPU
199-
{51E41947-888E-43BE-A1A9-6607AAED7B57}.DebugPlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
200-
{51E41947-888E-43BE-A1A9-6607AAED7B57}.DebugPlaceholder|Any CPU.Build.0 = Debug|Any CPU
201135
{51E41947-888E-43BE-A1A9-6607AAED7B57}.Release|Any CPU.ActiveCfg = Release|Any CPU
202136
{51E41947-888E-43BE-A1A9-6607AAED7B57}.Release|Any CPU.Build.0 = Release|Any CPU
203-
{51E41947-888E-43BE-A1A9-6607AAED7B57}.ReleasePlaceholder|Any CPU.ActiveCfg = Debug|Any CPU
204-
{51E41947-888E-43BE-A1A9-6607AAED7B57}.ReleasePlaceholder|Any CPU.Build.0 = Debug|Any CPU
205137
EndGlobalSection
206138
GlobalSection(SolutionProperties) = preSolution
207139
HideSolutionNode = FALSE

build/GrpcTestFix.targets

Lines changed: 0 additions & 9 deletions
This file was deleted.

build/common.props

Lines changed: 0 additions & 46 deletions
This file was deleted.

build/initialize-pipeline.ps1

Lines changed: 0 additions & 65 deletions
This file was deleted.

build/package.props

Lines changed: 0 additions & 14 deletions
This file was deleted.

build/python.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<!-- See /eng/build/Workers.Python.props -->
33
<Target Name="_DoNotImport" BeforeTargets="Build">
4-
<Error Text="This file should not be imported. Import '$(TargetsRoot)Workers.props'." />
4+
<Error Text="This file should not be imported. Import '$(WorkersProps)'." />
55
</Target>
66
</Project>

0 commit comments

Comments
 (0)