mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
20 lines
522 B
PowerShell
20 lines
522 B
PowerShell
#Clear-Host
|
|
|
|
# IMPORT code blocks
|
|
|
|
Set-Variable -name "kScriptLocation" `
|
|
-value (Split-Path -Path $MyInvocation.MyCommand.Definition -Parent) <#`
|
|
-option Constant#>
|
|
|
|
@(
|
|
, "$kScriptLocation\io.ps1"
|
|
, "$kScriptLocation\msbuild-expression-eval.ps1"
|
|
, "$kScriptLocation\msbuild-project-load.ps1"
|
|
, "$kScriptLocation\msbuild-project-data.ps1"
|
|
) | ForEach-Object { . $_ }
|
|
|
|
Describe "VC++ Project Data Processing" {
|
|
It "To be implemented" {
|
|
}
|
|
}
|