From b9aca250c364c7e27d8b89b47975f5678cce1388 Mon Sep 17 00:00:00 2001 From: Michael Krisper <michael.krisper@tugraz.at> Date: Fri, 13 Aug 2021 08:46:56 +0200 Subject: [PATCH] Added Package ValueTuple --- VectoCore/VectoCore/VectoCore.csproj | 3 +++ VectoCore/VectoCore/packages.config | 1 + VectoCore/VectoCoreTest/VectoCoreTest.csproj | 3 +++ VectoCore/VectoCoreTest/packages.config | 1 + 4 files changed, 8 insertions(+) diff --git a/VectoCore/VectoCore/VectoCore.csproj b/VectoCore/VectoCore/VectoCore.csproj index 206f760631..53a2fc997b 100644 --- a/VectoCore/VectoCore/VectoCore.csproj +++ b/VectoCore/VectoCore/VectoCore.csproj @@ -126,6 +126,9 @@ <Reference Include="System.Runtime.Serialization" /> <Reference Include="System.ServiceModel" /> <Reference Include="System.Transactions" /> + <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> + <HintPath>..\..\packages\System.ValueTuple.4.5.0\lib\netstandard1.0\System.ValueTuple.dll</HintPath> + </Reference> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Windows.Forms.DataVisualization" /> <Reference Include="System.Data.DataSetExtensions" /> diff --git a/VectoCore/VectoCore/packages.config b/VectoCore/VectoCore/packages.config index 519537f01e..1f70871c95 100644 --- a/VectoCore/VectoCore/packages.config +++ b/VectoCore/VectoCore/packages.config @@ -8,5 +8,6 @@ <package id="Ninject.Extensions.NamedScope" version="3.3.0" targetFramework="net45" /> <package id="NLog" version="4.5.11" targetFramework="net45" /> <package id="System.Runtime" version="4.0.0" targetFramework="net45" /> + <package id="System.ValueTuple" version="4.5.0" targetFramework="net45" /> <package id="ValueInjecter" version="3.1.1.5" targetFramework="net45" /> </packages> \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/VectoCoreTest.csproj b/VectoCore/VectoCoreTest/VectoCoreTest.csproj index 49eee9cbb9..0824b45d2a 100644 --- a/VectoCore/VectoCoreTest/VectoCoreTest.csproj +++ b/VectoCore/VectoCoreTest/VectoCoreTest.csproj @@ -73,6 +73,9 @@ <Reference Include="System.Runtime.Serialization" /> <Reference Include="System.ServiceModel" /> <Reference Include="System.Transactions" /> + <Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> + <HintPath>..\..\packages\System.ValueTuple.4.5.0\lib\netstandard1.0\System.ValueTuple.dll</HintPath> + </Reference> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Windows.Forms.DataVisualization" /> <Reference Include="System.Xml" /> diff --git a/VectoCore/VectoCoreTest/packages.config b/VectoCore/VectoCoreTest/packages.config index b879abef83..d70dde3002 100644 --- a/VectoCore/VectoCoreTest/packages.config +++ b/VectoCore/VectoCoreTest/packages.config @@ -6,4 +6,5 @@ <package id="NLog" version="4.5.11" targetFramework="net45" /> <package id="NUnit" version="3.11.0" targetFramework="net45" /> <package id="NUnit3TestAdapter" version="3.11.2" targetFramework="net45" /> + <package id="System.ValueTuple" version="4.5.0" targetFramework="net45" /> </packages> \ No newline at end of file -- GitLab