Sha256: 9ca4b07fac3eb3a38b0a10563ce16474d70b01e282abf2847ef9fb022ead82a3
Contents?: true
Size: 544 Bytes
Versions: 8
Compression:
Stored size: 544 Bytes
Contents
$solutionDir = [System.IO.Path]::GetDirectoryName($dte.Solution.FullName) + "\" $path = $installPath.Replace($solutionDir, "`$(SolutionDir)") $NativeAssembliesDir = Join-Path $path "NativeBinaries" $x86 = $(Join-Path $NativeAssembliesDir "x86\*.*") $x64 = $(Join-Path $NativeAssembliesDir "amd64\*.*") $SqlCEPostBuildCmd = " if not exist `"`$(TargetDir)x86`" md `"`$(TargetDir)x86`" xcopy /s /y `"$x86`" `"`$(TargetDir)x86`" if not exist `"`$(TargetDir)amd64`" md `"`$(TargetDir)amd64`" xcopy /s /y `"$x64`" `"`$(TargetDir)amd64`""
Version data entries
8 entries across 8 versions & 1 rubygems