|
1158 | 1158 | <!-- Build Abstractions tests, which don't have conditional TFMs. --> |
1159 | 1159 | <Message Text=">>> Building Abstractions.Tests with arguments: $(_DotnetArguments)"/> |
1160 | 1160 | <Exec ConsoleToMsBuild="true" |
1161 | | - Command=""$(DotnetPath)dotnet" build $(AbstractionsTestsProjectPath) $(_DotnetArguments)" /> |
| 1161 | + Command=""$(DotnetPath)dotnet" build "$(AbstractionsTestsProjectPath)" $(_DotnetArguments)" /> |
1162 | 1162 |
|
1163 | 1163 | <!-- Build SqlClient UnitTests (project references only, no ReferenceType). --> |
1164 | 1164 | <Message Text=">>> Building SqlClient UnitTests for %(_OsValues.Identity)"/> |
1165 | 1165 | <Exec ConsoleToMsBuild="true" |
1166 | | - Command=""$(DotnetPath)dotnet" build $(UnitTestsProjectPath) -p:Configuration=$(Configuration) -p:OS=%(_OsValues.Identity)" /> |
| 1166 | + Command=""$(DotnetPath)dotnet" build "$(UnitTestsProjectPath)" -p:Configuration=$(Configuration) -p:OS=%(_OsValues.Identity)" /> |
1167 | 1167 |
|
1168 | 1168 | <!-- Build SqlClient FunctionalTests. --> |
1169 | 1169 | <Message Text=">>> Building SqlClient FunctionalTests for %(_OsValues.Identity) with arguments: $(_DotnetArguments)"/> |
1170 | 1170 | <Exec ConsoleToMsBuild="true" |
1171 | | - Command=""$(DotnetPath)dotnet" build $(FunctionalTestsProjectPath) $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
| 1171 | + Command=""$(DotnetPath)dotnet" build "$(FunctionalTestsProjectPath)" $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
1172 | 1172 |
|
1173 | 1173 | <!-- Build SqlClient ManualTests. --> |
1174 | 1174 | <Message Text=">>> Building SqlClient ManualTests for %(_OsValues.Identity) with arguments: $(_DotnetArguments)"/> |
1175 | 1175 | <Exec ConsoleToMsBuild="true" |
1176 | | - Command=""$(DotnetPath)dotnet" build $(ManualTestsProjectPath) $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
| 1176 | + Command=""$(DotnetPath)dotnet" build "$(ManualTestsProjectPath)" $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
1177 | 1177 |
|
1178 | 1178 | <!-- Build SqlClient PerformanceTests. --> |
1179 | 1179 | <Message Text=">>> Building SqlClient PerformanceTests for %(_OsValues.Identity) with arguments: $(_DotnetArguments)"/> |
1180 | 1180 | <Exec ConsoleToMsBuild="true" |
1181 | | - Command=""$(DotnetPath)dotnet" build $(PerformanceTestsProjectPath) $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
| 1181 | + Command=""$(DotnetPath)dotnet" build "$(PerformanceTestsProjectPath)" $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
1182 | 1182 |
|
1183 | 1183 | <!-- Build SqlClient StressTests. --> |
1184 | 1184 | <Message Text=">>> Building SqlClient StressTests for %(_OsValues.Identity) with arguments: $(_DotnetArguments)"/> |
1185 | 1185 | <Exec ConsoleToMsBuild="true" |
1186 | | - Command=""$(DotnetPath)dotnet" build $(StressTestsProjectPath) $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
| 1186 | + Command=""$(DotnetPath)dotnet" build "$(StressTestsProjectPath)" $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
1187 | 1187 |
|
1188 | 1188 | <!-- Build Azure tests. --> |
1189 | 1189 | <Message Text=">>> Building Azure.Tests for %(_OsValues.Identity) with arguments: $(_DotnetArguments)"/> |
1190 | 1190 | <Exec ConsoleToMsBuild="true" |
1191 | | - Command=""$(DotnetPath)dotnet" build $(AzureTestsProjectPath) $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
| 1191 | + Command=""$(DotnetPath)dotnet" build "$(AzureTestsProjectPath)" $(_DotnetArguments) -p:OS=%(_OsValues.Identity)" /> |
1192 | 1192 |
|
1193 | 1193 | <!-- AKV Provider has no tests to build. --> |
1194 | 1194 |
|
|
1198 | 1198 | <Target Name="BuildSamples"> |
1199 | 1199 | <Message Text=">>> Building Samples with arguments: $(_DotnetArguments)"/> |
1200 | 1200 | <Exec ConsoleToMsBuild="true" |
1201 | | - Command=""$(DotnetPath)dotnet" build $(SamplesProjectPath) $(_DotnetArguments)" /> |
| 1201 | + Command=""$(DotnetPath)dotnet" build "$(SamplesProjectPath)" $(_DotnetArguments)" /> |
1202 | 1202 | </Target> |
1203 | 1203 |
|
1204 | 1204 | <!-- Build all tools projects. --> |
1205 | 1205 | <Target Name="BuildTools"> |
1206 | 1206 | <Message Text=">>> Building GenAPI with arguments: $(_DotnetArguments)"/> |
1207 | 1207 | <Exec ConsoleToMsBuild="true" |
1208 | | - Command=""$(DotnetPath)dotnet" build $(GenApiProjectPath) $(_DotnetArguments)" /> |
| 1208 | + Command=""$(DotnetPath)dotnet" build "$(GenApiProjectPath)" $(_DotnetArguments)" /> |
1209 | 1209 | </Target> |
1210 | 1210 |
|
1211 | 1211 | </Project> |
0 commit comments