Skip to content

Commit c309dd9

Browse files
committed
Fixed build.cmd file
1 parent 316d703 commit c309dd9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.cmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
Echo Building Microsoft.OpenApi
33

44
SET PROJ=%~dp0src\Microsoft.OpenApi\Microsoft.OpenApi.csproj
5-
dotnet build %PROJ% /t:restore /p:Configuration=Release
6-
dotnet build %PROJ% /t:build /p:Configuration=Release
7-
dotnet build %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0artifacts
5+
dotnet msbuild %PROJ% /t:restore /p:Configuration=Release
6+
dotnet msbuild %PROJ% /t:build /p:Configuration=Release
7+
dotnet msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0artifacts
88

99
Echo Building Microsoft.OpenApi.Readers
1010

1111
SET PROJ=%~dp0src\Microsoft.OpenApi.Readers\Microsoft.OpenApi.Readers.csproj
12-
dotnet build %PROJ% /t:restore /p:Configuration=Release
13-
dotnet build %PROJ% /t:build /p:Configuration=Release
14-
dotnet build %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0artifacts
12+
dotnet msbuild %PROJ% /t:restore /p:Configuration=Release
13+
dotnet msbuild %PROJ% /t:build /p:Configuration=Release
14+
dotnet msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0artifacts
1515

1616
goto :end
1717
:error

0 commit comments

Comments
 (0)