You can export a base box from your current Vagrant VM work with
vagrant package --base <vm_name> --output <vm_name>.box
However, before doing this you may try to reduce the size of the base box.
| A powershell automating Word to generate Pdf |
| using System; | |
| using System.Diagnostics; | |
| using Microsoft.Win32; | |
| namespace Hello.RegEnv | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <!-- override the TkCompileTarget with empty to skip content compilation, e.g. for NCrunch --> | |
| <Target Name="TkCompileTarget" /> | |
| <Target Name="TkListContentAndCompileTarget" /> | |
| </Project> |
| using System; | |
| using System.Globalization; | |
| using ExpressionEvaluator; | |
| using FluentAssertions; | |
| using NUnit.Framework; | |
| namespace Hello.Expressions | |
| { | |
| [TestFixture] | |
| class ExpressionTests |
| using System; | |
| using System.Linq.Expressions; | |
| using FluentAssertions; | |
| using NUnit.Framework; | |
| using Serialize.Linq.Serializers; | |
| namespace Hello.SerializeLinq | |
| { | |
| [TestFixture] | |
| // ReSharper disable once InconsistentNaming |
| public static class BalanceExtensions | |
| { | |
| // left=0, right=1 | |
| private const int LeftChan = 0; | |
| private const int RightChan = 1; | |
| /// <summary> | |
| /// Gets the ratio of volume across the left and right speakers in a range between -1 (left) and 1 (right). The default is 0 (center). | |
| /// </summary> | |
| /// <param name="volume">The audio volume endpoint</param> |
As described in ClickOnce installing dialog icon (StackOverflow) icons displayed in the ClickOnce installing dialog may seem noisy:
It should be looking like this
| rem cf.: http://stackoverflow.com/questions/21729066/running-code-analysis-fxcop-12-0-14-0-on-build-agent-without-installing-visu/32093939#32093939 | |
| @echo off | |
| setlocal | |
| set DIR=%~dp0 | |
| rem cf. http://stackoverflow.com/questions/21729066/running-code-analysis-fxcop-12-0-14-0-on-build-agent-without-installing-visu/32093939#32093939 | |
| :install_ms_build_tools | |
| if exist "%ProgramFiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe" goto install_vcredist |
| Scripts for jenkins build server automation on windows |