indongsaeng

VB config

Jun 19th, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. Download and install the latest .NET Framework.
  2. For example, you can use the installer for the .NET Framework 4.5 installer.
  3.  
  4. Open a command prompt and change into the installation directory of the .NET Framework.
  5. For example:
  6.  
  7. cd \Windows\Microsoft.NET\Framework\v4*
  8. Use MSBuild.exe to compile your solution.
  9. For example:
  10.  
  11. msbuild "C:\Users\Oliver\Documents\My Project\My Project.sln" /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU"
  12.  
  13. In case the project uses NuGet packages, you can follow these steps to retrieve them:
  14.  
  15. Download the NuGet.exe Command Line boostrapper and, for example, place it inside the solution directory.
  16.  
  17. Open a command prompt and change into the solution directory.
  18. For example:
  19.  
  20. cd "C:\Users\Oliver\Documents\My Project"
  21. Invoke NuGet.exe to update the packages required for this solution:
  22.  
  23. NuGet.exe install "My Project/packages.config" -o packages/
Add Comment
Please, Sign In to add comment