mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-28 18:01:08 -06:00
19 lines
472 B
PowerShell
19 lines
472 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"
|
|
) | ForEach-Object { . $_ }
|
|
|
|
Describe "VC++ Project Data Loading" {
|
|
It "To be implemented" {
|
|
}
|
|
}
|