File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -6,16 +6,16 @@ SET VERSION=%~1
6
6
Echo Building Microsoft.OpenApi
7
7
8
8
SET PROJ = %~dp0 src\Microsoft.OpenApi\Microsoft.OpenApi.csproj
9
- msbuild %PROJ% /t:restore /p:Configuration=Release
10
- msbuild %PROJ% /t:build /p:Configuration=Release
11
- msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0 artifacts;Version=%VERSION%
9
+ dotnet build %PROJ% /t:restore /p:Configuration=Release
10
+ dotnet build %PROJ% /t:build /p:Configuration=Release
11
+ dotnet build %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0 artifacts;Version=%VERSION%
12
12
13
13
Echo Building Microsoft.OpenApi.Readers
14
14
15
15
SET PROJ = %~dp0 src\Microsoft.OpenApi.Readers\Microsoft.OpenApi.Readers.csproj
16
- msbuild %PROJ% /t:restore /p:Configuration=Release
17
- msbuild %PROJ% /t:build /p:Configuration=Release
18
- msbuild %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0 artifacts;Version=%VERSION%
16
+ dotnet build %PROJ% /t:restore /p:Configuration=Release
17
+ dotnet build %PROJ% /t:build /p:Configuration=Release
18
+ dotnet build %PROJ% /t:pack /p:Configuration=Release;PackageOutputPath=%~dp0 artifacts;Version=%VERSION%
19
19
20
20
goto :end
21
21
:error
You can’t perform that action at this time.
0 commit comments