Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Download and install the latest .NET Framework.
- For example, you can use the installer for the .NET Framework 4.5 installer.
- Open a command prompt and change into the installation directory of the .NET Framework.
- For example:
- cd \Windows\Microsoft.NET\Framework\v4*
- Use MSBuild.exe to compile your solution.
- For example:
- msbuild "C:\Users\Oliver\Documents\My Project\My Project.sln" /t:Rebuild /p:Configuration=Release /p:Platform="Any CPU"
- In case the project uses NuGet packages, you can follow these steps to retrieve them:
- Download the NuGet.exe Command Line boostrapper and, for example, place it inside the solution directory.
- Open a command prompt and change into the solution directory.
- For example:
- cd "C:\Users\Oliver\Documents\My Project"
- Invoke NuGet.exe to update the packages required for this solution:
- NuGet.exe install "My Project/packages.config" -o packages/
Add Comment
Please, Sign In to add comment