Fixing references
This commit is contained in:
Родитель
fe8638de09
Коммит
9f7d307c50
12
package.sln
12
package.sln
|
@ -7,10 +7,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unity.Container", "src\Unit
|
|||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unity.Container.Tests", "tests\Unit\Unity.Container.Tests.csproj", "{659027EF-4495-449B-87F6-943FF958161E}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unity.Container.Benchmarks", "tests\Benchmarks\Unity.Container.Benchmarks.csproj", "{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Benchmarks.Local", "benchmarks\Benchmarks.Local.csproj", "{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Unity.Container.Tests.Benchmarks", "tests\Benchmarks\Unity.Container.Tests.Benchmarks.csproj", "{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
|
@ -25,14 +25,14 @@ Global
|
|||
{659027EF-4495-449B-87F6-943FF958161E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{659027EF-4495-449B-87F6-943FF958161E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{659027EF-4495-449B-87F6-943FF958161E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{439FAC1C-9784-45E6-B6EA-A9EBDEA8A52B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{CFA426F6-6084-4F4A-9D85-A7DB1C93D025}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{B268CD1C-1DE4-40C9-9F80-5D6E530CFD5A}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
|
@ -4,7 +4,7 @@ using Unity.Lifetime;
|
|||
|
||||
namespace Container.Scope
|
||||
{
|
||||
public partial class ScopeTests
|
||||
public abstract partial class ScopeTests
|
||||
{
|
||||
[TestMethod, TestProperty(TESTING_IUC, TRAIT_ADD)]
|
||||
public void RegisterType()
|
||||
|
|
|
@ -3,7 +3,7 @@ using Unity;
|
|||
|
||||
namespace Container.Scope
|
||||
{
|
||||
public partial class ScopeTests
|
||||
public abstract partial class ScopeTests
|
||||
{
|
||||
[TestMethod, TestProperty(TESTING_SPAN, TRAIT_CONTAINS)]
|
||||
public void ContainsEmptyTest()
|
||||
|
|
|
@ -5,7 +5,7 @@ using Unity;
|
|||
|
||||
namespace Container.Scope
|
||||
{
|
||||
public partial class ScopeTests
|
||||
public abstract partial class ScopeTests
|
||||
{
|
||||
[TestMethod, TestProperty(TESTING_SPAN, TRAIT_GET)]
|
||||
public void GetEmptyTest()
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
using BenchmarkDotNet.Attributes;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
|
@ -10,7 +8,7 @@ using static Unity.Storage.Scope;
|
|||
|
||||
namespace Container.Scope
|
||||
{
|
||||
public partial class ScopeTests
|
||||
public abstract partial class ScopeTests
|
||||
{
|
||||
#region Constants
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче