Advertisement
Guest User

Custom Build tool .NET Core + Nuget

a guest
Apr 25th, 2019
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.67 KB | None | 0 0
  1.     anis-macbook:CustomTool ani$ git clean -fxd
  2.     Removing CustomTool/.CustomTool/
  3.     Removing CustomTool/bin/
  4.     Removing CustomTool/obj/
  5.     Removing CustomToolTest/.DS_Store
  6.     Removing CustomToolTest/obj/
  7.     anis-macbook:CustomTool ani$ dotnet pack CustomTool/CustomTool.csproj --output .CustomTool/ --configuration Release
  8.     Microsoft (R) Build Engine version 15.9.20+g88f5fadfbe for .NET Core
  9.     Copyright (C) Microsoft Corporation. All rights reserved.
  10.  
  11.     Restoring packages for /Users/ani/Projects/CustomTool/CustomTool/CustomTool.csproj...
  12.     Generating MSBuild file /Users/ani/Projects/CustomTool/CustomTool/obj/CustomTool.csproj.nuget.g.props.
  13.     Generating MSBuild file /Users/ani/Projects/CustomTool/CustomTool/obj/CustomTool.csproj.nuget.g.targets.
  14.     Restore completed in 163.39 ms for /Users/ani/Projects/CustomTool/CustomTool/CustomTool.csproj.
  15.     CustomTool -> /Users/ani/Projects/CustomTool/CustomTool/bin/Release/netcoreapp2.2/CustomTool.dll
  16.     CustomTool -> /Users/ani/Projects/CustomTool/CustomTool/bin/Release/publish/netcoreapp2.2/
  17.     Successfully created package '/Users/ani/Projects/CustomTool/CustomTool/.CustomTool/CustomTool.1.0.0.nupkg'.
  18.     anis-macbook:CustomTool ani$ dotnet build CustomTool.sln
  19.     Microsoft (R) Build Engine version 15.9.20+g88f5fadfbe for .NET Core
  20.     Copyright (C) Microsoft Corporation. All rights reserved.
  21.  
  22.     Restoring packages for /Users/ani/Projects/CustomTool/CustomToolTest/CustomToolTest.csproj...
  23.     Restore completed in 19.4 ms for /Users/ani/Projects/CustomTool/CustomTool/CustomTool.csproj.
  24.     Installing CustomTool 1.0.0.
  25.     Generating MSBuild file /Users/ani/Projects/CustomTool/CustomToolTest/obj/CustomToolTest.csproj.nuget.g.props.
  26.     Generating MSBuild file /Users/ani/Projects/CustomTool/CustomToolTest/obj/CustomToolTest.csproj.nuget.g.targets.
  27.     Restore completed in 203.14 ms for /Users/ani/Projects/CustomTool/CustomToolTest/CustomToolTest.csproj.
  28.     CustomTool -> /Users/ani/Projects/CustomTool/CustomTool/bin/Debug/netcoreapp2.2/CustomTool.dll
  29.     CustomTool -> /Users/ani/Projects/CustomTool/CustomTool/bin/Debug/publish/netcoreapp2.2/
  30.     Arguments: /Users/ani/Projects/CustomTool/CustomToolTest/CustomToolTest.csproj --custom-variable
  31.     CustomToolTest -> /Users/ani/Projects/CustomTool/CustomToolTest/bin/Debug/netcoreapp2.2/CustomToolTest.dll
  32.  
  33.     Build succeeded.
  34.         0 Warning(s)
  35.         0 Error(s)
  36.  
  37.     Time Elapsed 00:00:01.42
  38.     anis-macbook:CustomTool ani$ dotnet CustomToolTest/bin/Debug/netcoreapp2.2/CustomToolTest.dll
  39.     CustomToolTest.Program
  40.     CustomToolTest.Program+<>c
  41.     anis-macbook:CustomTool ani$ dotnet build CustomTool.sln
  42.     Microsoft (R) Build Engine version 15.9.20+g88f5fadfbe for .NET Core
  43.     Copyright (C) Microsoft Corporation. All rights reserved.
  44.  
  45.     Restore completed in 38.53 ms for /Users/ani/Projects/CustomTool/CustomTool/CustomTool.csproj.
  46.     Restore completed in 38.54 ms for /Users/ani/Projects/CustomTool/CustomToolTest/CustomToolTest.csproj.
  47.     CustomTool -> /Users/ani/Projects/CustomTool/CustomTool/bin/Debug/netcoreapp2.2/CustomTool.dll
  48.     CustomTool -> /Users/ani/Projects/CustomTool/CustomTool/bin/Debug/publish/netcoreapp2.2/
  49.     Arguments: /Users/ani/Projects/CustomTool/CustomToolTest/CustomToolTest.csproj --custom-variable
  50.     CustomToolTest -> /Users/ani/Projects/CustomTool/CustomToolTest/bin/Debug/netcoreapp2.2/CustomToolTest.dll
  51.  
  52.     Build succeeded.
  53.         0 Warning(s)
  54.         0 Error(s)
  55.  
  56.     Time Elapsed 00:00:01.09
  57.     anis-macbook:CustomTool ani$ dotnet CustomToolTest/bin/Debug/netcoreapp2.2/CustomToolTest.dll
  58.     Test
  59.     CustomToolTest.Program
  60.     CustomToolTest.Program+<>c
  61.     anis-macbook:CustomTool ani$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement