Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Class1.cs
===================================================================
diff -u
--- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Class1.cs (revision 0)
+++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Class1.cs (revision 250)
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Deltares.DamPiping
+{
+ public class Class1
+ {
+
+ public static bool DoSomething()
+ {
+ double test1 = 1.2;
+ double test2 = 2.4;
+ bool vgl = test1 > test2;
+ return vgl;
+ }
+ }
+}
Index: dam failuremechanisms/damPiping/trunk/src/DamPiping.sln
===================================================================
diff -u -r247 -r250
--- dam failuremechanisms/damPiping/trunk/src/DamPiping.sln (.../DamPiping.sln) (revision 247)
+++ dam failuremechanisms/damPiping/trunk/src/DamPiping.sln (.../DamPiping.sln) (revision 250)
@@ -1,9 +1,12 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.DamPiping", "Deltares.DamPiping.csproj", "{36A28706-EDBF-4D6E-B143-FF53941A91F2}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.DamPiping", "Deltares.DamPiping\Deltares.DamPiping.csproj", "{36A28706-EDBF-4D6E-B143-FF53941A91F2}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.DamPiping.Tests", "Tests\Deltares.DamPiping.Tests.csproj", "{70F87266-FEDF-4DE1-86BD-CB920C3244C9}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Deltares.DamPiping.Tests", "Deltares.DamPiping.Tests\Deltares.DamPiping.Tests.csproj", "{70F87266-FEDF-4DE1-86BD-CB920C3244C9}"
+ ProjectSection(ProjectDependencies) = postProject
+ {36A28706-EDBF-4D6E-B143-FF53941A91F2} = {36A28706-EDBF-4D6E-B143-FF53941A91F2}
+ EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Fisheye: Tag 250 refers to a dead (removed) revision in file `dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.csproj'.
Fisheye: No comparison available. Pass `N' to diff?
Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.Tests/Class1Tests.cs
===================================================================
diff -u
--- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.Tests/Class1Tests.cs (revision 0)
+++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.Tests/Class1Tests.cs (revision 250)
@@ -0,0 +1,15 @@
+using NUnit.Framework;
+
+namespace Deltares.DamPiping.Tests
+{
+ [TestFixture]
+ public class Class1Tests
+ {
+ [Test]
+ public void TestSomething()
+ {
+ bool test = Class1.DoSomething();
+ Assert.AreEqual(false, test);
+ }
+ }
+}
Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.Tests/Deltares.DamPiping.Tests.csproj
===================================================================
diff -u
--- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.Tests/Deltares.DamPiping.Tests.csproj (revision 0)
+++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.Tests/Deltares.DamPiping.Tests.csproj (revision 250)
@@ -0,0 +1,59 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {70F87266-FEDF-4DE1-86BD-CB920C3244C9}
+ Library
+ Properties
+ Deltares.DamPiping.Tests
+ Deltares.DamPiping.Tests
+ v4.0
+ 512
+
+
+
+ x86
+ bin\Debug\
+ TRACE;DEBUG
+
+
+ x86
+ bin\Release\
+ TRACE
+ true
+ 4
+
+
+
+
+ False
+ ..\..\lib\NUnit\nunit.framework.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {36A28706-EDBF-4D6E-B143-FF53941A91F2}
+ Deltares.DamPiping
+
+
+
+
+
\ No newline at end of file
Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Properties/GlobalAssemblyInfo.cs
===================================================================
diff -u
--- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Properties/GlobalAssemblyInfo.cs (revision 0)
+++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Properties/GlobalAssemblyInfo.cs (revision 250)
@@ -0,0 +1,20 @@
+using System.Reflection;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("DamPiping")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Deltares")]
+[assembly: AssemblyProduct("DamPiping")]
+[assembly: AssemblyCopyright("Copyright © Deltares 2017")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Properties/AssemblyInfo.cs.svn
===================================================================
diff -u
--- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Properties/AssemblyInfo.cs.svn (revision 0)
+++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Properties/AssemblyInfo.cs.svn (revision 250)
@@ -0,0 +1,8 @@
+using System.Reflection;
+using System.Runtime.InteropServices;
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("36a28706-edbf-4d6e-b143-ff53941a91f2")]
+
+[assembly: AssemblyVersion("17.1.0.SVNREV")]
+[assembly: AssemblyFileVersion("17.1.0.SVNREV")]
Fisheye: Tag 250 refers to a dead (removed) revision in file `dam failuremechanisms/damPiping/trunk/src/Class1.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.Tests/Properties/AssemblyInfo.cs
===================================================================
diff -u
--- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.Tests/Properties/AssemblyInfo.cs (revision 0)
+++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping.Tests/Properties/AssemblyInfo.cs (revision 250)
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Deltares.DamPiping.Tests")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Deltares")]
+[assembly: AssemblyProduct("Deltares.DamPiping.Tests")]
+[assembly: AssemblyCopyright("Copyright © Deltares 2017")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("70f87266-fedf-4de1-86bd-cb920c3244c9")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
Index: dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Deltares.DamPiping.csproj
===================================================================
diff -u
--- dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Deltares.DamPiping.csproj (revision 0)
+++ dam failuremechanisms/damPiping/trunk/src/Deltares.DamPiping/Deltares.DamPiping.csproj (revision 250)
@@ -0,0 +1,60 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {36A28706-EDBF-4D6E-B143-FF53941A91F2}
+ Library
+ Properties
+ Deltares.DamPiping
+ Deltares.DamPiping
+ v4.0
+ 512
+
+
+
+ true
+ bin\Debug\
+ DEBUG;TRACE
+ full
+ x86
+ prompt
+ MinimumRecommendedRules.ruleset
+
+
+ bin\Release\
+ TRACE
+ true
+ pdbonly
+ x86
+ prompt
+ MinimumRecommendedRules.ruleset
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ "$(ProjectDir)..\..\utils\svn_insert_version.cmd" "$(ProjectDir)Properties"
+
+
+
\ No newline at end of file
Fisheye: Tag 250 refers to a dead (removed) revision in file `dam failuremechanisms/damPiping/trunk/src/Properties/GlobalAssemblyInfo.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 250 refers to a dead (removed) revision in file `dam failuremechanisms/damPiping/trunk/src/Properties/AssemblyInfo.cs.svn'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 250 refers to a dead (removed) revision in file `dam failuremechanisms/damPiping/trunk/src/Tests/Class1Tests.cs'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 250 refers to a dead (removed) revision in file `dam failuremechanisms/damPiping/trunk/src/Tests/Deltares.DamPiping.Tests.csproj'.
Fisheye: No comparison available. Pass `N' to diff?
Fisheye: Tag 250 refers to a dead (removed) revision in file `dam failuremechanisms/damPiping/trunk/src/Tests/Properties/AssemblyInfo.cs'.
Fisheye: No comparison available. Pass `N' to diff?