Skip to content

Commit b24e6ac

Browse files
committed
Remove ancillary BuildTools target.
1 parent 88bb64f commit b24e6ac

1 file changed

Lines changed: 2 additions & 12 deletions

File tree

build.proj

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229

230230
<!--
231231
SigningKeyPath
232-
Applies to: Build*, Pack*
232+
Applies to: Build*, Pack* (driver targets only)
233233
Description: Path to the key to use to strong name sign binaries. If omitted, binaries
234234
will not be strong name signed.
235235
For Pack* targets, this only applies to a build - ie, if PackBuild is set to
@@ -335,7 +335,7 @@
335335
<Target Name="Build" DependsOnTargets="BuildLogging;BuildAbstractions;BuildSqlClient;BuildAzure;BuildAkvProvider;BuildSqlServer" />
336336

337337
<!-- Build all projects in the repo, for all supported OS and TargetFramework combinations.-->
338-
<Target Name="BuildAll" DependsOnTargets="Build;BuildTests;BuildSamples;BuildTools" />
338+
<Target Name="BuildAll" DependsOnTargets="Build;BuildTests;BuildSamples" />
339339

340340
<!-- Clean: Convenience target to remove build/test output -->
341341
<Target Name="Clean">
@@ -1061,8 +1061,6 @@
10611061
<AzureTestsProjectPath>$(RepoRoot)src/Microsoft.Data.SqlClient.Extensions/Azure/test/Azure.Test.csproj</AzureTestsProjectPath>
10621062

10631063
<SamplesProjectPath>$(RepoRoot)doc/samples/Microsoft.Data.SqlClient.Samples.csproj</SamplesProjectPath>
1064-
1065-
<GenApiProjectPath>$(RepoRoot)tools/GenAPI/Microsoft.DotNet.GenAPI/Microsoft.DotNet.GenAPI.csproj</GenApiProjectPath>
10661064
</PropertyGroup>
10671065

10681066
<!-- Build all test projects. -->
@@ -1125,12 +1123,4 @@
11251123
Command="&quot;$(DotnetPath)dotnet&quot; build &quot;$(SamplesProjectPath)&quot; $(_DotnetArguments)" />
11261124
</Target>
11271125

1128-
<!-- Build all tools projects. -->
1129-
<Target Name="BuildTools">
1130-
<Message Importance="High" Text=">>> Building GenAPI"/>
1131-
<Message Text=" Arguments: $(_DotnetArguments)"/>
1132-
<Exec ConsoleToMsBuild="true"
1133-
Command="&quot;$(DotnetPath)dotnet&quot; build &quot;$(GenApiProjectPath)&quot; $(_DotnetArguments)" />
1134-
</Target>
1135-
11361126
</Project>

0 commit comments

Comments
 (0)