-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 7.1.0
- Loading branch information
Showing
159 changed files
with
3,345 additions
and
779 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
configuration: Debug | ||
|
||
environment: | ||
app_version: '7.1.0' | ||
|
||
version: '%app_version%.{build}' | ||
|
||
assembly_info: | ||
patch: true | ||
file: SolutionInfo.* | ||
assembly_version: "{version}" | ||
assembly_file_version: "{version}" | ||
|
||
cache: | ||
packages -> **\packages.config | ||
|
||
before_build: | ||
- nuget sources add -name bddhelper -source https://ci.appveyor.com/nuget/ospsuite-bddhelper | ||
- nuget sources add -name utility -source https://ci.appveyor.com/nuget/ospsuite-utility | ||
- nuget sources add -name serializer -source https://ci.appveyor.com/nuget/ospsuite-serializer | ||
- nuget sources add -name databinding -source https://ci.appveyor.com/nuget/ospsuite-databinding | ||
- nuget sources add -name texreporting -source https://ci.appveyor.com/nuget/ospsuite-texreporting | ||
- nuget sources add -name databinding-devexpress -source https://ci.appveyor.com/nuget/ospsuite-databinding-devexpress | ||
- nuget sources add -name funcparser -source https://ci.appveyor.com/nuget/ospsuite-funcparser | ||
- nuget sources add -name simmodel -source https://ci.appveyor.com/nuget/ospsuite-simmodel | ||
- nuget sources add -name cvodes -source https://ci.appveyor.com/nuget/ospsuite-simmodel-solver-cvodes-282 | ||
- nuget sources add -name smartxls -source https://ci.appveyor.com/nuget/ospsuite-smartxls | ||
- nuget restore | ||
|
||
build: | ||
verbosity: minimal | ||
project: OSPSuite.Core.sln | ||
|
||
test_script: | ||
- rake cover | ||
|
||
install: | ||
- set PATH=C:\Ruby22\bin;C:\\Python34;C:\\Python34\\Scripts;%PATH%" | ||
- pip install codecov | ||
- git submodule update --init --recursive | ||
- ps: >- | ||
(new-object net.webclient).DownloadFile('https://download.microsoft.com/download/A/2/D/A2D8587D-0027-4217-9DAD-38AFDB0A177E/msxml.msi', 'C:\\msxml.msi') | ||
Start-Process msiexec.exe -ArgumentList /i, C:\msxml.msi, /quiet, /qn, /norestart -Wait |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
@echo off | ||
|
||
set SolutionDir=%~d0%~p0 | ||
set SrcDir=%SolutionDir%src\ | ||
set AppDebugDir=%SolutionDir%..\MoBi\src\MoBi\bin\Debug\ | ||
|
||
copy "%SrcDir%OSPSuite.UI\bin\debug\OSPSuite*.dll" "%AppDebugDir%" | ||
copy "%SrcDir%OSPSuite.UI\bin\debug\OSPSuite*.pdb" "%AppDebugDir%" | ||
cls | ||
rake copy_to_mobi | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
@echo off | ||
|
||
set SolutionDir=%~d0%~p0 | ||
set SrcDir=%SolutionDir%src\ | ||
set AppDebugDir=%SolutionDir%..\PK-Sim\src\PKSim\bin\Debug | ||
|
||
copy "%SrcDir%OSPSuite.UI\bin\debug\OSPSuite*.dll" "%AppDebugDir%" | ||
copy "%SrcDir%OSPSuite.UI\bin\debug\OSPSuite*.pdb" "%AppDebugDir%" | ||
cls | ||
rake copy_to_pksim | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
require_relative 'scripts/coverage' | ||
require_relative 'scripts/copy-dependencies' | ||
|
||
task :cover do | ||
filter = [] | ||
filter << "+[OSPSuite.Core]*" | ||
filter << "+[OSPSuite.Infrastructure]*" | ||
filter << "+[OSPSuite.Presentation]*" | ||
|
||
#exclude namespaces that are tested from applications | ||
filter << "-[OSPSuite.Infrastructure]OSPSuite.Infrastructure.Reporting*" | ||
filter << "-[OSPSuite.Infrastructure]OSPSuite.Infrastructure.Serialization.ORM*" | ||
filter << "-[OSPSuite.Presentation]OSPSuite.Presentation.MenuAndBars*" | ||
filter << "-[OSPSuite.Presentation]OSPSuite.Presentation.Presenters.ContextMenus*" | ||
|
||
Coverage.cover(filter, "OSPSuite.Core.Tests.csproj") | ||
end | ||
|
||
task :copy_to_pksim do | ||
copy_to_app '../PK-Sim/src/PKSim/bin/Debug/' | ||
end | ||
|
||
task :copy_to_mobi do | ||
copy_to_app '../MoBi/src/MoBi/bin/Debug/' | ||
end | ||
|
||
private | ||
|
||
def copy_to_app(app_target_relative_path) | ||
app_target_path = File.join(solution_dir, app_target_relative_path) | ||
source_dir = File.join(src_dir, 'OSPSuite.UI', 'bin', 'Debug') | ||
|
||
copy_depdencies source_dir, app_target_path do | ||
copy_file 'OSPSuite.*.dll' | ||
copy_file 'OSPSuite.*.pdb' | ||
end | ||
|
||
end | ||
|
||
def solution_dir | ||
File.dirname(__FILE__) | ||
end | ||
|
||
def src_dir | ||
File.join(solution_dir, 'src') | ||
end | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="OSPSuite.Utility" version="2.0.0.1" targetFramework="net452" /> | ||
<package id="OSPSuite.Utility" version="2.0.0.5" targetFramework="net452" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace OSPSuite.Core.Batch | ||
{ | ||
public class BatchOutputValues | ||
{ | ||
public string Path { get; set; } | ||
public float[] Values { get; set; } | ||
public string Dimension { get; set; } | ||
public double ComparisonThreshold { get; set; } | ||
} | ||
} |
Oops, something went wrong.