Skip to content

Commit 87333af

Browse files
committed
Change datacontracts to a standard library and update NUnit
1 parent 53d8b86 commit 87333af

File tree

16 files changed

+60
-90
lines changed

16 files changed

+60
-90
lines changed

Diff for: Accessors.DatabaseAccessors/Accessors.DatabaseAccessors.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<Name>Shared.DatabaseContext</Name>
7171
</ProjectReference>
7272
<ProjectReference Include="..\Shared.DataContracts\Shared.DataContracts.csproj">
73-
<Project>{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}</Project>
73+
<Project>{0c5f8e80-076a-4c48-900d-d5e6b0c1f34e}</Project>
7474
<Name>Shared.DataContracts</Name>
7575
</ProjectReference>
7676
</ItemGroup>

Diff for: Managers.LazyCollectionOfAllManagers/Managers.LazyCollectionOfAllManagers.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<Name>Accessors.DatabaseAccessors</Name>
6767
</ProjectReference>
6868
<ProjectReference Include="..\Shared.DataContracts\Shared.DataContracts.csproj">
69-
<Project>{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}</Project>
69+
<Project>{0c5f8e80-076a-4c48-900d-d5e6b0c1f34e}</Project>
7070
<Name>Shared.DataContracts</Name>
7171
</ProjectReference>
7272
</ItemGroup>

Diff for: Shared.DataContracts/Shared.DataContracts.csproj

+5-53
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,7 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
43
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>Shared.DataContracts</RootNamespace>
11-
<AssemblyName>Shared.DataContracts</AssemblyName>
12-
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
4+
<TargetFramework>netstandard2.0</TargetFramework>
145
</PropertyGroup>
15-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16-
<DebugSymbols>true</DebugSymbols>
17-
<DebugType>full</DebugType>
18-
<Optimize>false</Optimize>
19-
<OutputPath>bin\Debug\</OutputPath>
20-
<DefineConstants>DEBUG;TRACE</DefineConstants>
21-
<ErrorReport>prompt</ErrorReport>
22-
<WarningLevel>4</WarningLevel>
23-
</PropertyGroup>
24-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25-
<DebugType>pdbonly</DebugType>
26-
<Optimize>true</Optimize>
27-
<OutputPath>bin\Release\</OutputPath>
28-
<DefineConstants>TRACE</DefineConstants>
29-
<ErrorReport>prompt</ErrorReport>
30-
<WarningLevel>4</WarningLevel>
31-
</PropertyGroup>
32-
<ItemGroup>
33-
<Reference Include="System" />
34-
<Reference Include="System.Core" />
35-
<Reference Include="System.Xml.Linq" />
36-
<Reference Include="System.Data.DataSetExtensions" />
37-
<Reference Include="Microsoft.CSharp" />
38-
<Reference Include="System.Data" />
39-
<Reference Include="System.Net.Http" />
40-
<Reference Include="System.Xml" />
41-
</ItemGroup>
42-
<ItemGroup>
43-
<Compile Include="DataConstants.cs" />
44-
<Compile Include="Properties\AssemblyInfo.cs" />
45-
<Compile Include="SaveResult.cs" />
46-
<Compile Include="TodoItem.cs" />
47-
<Compile Include="TodoList.cs" />
48-
<Compile Include="User.cs" />
49-
<Compile Include="UserAccountStats.cs" />
50-
</ItemGroup>
51-
<ItemGroup>
52-
<None Include="README_DataContracts.md" />
53-
</ItemGroup>
54-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
55-
</Project>
6+
7+
</Project>

Diff for: Shared.DatabaseContext/Shared.DatabaseContext.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
</ItemGroup>
8484
<ItemGroup>
8585
<ProjectReference Include="..\Shared.DataContracts\Shared.DataContracts.csproj">
86-
<Project>{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}</Project>
86+
<Project>{0c5f8e80-076a-4c48-900d-d5e6b0c1f34e}</Project>
8787
<Name>Shared.DataContracts</Name>
8888
</ProjectReference>
8989
</ItemGroup>

Diff for: Test.NUnitExtensions/Test.NUnitExtensions.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\NUnit.3.10.1\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.10.1\build\NUnit.props')" />
3+
<Import Project="..\packages\NUnit.3.11.0\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.11.0\build\NUnit.props')" />
44
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
55
<PropertyGroup>
66
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -33,8 +33,8 @@
3333
<WarningLevel>4</WarningLevel>
3434
</PropertyGroup>
3535
<ItemGroup>
36-
<Reference Include="nunit.framework, Version=3.10.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
37-
<HintPath>..\packages\NUnit.3.10.1\lib\net45\nunit.framework.dll</HintPath>
36+
<Reference Include="nunit.framework, Version=3.11.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
37+
<HintPath>..\packages\NUnit.3.11.0\lib\net45\nunit.framework.dll</HintPath>
3838
</Reference>
3939
<Reference Include="System" />
4040
<Reference Include="System.Core" />
@@ -58,6 +58,6 @@
5858
<PropertyGroup>
5959
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
6060
</PropertyGroup>
61-
<Error Condition="!Exists('..\packages\NUnit.3.10.1\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.10.1\build\NUnit.props'))" />
61+
<Error Condition="!Exists('..\packages\NUnit.3.11.0\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.11.0\build\NUnit.props'))" />
6262
</Target>
6363
</Project>

Diff for: Test.NUnitExtensions/TestFixture_Prefixed.cs

+16-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System;
66
using System.Collections.Generic;
77
using System.Linq;
8+
using System.Reflection;
89
using System.Text;
910
using System.Threading.Tasks;
1011

@@ -31,7 +32,7 @@ public IEnumerable<TestSuite> BuildFrom(ITypeInfo typeInfo)
3132
// This possibly implies that cases are built after the fixture methods run
3233
// https://groups.google.com/forum/#!topic/nunit-discuss/PT0NQaL7AMg
3334
NUnitTestFixtureBuilder b = new NUnitTestFixtureBuilder();
34-
TestSuite testSuite = b.BuildFrom(typeInfo, this);
35+
TestSuite testSuite = b.BuildFrom(typeInfo, new NoFilter());
3536
foreach (NUnit.Framework.Internal.Test t in testSuite.Tests)
3637
{
3738
t.Name = $"{_prefix}_{t.Name}";
@@ -54,4 +55,18 @@ public IEnumerable<TestSuite> BuildFrom(ITypeInfo typeInfo)
5455
// return testMethod;
5556
// }
5657
//}
58+
59+
class NoFilter : IPreFilter
60+
{
61+
//ref: https://github.com/nunit/nunit/issues/3050
62+
public bool IsMatch(Type type)
63+
{
64+
return true;
65+
}
66+
67+
public bool IsMatch(Type type, MethodInfo method)
68+
{
69+
return true;
70+
}
71+
}
5772
}

Diff for: Test.NUnitExtensions/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="3.10.1" targetFramework="net461" />
3+
<package id="NUnit" version="3.11.0" targetFramework="net461" />
44
</packages>

Diff for: TestingExemplar.sln

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ VisualStudioVersion = 15.0.27130.2027
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Managers.LazyCollectionOfAllManagers", "Managers.LazyCollectionOfAllManagers\Managers.LazyCollectionOfAllManagers.csproj", "{20052ECB-4E1D-4F2F-9F06-79111FE381F8}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared.DataContracts", "Shared.DataContracts\Shared.DataContracts.csproj", "{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}"
9-
EndProject
108
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared.DatabaseContext", "Shared.DatabaseContext\Shared.DatabaseContext.csproj", "{6886BD35-1655-456B-A4C2-6B57BD557254}"
119
EndProject
1210
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests.DataPrep", "Tests.DataPrep\Tests.DataPrep.csproj", "{458ED4A8-E0F2-4089-94CB-20B0EFDD4B46}"
@@ -46,6 +44,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.NUnitExtensions", "Tes
4644
EndProject
4745
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests.TestBases", "Tests.TestBases\Tests.TestBases.csproj", "{EBD233E2-509F-4A6A-B43E-034986583AE2}"
4846
EndProject
47+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared.DataContracts", "Shared.DataContracts\Shared.DataContracts.csproj", "{0C5F8E80-076A-4C48-900D-D5E6B0C1F34E}"
48+
EndProject
4949
Global
5050
GlobalSection(SolutionConfigurationPlatforms) = preSolution
5151
Debug|Any CPU = Debug|Any CPU
@@ -56,10 +56,6 @@ Global
5656
{20052ECB-4E1D-4F2F-9F06-79111FE381F8}.Debug|Any CPU.Build.0 = Debug|Any CPU
5757
{20052ECB-4E1D-4F2F-9F06-79111FE381F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
5858
{20052ECB-4E1D-4F2F-9F06-79111FE381F8}.Release|Any CPU.Build.0 = Release|Any CPU
59-
{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
60-
{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}.Debug|Any CPU.Build.0 = Debug|Any CPU
61-
{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}.Release|Any CPU.ActiveCfg = Release|Any CPU
62-
{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}.Release|Any CPU.Build.0 = Release|Any CPU
6359
{6886BD35-1655-456B-A4C2-6B57BD557254}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
6460
{6886BD35-1655-456B-A4C2-6B57BD557254}.Debug|Any CPU.Build.0 = Debug|Any CPU
6561
{6886BD35-1655-456B-A4C2-6B57BD557254}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -92,13 +88,16 @@ Global
9288
{EBD233E2-509F-4A6A-B43E-034986583AE2}.Debug|Any CPU.Build.0 = Debug|Any CPU
9389
{EBD233E2-509F-4A6A-B43E-034986583AE2}.Release|Any CPU.ActiveCfg = Release|Any CPU
9490
{EBD233E2-509F-4A6A-B43E-034986583AE2}.Release|Any CPU.Build.0 = Release|Any CPU
91+
{0C5F8E80-076A-4C48-900D-D5E6B0C1F34E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
92+
{0C5F8E80-076A-4C48-900D-D5E6B0C1F34E}.Debug|Any CPU.Build.0 = Debug|Any CPU
93+
{0C5F8E80-076A-4C48-900D-D5E6B0C1F34E}.Release|Any CPU.ActiveCfg = Release|Any CPU
94+
{0C5F8E80-076A-4C48-900D-D5E6B0C1F34E}.Release|Any CPU.Build.0 = Release|Any CPU
9595
EndGlobalSection
9696
GlobalSection(SolutionProperties) = preSolution
9797
HideSolutionNode = FALSE
9898
EndGlobalSection
9999
GlobalSection(NestedProjects) = preSolution
100100
{20052ECB-4E1D-4F2F-9F06-79111FE381F8} = {01383730-F2FD-4900-B91C-4784EDA64DF6}
101-
{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B} = {E1966F97-64AF-4CA1-9CDB-DA841C9491B9}
102101
{6886BD35-1655-456B-A4C2-6B57BD557254} = {E1966F97-64AF-4CA1-9CDB-DA841C9491B9}
103102
{458ED4A8-E0F2-4089-94CB-20B0EFDD4B46} = {3B08858C-6FD1-47E7-824C-0B3F1D234455}
104103
{7D0BA0FB-FA51-4964-9E41-7D03BFF47A94} = {3B08858C-6FD1-47E7-824C-0B3F1D234455}
@@ -107,6 +106,7 @@ Global
107106
{5F633149-4C66-4D34-98AB-28EE4662B442} = {E1966F97-64AF-4CA1-9CDB-DA841C9491B9}
108107
{3AC5C65A-6F68-479C-A078-3D2E573111BB} = {3B08858C-6FD1-47E7-824C-0B3F1D234455}
109108
{EBD233E2-509F-4A6A-B43E-034986583AE2} = {3B08858C-6FD1-47E7-824C-0B3F1D234455}
109+
{0C5F8E80-076A-4C48-900D-D5E6B0C1F34E} = {E1966F97-64AF-4CA1-9CDB-DA841C9491B9}
110110
EndGlobalSection
111111
GlobalSection(ExtensibilityGlobals) = postSolution
112112
SolutionGuid = {1292F67E-01C7-4886-997A-51E54049301C}

Diff for: Tests.AccessorTests/Tests.AccessorTests.csproj

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\NUnit.3.10.1\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.10.1\build\NUnit.props')" />
3+
<Import Project="..\packages\NUnit3TestAdapter.3.12.0\build\net35\NUnit3TestAdapter.props" Condition="Exists('..\packages\NUnit3TestAdapter.3.12.0\build\net35\NUnit3TestAdapter.props')" />
4+
<Import Project="..\packages\NUnit.3.11.0\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.11.0\build\NUnit.props')" />
45
<Import Project="..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props')" />
56
<PropertyGroup>
67
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -54,8 +55,8 @@
5455
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
5556
<HintPath>..\packages\MSTest.TestFramework.1.2.0\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
5657
</Reference>
57-
<Reference Include="nunit.framework, Version=3.10.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
58-
<HintPath>..\packages\NUnit.3.10.1\lib\net45\nunit.framework.dll</HintPath>
58+
<Reference Include="nunit.framework, Version=3.11.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
59+
<HintPath>..\packages\NUnit.3.11.0\lib\net45\nunit.framework.dll</HintPath>
5960
</Reference>
6061
<Reference Include="System" />
6162
<Reference Include="System.ComponentModel.DataAnnotations" />
@@ -84,7 +85,7 @@
8485
<Name>Shared.DatabaseContext</Name>
8586
</ProjectReference>
8687
<ProjectReference Include="..\Shared.DataContracts\Shared.DataContracts.csproj">
87-
<Project>{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}</Project>
88+
<Project>{0c5f8e80-076a-4c48-900d-d5e6b0c1f34e}</Project>
8889
<Name>Shared.DataContracts</Name>
8990
</ProjectReference>
9091
<ProjectReference Include="..\Test.NUnitExtensions\Test.NUnitExtensions.csproj">
@@ -108,7 +109,8 @@
108109
</PropertyGroup>
109110
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props'))" />
110111
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets'))" />
111-
<Error Condition="!Exists('..\packages\NUnit.3.10.1\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.10.1\build\NUnit.props'))" />
112+
<Error Condition="!Exists('..\packages\NUnit.3.11.0\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.11.0\build\NUnit.props'))" />
113+
<Error Condition="!Exists('..\packages\NUnit3TestAdapter.3.12.0\build\net35\NUnit3TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit3TestAdapter.3.12.0\build\net35\NUnit3TestAdapter.props'))" />
112114
</Target>
113115
<Import Project="..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets" Condition="Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets')" />
114116
</Project>

Diff for: Tests.AccessorTests/packages.config

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
<package id="JustMock" version="2018.1.117.2" targetFramework="net461" />
66
<package id="MSTest.TestAdapter" version="1.2.0" targetFramework="net461" />
77
<package id="MSTest.TestFramework" version="1.2.0" targetFramework="net461" />
8-
<package id="NUnit" version="3.10.1" targetFramework="net461" />
8+
<package id="NUnit" version="3.11.0" targetFramework="net461" />
9+
<package id="NUnit3TestAdapter" version="3.12.0" targetFramework="net461" />
910
</packages>

Diff for: Tests.DataPrep/Tests.DataPrep.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<Name>Shared.DatabaseContext</Name>
7373
</ProjectReference>
7474
<ProjectReference Include="..\Shared.DataContracts\Shared.DataContracts.csproj">
75-
<Project>{49F40A81-DBBC-4904-96E3-E5EF1F7D2A7B}</Project>
75+
<Project>{0c5f8e80-076a-4c48-900d-d5e6b0c1f34e}</Project>
7676
<Name>Shared.DataContracts</Name>
7777
</ProjectReference>
7878
</ItemGroup>

Diff for: Tests.ManagerTests/Tests.ManagerTests.csproj

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\NUnit.3.10.1\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.10.1\build\NUnit.props')" />
4-
<Import Project="..\packages\NUnit3TestAdapter.3.10.0\build\net35\NUnit3TestAdapter.props" Condition="Exists('..\packages\NUnit3TestAdapter.3.10.0\build\net35\NUnit3TestAdapter.props')" />
3+
<Import Project="..\packages\NUnit3TestAdapter.3.12.0\build\net35\NUnit3TestAdapter.props" Condition="Exists('..\packages\NUnit3TestAdapter.3.12.0\build\net35\NUnit3TestAdapter.props')" />
4+
<Import Project="..\packages\NUnit.3.11.0\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.11.0\build\NUnit.props')" />
55
<Import Project="..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props')" />
66
<PropertyGroup>
77
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -58,8 +58,8 @@
5858
<Reference Include="Ninject, Version=3.3.4.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7, processorArchitecture=MSIL">
5959
<HintPath>..\packages\Ninject.3.3.4\lib\net45\Ninject.dll</HintPath>
6060
</Reference>
61-
<Reference Include="nunit.framework, Version=3.10.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
62-
<HintPath>..\packages\NUnit.3.10.1\lib\net45\nunit.framework.dll</HintPath>
61+
<Reference Include="nunit.framework, Version=3.11.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
62+
<HintPath>..\packages\NUnit.3.11.0\lib\net45\nunit.framework.dll</HintPath>
6363
</Reference>
6464
<Reference Include="System" />
6565
<Reference Include="System.ComponentModel.DataAnnotations" />
@@ -95,7 +95,7 @@
9595
<Name>Shared.DatabaseContext</Name>
9696
</ProjectReference>
9797
<ProjectReference Include="..\Shared.DataContracts\Shared.DataContracts.csproj">
98-
<Project>{49f40a81-dbbc-4904-96e3-e5ef1f7d2a7b}</Project>
98+
<Project>{0c5f8e80-076a-4c48-900d-d5e6b0c1f34e}</Project>
9999
<Name>Shared.DataContracts</Name>
100100
</ProjectReference>
101101
<ProjectReference Include="..\Shared.DependencyInjectionKernel\Shared.DependencyInjectionKernel.csproj">
@@ -123,8 +123,8 @@
123123
</PropertyGroup>
124124
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.props'))" />
125125
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets'))" />
126-
<Error Condition="!Exists('..\packages\NUnit3TestAdapter.3.10.0\build\net35\NUnit3TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit3TestAdapter.3.10.0\build\net35\NUnit3TestAdapter.props'))" />
127-
<Error Condition="!Exists('..\packages\NUnit.3.10.1\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.10.1\build\NUnit.props'))" />
126+
<Error Condition="!Exists('..\packages\NUnit.3.11.0\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.11.0\build\NUnit.props'))" />
127+
<Error Condition="!Exists('..\packages\NUnit3TestAdapter.3.12.0\build\net35\NUnit3TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit3TestAdapter.3.12.0\build\net35\NUnit3TestAdapter.props'))" />
128128
</Target>
129129
<Import Project="..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets" Condition="Exists('..\packages\MSTest.TestAdapter.1.2.0\build\net45\MSTest.TestAdapter.targets')" />
130130
</Project>

Diff for: Tests.ManagerTests/packages.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<package id="MSTest.TestAdapter" version="1.2.0" targetFramework="net461" />
77
<package id="MSTest.TestFramework" version="1.2.0" targetFramework="net461" />
88
<package id="Ninject" version="3.3.4" targetFramework="net461" />
9-
<package id="NUnit" version="3.10.1" targetFramework="net461" />
10-
<package id="NUnit3TestAdapter" version="3.10.0" targetFramework="net461" />
9+
<package id="NUnit" version="3.11.0" targetFramework="net461" />
10+
<package id="NUnit3TestAdapter" version="3.12.0" targetFramework="net461" />
1111
</packages>

0 commit comments

Comments
 (0)