Index: src/Deltares.DSoilModel.Forms/DSoilModelGeometryEditor.cs
===================================================================
diff -u -r7 -r63
--- src/Deltares.DSoilModel.Forms/DSoilModelGeometryEditor.cs (.../DSoilModelGeometryEditor.cs) (revision 7)
+++ src/Deltares.DSoilModel.Forms/DSoilModelGeometryEditor.cs (.../DSoilModelGeometryEditor.cs) (revision 63)
@@ -9,10 +9,10 @@
using Deltares.DSoilModel.Forms.Properties;
using Deltares.Geometry;
using Deltares.Geotechnics;
-using Deltares.Geotechnics.IO;
using Deltares.Geotechnics.ConePenetrationTest;
using Deltares.Geotechnics.Forms;
using Deltares.Geotechnics.GeotechnicalGeometry;
+using Deltares.Geotechnics.IO;
using Deltares.Standard;
using Deltares.Standard.Attributes;
using Deltares.Standard.EventPublisher;
Index: src/Deltares.DSoilModel.Data/Deltares.DSoilModel.Data.csproj
===================================================================
diff -u -r45 -r63
--- src/Deltares.DSoilModel.Data/Deltares.DSoilModel.Data.csproj (.../Deltares.DSoilModel.Data.csproj) (revision 45)
+++ src/Deltares.DSoilModel.Data/Deltares.DSoilModel.Data.csproj (.../Deltares.DSoilModel.Data.csproj) (revision 63)
@@ -96,6 +96,10 @@
..\..\lib\Deltares\DslGeo\Deltares.Geotechnics.dll
+
+ False
+ ..\..\lib\Deltares\DslGeoIo\Deltares.Geotechnics.IO.dll
+
..\..\lib\Deltares\Deltares.Geotechnics.WaternetCreator.dll
@@ -151,10 +155,6 @@
-
- {D4F17481-154D-45EC-A179-B534369053B7}
- Deltares.Geotechnics.IO
-
{5C29009E-A60B-4F4C-A2D8-D46DD7F2DB0F}
Deltares.Soilbase
Index: src/Deltares.DSoilModel.Data/SosSoilProfilesImporter.cs
===================================================================
diff -u -r6 -r63
--- src/Deltares.DSoilModel.Data/SosSoilProfilesImporter.cs (.../SosSoilProfilesImporter.cs) (revision 6)
+++ src/Deltares.DSoilModel.Data/SosSoilProfilesImporter.cs (.../SosSoilProfilesImporter.cs) (revision 63)
@@ -28,7 +28,7 @@
/// list of available soil materials to reference
///
/// List of SoilProfile1D objects
- protected override List ReadSoilProfiles(string fileName, SoilList soils, IDataFactory factory)
+ public override List ReadSoilProfiles(string fileName, SoilList soils)
{
var soilProfiles = new List();
var errorProfiles = new List();
@@ -98,15 +98,7 @@
}
if (soilProfile == null)
{
- if (factory != null)
- {
- soilProfile =
- (SoilProfile1D) factory.GetObject(csv[colIndexSoilProfileId], typeof(SoilProfile1D), null);
- }
- else
- {
- soilProfile = new SoilProfile1D();
- }
+ soilProfile = new SoilProfile1D();
soilProfile.Name = csv[colIndexSoilProfileId];
soilProfile.Layers.Clear();
soilProfiles.Add(soilProfile);
@@ -145,18 +137,12 @@
type = GetSoilTypeFromString(typeAsString);
}
- if (Registration.IsActivated)
+ layer.Soil = GetSoil(soils.Soils, csv[colIndexSoilName], color, type);
+ if (soils.AquiferDictionary.ContainsKey(layer.Soil))
{
- Registration.Register(layer, "Soil", csv[colIndexSoilName]);
+ layer.IsAquifer = soils.AquiferDictionary[layer.Soil];
}
- else
- {
- layer.Soil = GetSoil(soils.Soils, csv[colIndexSoilName], color, type);
- if (soils.AquiferDictionary.ContainsKey(layer.Soil))
- {
- layer.IsAquifer = soils.AquiferDictionary[layer.Soil];
- }
- }
+
if (isLayerCheckNeeded)
{
CheckValiditySosLayerData(layer);
Index: src/Deltares.DSoilModel.Forms/DSoilModelPlugin.cs
===================================================================
diff -u -r6 -r63
--- src/Deltares.DSoilModel.Forms/DSoilModelPlugin.cs (.../DSoilModelPlugin.cs) (revision 6)
+++ src/Deltares.DSoilModel.Forms/DSoilModelPlugin.cs (.../DSoilModelPlugin.cs) (revision 63)
@@ -12,8 +12,8 @@
using Deltares.Geotechnics;
using Deltares.Geotechnics.ConePenetrationTest;
using Deltares.Geotechnics.Forms;
-using Deltares.Geotechnics.Mechanisms;
using Deltares.Geotechnics.IO;
+using Deltares.Geotechnics.Mechanisms;
using Deltares.Probabilistic;
using Deltares.Standard;
using Deltares.Standard.Attributes;
Index: src/Deltares.DSoilModel.Tests/Deltares.DSoilModel.Tests.csproj
===================================================================
diff -u -r45 -r63
--- src/Deltares.DSoilModel.Tests/Deltares.DSoilModel.Tests.csproj (.../Deltares.DSoilModel.Tests.csproj) (revision 45)
+++ src/Deltares.DSoilModel.Tests/Deltares.DSoilModel.Tests.csproj (.../Deltares.DSoilModel.Tests.csproj) (revision 63)
@@ -49,6 +49,10 @@
False
..\..\lib\Deltares\DslGeo\Deltares.Geotechnics.dll
+
+ False
+ ..\..\lib\Deltares\DslGeoIo\Deltares.Geotechnics.IO.dll
+
..\..\lib\Deltares\DslGeo\Deltares.Geotechnics.TestUtils.dll
@@ -100,10 +104,6 @@
-
- {d4f17481-154d-45ec-a179-b534369053b7}
- Deltares.Geotechnics.IO
-
{37bc4d84-386e-425c-967b-ccf83e48a5f3}
Deltares.DSoilModel.Data
Index: src/DSoilModel.sln
===================================================================
diff -u -r46 -r63
--- src/DSoilModel.sln (.../DSoilModel.sln) (revision 46)
+++ src/DSoilModel.sln (.../DSoilModel.sln) (revision 63)
@@ -3,12 +3,8 @@
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.Soilbase", "Deltares.Soilbase\Deltares.Soilbase.csproj", "{5C29009E-A60B-4F4C-A2D8-D46DD7F2DB0F}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.Geotechnics.IO", "Deltares.Geotechnics.IO\Deltares.Geotechnics.IO.csproj", "{D4F17481-154D-45EC-A179-B534369053B7}"
-EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.Soilbase.Tests", "Deltares.Soilbase.Test\Deltares.Soilbase.Tests.csproj", "{7DD9B469-0E1C-4592-8ED8-197128D012CA}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.Geotechnics.IO.Tests", "Deltares.Geotechnics.IO.Tests\Deltares.Geotechnics.IO.Tests.csproj", "{2961067E-0D46-4A68-AC21-962CC5B0A626}"
-EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.DSoilModel.Data", "Deltares.DSoilModel.Data\Deltares.DSoilModel.Data.csproj", "{37BC4D84-386E-425C-967B-CCF83E48A5F3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.DSoilModel.Forms", "Deltares.DSoilModel.Forms\Deltares.DSoilModel.Forms.csproj", "{99BF886D-E4BD-4298-960D-25F31C324395}"
@@ -31,18 +27,10 @@
{5C29009E-A60B-4F4C-A2D8-D46DD7F2DB0F}.Debug|x86.Build.0 = Debug|x86
{5C29009E-A60B-4F4C-A2D8-D46DD7F2DB0F}.Release|x86.ActiveCfg = Release|x86
{5C29009E-A60B-4F4C-A2D8-D46DD7F2DB0F}.Release|x86.Build.0 = Release|x86
- {D4F17481-154D-45EC-A179-B534369053B7}.Debug|x86.ActiveCfg = Debug|x86
- {D4F17481-154D-45EC-A179-B534369053B7}.Debug|x86.Build.0 = Debug|x86
- {D4F17481-154D-45EC-A179-B534369053B7}.Release|x86.ActiveCfg = Release|x86
- {D4F17481-154D-45EC-A179-B534369053B7}.Release|x86.Build.0 = Release|x86
{7DD9B469-0E1C-4592-8ED8-197128D012CA}.Debug|x86.ActiveCfg = Debug|x86
{7DD9B469-0E1C-4592-8ED8-197128D012CA}.Debug|x86.Build.0 = Debug|x86
{7DD9B469-0E1C-4592-8ED8-197128D012CA}.Release|x86.ActiveCfg = Release|x86
{7DD9B469-0E1C-4592-8ED8-197128D012CA}.Release|x86.Build.0 = Release|x86
- {2961067E-0D46-4A68-AC21-962CC5B0A626}.Debug|x86.ActiveCfg = Debug|x86
- {2961067E-0D46-4A68-AC21-962CC5B0A626}.Debug|x86.Build.0 = Debug|x86
- {2961067E-0D46-4A68-AC21-962CC5B0A626}.Release|x86.ActiveCfg = Release|x86
- {2961067E-0D46-4A68-AC21-962CC5B0A626}.Release|x86.Build.0 = Release|x86
{37BC4D84-386E-425C-967B-CCF83E48A5F3}.Debug|x86.ActiveCfg = Debug|x86
{37BC4D84-386E-425C-967B-CCF83E48A5F3}.Debug|x86.Build.0 = Debug|x86
{37BC4D84-386E-425C-967B-CCF83E48A5F3}.Release|x86.ActiveCfg = Release|x86
@@ -66,7 +54,6 @@
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
- {2961067E-0D46-4A68-AC21-962CC5B0A626} = {EEEE9444-BDDA-44ED-A139-4A7B6F93BBCA}
{7F3A1524-E28B-47BF-94BB-4571D304BE16} = {EEEE9444-BDDA-44ED-A139-4A7B6F93BBCA}
{7DD9B469-0E1C-4592-8ED8-197128D012CA} = {EEEE9444-BDDA-44ED-A139-4A7B6F93BBCA}
EndGlobalSection
Index: src/Deltares.Soilbase/Deltares.Soilbase.csproj
===================================================================
diff -u -r45 -r63
--- src/Deltares.Soilbase/Deltares.Soilbase.csproj (.../Deltares.Soilbase.csproj) (revision 45)
+++ src/Deltares.Soilbase/Deltares.Soilbase.csproj (.../Deltares.Soilbase.csproj) (revision 63)
@@ -92,6 +92,10 @@
..\..\lib\Deltares\DslGeo\Deltares.Geotechnics.dll
+
+ False
+ ..\..\lib\Deltares\DslGeoIo\Deltares.Geotechnics.IO.dll
+
..\..\lib\Deltares\DslProbabilistic\Deltares.Probabilistic.dll
@@ -141,12 +145,6 @@
-
-
- {d4f17481-154d-45ec-a179-b534369053b7}
- Deltares.Geotechnics.IO
-
-
Index: src/Deltares.DSoilModel.Forms/Deltares.DSoilModel.Forms.csproj
===================================================================
diff -u -r45 -r63
--- src/Deltares.DSoilModel.Forms/Deltares.DSoilModel.Forms.csproj (.../Deltares.DSoilModel.Forms.csproj) (revision 45)
+++ src/Deltares.DSoilModel.Forms/Deltares.DSoilModel.Forms.csproj (.../Deltares.DSoilModel.Forms.csproj) (revision 63)
@@ -108,6 +108,10 @@
..\..\lib\Deltares\DslFormsGeo\Deltares.Geotechnics.Forms.dll
+
+ False
+ ..\..\lib\Deltares\DslGeoIo\Deltares.Geotechnics.IO.dll
+
False
..\..\lib\Deltares\DslCore\Deltares.Mathematics.dll
@@ -278,10 +282,6 @@
-
- {d4f17481-154d-45ec-a179-b534369053b7}
- Deltares.Geotechnics.IO
-
{37bc4d84-386e-425c-967b-ccf83e48a5f3}
Deltares.DSoilModel.Data
Index: src/Deltares.DSoilModel.Data/DSoilModelIO.cs
===================================================================
diff -u -r6 -r63
--- src/Deltares.DSoilModel.Data/DSoilModelIO.cs (.../DSoilModelIO.cs) (revision 6)
+++ src/Deltares.DSoilModel.Data/DSoilModelIO.cs (.../DSoilModelIO.cs) (revision 63)
@@ -482,27 +482,33 @@
{
// import segments shapefile to empty deltamodel
var importer = new ShapeFileImporter();
- var deltaModel = new DeltaModel.DeltaModel();
+ // var deltaModel = new DeltaModel.DeltaModel();
var fieldMap = new FieldPropertyMap();
fieldMap.Definitions.Add(new FieldDefinition(fieldName, "SegmentId", true));
importer.FieldDefinition = fieldMap;
importer.Type = typeof(SoilSegment);
importer.FileName = fileName;
- importer.Factory = new DeltaModelFactory(deltaModel);
-
+ var myfac = new DefaultClassFactory();
+ // myfac.Create(typeof(SoilSegment));
+ var arr = myfac.CreateArray(typeof(SoilSegment), project.SoilSegments.Count);
+ importer.Factory = myfac; ////new DeltaModelFactory(deltaModel); //
+ //importer.Factory.Create();
importer.Import();
-
- // link geography to existing segments (imported from CSV)
- foreach (var shapeSegment in deltaModel.SoilSegments)
+ foreach (var va in (Array)arr)
{
- string name = shapeSegment.Name;
- foreach (var segment in project.SoilSegments.Where(s => s.Name == name || s.Name.StartsWith(name + "_")))
- {
- segment.Points.Clear();
- segment.Points.AddRange(shapeSegment.Points);
- }
+ string name = va.ToString();
}
+ // link geography to existing segments (imported from CSV)
+// foreach (var shapeSegment in deltaModel.SoilSegments)
+// {
+// string name = shapeSegment.Name;
+// foreach (var segment in project.SoilSegments.Where(s => s.Name == name || s.Name.StartsWith(name + "_")))
+// {
+// segment.Points.Clear();
+// segment.Points.AddRange(shapeSegment.Points);
+// }
+// }
}
private static void ReadSoilsFromOldDataBaseAndAddToProject(ref DSoilModelProject project, GeoDatabase geoDatabase)
Index: src/Deltares.DSoilModel.Forms/DrawingSpecificMechanismPointLocation.cs
===================================================================
diff -u -r6 -r63
--- src/Deltares.DSoilModel.Forms/DrawingSpecificMechanismPointLocation.cs (.../DrawingSpecificMechanismPointLocation.cs) (revision 6)
+++ src/Deltares.DSoilModel.Forms/DrawingSpecificMechanismPointLocation.cs (.../DrawingSpecificMechanismPointLocation.cs) (revision 63)
@@ -2,9 +2,9 @@
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
-using Deltares.Geotechnics.IO;
using Deltares.Geometry;
using Deltares.Geometry.Forms;
+using Deltares.Geotechnics.IO;
using Deltares.Mathematics;
using Deltares.Standard.EventPublisher;
using Deltares.Standard.Forms;
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/OldGeometryFileImporter.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Exception/CsvImporterSoilProfilesException.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/SoilProfilesImporter.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/XmlSoilsToSoilListHandler.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/CharacteristicPointsImporter.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/Exception/FetchesImporterException.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/GefCptFileImporter.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/packages.config'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Translations.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/GefBoringFileImporter.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/SurfaceLinesImporter.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/XmlAquiferHandler.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/SpecificMechanismPointLocation.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/DGSGEFInterface.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/Exception/CharacteristicPointsImporterException.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Properties/AssemblyInfo.cs.svn'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/GEFXmlImporter.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/SoilModelDatabase.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/SoilSegmentsImporter.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Deltares.Geotechnics.IO.csproj'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO/Importers/DGSStandardDLLInterface.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestData/Tutorial-5.geo'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestFiles/002_soilprofile.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/packages.config'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/SurfaceLinesImporterTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestFiles/002_surfaceline.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestData/TestGeomDifficult.geo'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestFiles/DesignParameters.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestData/demo-3-bore.gef'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/SpecificMechanismPointLocationTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestFiles/CPTTestBenchmark_01_DSoilModel.GEF'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestFiles/DKMP28_002.GEF'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/CharacteristicPointsImporterTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: src/Deltares.Geotechnics.IO.Tests/x64/SQLite.Interop.dll
===================================================================
diff -u -r6 -r63
Binary files differ
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestFiles/001_soilprofile.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/GefBoringFileImporterTests.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/SoilProfilesImporterTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/Deltares.Geotechnics.IO.Tests.csproj'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestFiles/CPTTestBenchmark_03_DSoilModel.GEF'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestFiles/001_surfaceline.xml'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/OldGeometryFileImporterTests.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/SegmentsImporterTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/ConePenetrationTestImporterTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/Properties/AssemblyInfo.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: src/Deltares.Geotechnics.IO.Tests/x86/SQLite.Interop.dll
===================================================================
diff -u -r6 -r63
Binary files differ
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/SoilModelDatabaseTest.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 63 refers to a dead (removed) revision in file `src/Deltares.Geotechnics.IO.Tests/TestFiles/DKMP09_000.GEF'.
Fisheye: No comparison available. Pass `N' to diff?