Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Documentation/Sif3Framework .NET Demo Usage Guide.doc
Binary file not shown.
8 changes: 7 additions & 1 deletion Scripts/BAT/Demo execution/DemoAuConsumer.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rem ============================================================================
rem == User defined environment variables ==
rem ============================================================================

set EXECUTABLE_PATH=..\..\..\Code\Sif3FrameworkDemo\Sif.Framework.Demo.Au.Consumer\bin\Debug\
set EXECUTABLE_PATH=Code\Sif3FrameworkDemo\Sif.Framework.Demo.Au.Consumer\bin\Debug\
set EXECUTABLE=Sif.Framework.Demo.Au.Consumer.exe

echo EXECUTABLE=%EXECUTABLE_PATH%%EXECUTABLE%
Expand All @@ -13,6 +13,12 @@ rem ============================================================================
rem == Safety checks ==
rem ============================================================================

if exist Code goto okWorkingDir
echo Could not find 'Code\' directory (SCRIPT RUNS FROM top level of Sif3Framework-dotNet project)
pause
goto end
:okWorkingDir

if exist %EXECUTABLE_PATH%%EXECUTABLE% goto okExec
echo Could not find : %EXECUTABLE_PATH%%EXECUTABLE%
pause
Expand Down
8 changes: 7 additions & 1 deletion Scripts/BAT/Demo execution/DemoAuSetup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rem ============================================================================
rem == User defined environment variables ==
rem ============================================================================

set EXECUTABLE_PATH=..\..\..\Code\Sif3FrameworkDemo\Sif.Framework.Demo.Setup\bin\Debug\
set EXECUTABLE_PATH=Code\Sif3FrameworkDemo\Sif.Framework.Demo.Setup\bin\Debug\
set EXECUTABLE=Sif.Framework.Demo.Setup.exe

echo EXECUTABLE=%EXECUTABLE_PATH%%EXECUTABLE%
Expand All @@ -13,6 +13,12 @@ rem ============================================================================
rem == Safety checks ==
rem ============================================================================

if exist Code goto okWorkingDir
echo Could not find 'Code\' directory (SCRIPT RUNS FROM top level of Sif3Framework-dotNet project)
pause
goto end
:okWorkingDir

if exist %EXECUTABLE_PATH%%EXECUTABLE% goto okExec
echo Could not find : %EXECUTABLE_PATH%%EXECUTABLE%
pause
Expand Down
9 changes: 8 additions & 1 deletion Scripts/BAT/Demo execution/DemoUsConsumer.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rem ============================================================================
rem == User defined environment variables ==
rem ============================================================================

set EXECUTABLE_PATH=..\..\..\Code\Sif3FrameworkDemo\Sif.Framework.Demo.Us.Consumer\bin\Debug\
set EXECUTABLE_PATH=Code\Sif3FrameworkDemo\Sif.Framework.Demo.Us.Consumer\bin\Debug\
set EXECUTABLE=Sif.Framework.Demo.Us.Consumer.exe

echo EXECUTABLE=%EXECUTABLE_PATH%%EXECUTABLE%
Expand All @@ -13,6 +13,13 @@ rem ============================================================================
rem == Safety checks ==
rem ============================================================================

if exist Code goto okWorkingDir
echo Could not find 'Code\' directory (SCRIPT RUNS FROM top level of Sif3Framework-dotNet project)
pause
goto end
:okWorkingDir


if exist %EXECUTABLE_PATH%%EXECUTABLE% goto okExec
echo Could not find : %EXECUTABLE_PATH%%EXECUTABLE%
pause
Expand Down
8 changes: 7 additions & 1 deletion Scripts/BAT/Demo execution/DemoUsSetup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rem ============================================================================
rem == User defined environment variables ==
rem ============================================================================

set EXECUTABLE_PATH=..\..\..\Code\Sif3FrameworkDemo\Sif.Framework.Demo.Setup\bin\Debug\
set EXECUTABLE_PATH=Code\Sif3FrameworkDemo\Sif.Framework.Demo.Setup\bin\Debug\
set EXECUTABLE=Sif.Framework.Demo.Setup.exe

echo EXECUTABLE=%EXECUTABLE_PATH%%EXECUTABLE%
Expand All @@ -13,6 +13,12 @@ rem ============================================================================
rem == Safety checks ==
rem ============================================================================

if exist Code goto okWorkingDir
echo Could not find 'Code\' directory (SCRIPT RUNS FROM top level of Sif3Framework-dotNet project)
pause
goto end
:okWorkingDir

if exist %EXECUTABLE_PATH%%EXECUTABLE% goto okExec
echo Could not find : %EXECUTABLE_PATH%%EXECUTABLE%
pause
Expand Down
19 changes: 19 additions & 0 deletions Visual Studio 2015 Note
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

If you try to open Sif3Framework.sln (as instructed in the Demo documentation)in Visual Studio 2015
(the project was create with VS 2013),you will get an error:
“This project is incompatible with the current version of Visual Studio”.

To fix it, edit the file:

Sif3Framework-dotNet/Code/Sif3Framework/Sif.Framework/Sif.Framework.csproj

And change the ToolsVersion, ie,

was:
<Project ToolsVersion="12.0" DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
should be:
<Project ToolsVersion="14.0" DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

After that, the project works correctly.