Skip to content

Commit

Permalink
[edit] migrate to VS2017
Browse files Browse the repository at this point in the history
[fixed] tmenier#176
  • Loading branch information
kroniak committed Jun 5, 2017
1 parent d2cde56 commit 3e0f1be
Show file tree
Hide file tree
Showing 24 changed files with 110 additions and 641 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ packages
.vscode
publish
TestResult.xml
*.bak
Binary file removed Build/NuGet.exe
Binary file not shown.
27 changes: 25 additions & 2 deletions Build/build.cmd
Original file line number Diff line number Diff line change
@@ -1,12 +1,35 @@
@call dotnet --info

@call build.flurl.cmd
@call dotnet restore -v m ../

@if ERRORLEVEL 1 (
echo Error! Restoring dependicies failed.
exit /b 1
) else (
echo Restoring dependicies was successful.
)

@set project=..\src\Flurl\

@call dotnet build -c Release %project%

@if ERRORLEVEL 1 (
echo Error! Build Flurl failed.
exit /b 1
)

@call build.flurl.http.cmd
@set project=..\src\Flurl.Http.CodeGen\

@call dotnet run -c Release -p %project% ..\src\Flurl.Http.Shared\HttpExtensions.cs
@if ERRORLEVEL 1 (
echo Error! Generation cs file failed.
exit /b 1
)

@set project=..\src\Flurl.Http\

@call dotnet build -c Release %project%

@if ERRORLEVEL 1 (
echo Error! Build Flurl.Http failed.
exit /b 1
Expand Down
11 changes: 0 additions & 11 deletions Build/build.flurl.cmd

This file was deleted.

27 changes: 0 additions & 27 deletions Build/build.flurl.http.cmd

This file was deleted.

69 changes: 0 additions & 69 deletions Build/nuspec/Flurl.nuspec

This file was deleted.

13 changes: 0 additions & 13 deletions Build/pack.flurl.cmd

This file was deleted.

13 changes: 0 additions & 13 deletions Build/pack.flurl.http.cmd

This file was deleted.

10 changes: 1 addition & 9 deletions Build/test.cmd
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
@set project=..\test\Flurl.Test.NETCore\

call dotnet restore --verbosity Error %project%
@if ERRORLEVEL 1 (
echo Error! Restoring dependicies failed.
exit /b 1
) else (
echo Restoring dependicies was successful.
)

call dotnet test -c Release %project%
@call dotnet test -c Release %project%
Loading

0 comments on commit 3e0f1be

Please sign in to comment.