From 22fddfd56d2422609e5fdf0ca8b6f608c36e881c Mon Sep 17 00:00:00 2001 From: Prafull Bhosale Date: Tue, 15 Nov 2016 11:09:23 -0800 Subject: [PATCH] Migrate projects to MsBuild Remove *.Sources packages from NuGet package list --- .gitignore | 4 +- NuGetPackageVerifier.json | 3 - Scaffolding.sln | 658 +++++++++++++----- build.ps1 | 2 +- build/common.props | 43 ++ global.json | 3 - makefile.shade | 60 -- ...ns.ProjectModel.Abstractions.Sources.xproj | 19 - .../project.json | 7 - ...tensions.ProjectModel.DotNet.Sources.xproj | 19 - .../project.json | 7 - ...ensions.ProjectModel.MsBuild.Sources.xproj | 19 - .../project.json | 7 - .../DefaultCodeGeneratorAssemblyProvider.cs | 3 +- ...isualStudio.Web.CodeGeneration.Core.csproj | 77 ++ ...VisualStudio.Web.CodeGeneration.Core.xproj | 17 - .../project.json | 39 -- ...ualStudio.Web.CodeGeneration.Design.csproj | 77 ++ ...sualStudio.Web.CodeGeneration.Design.xproj | 21 - ....CodeGeneration.EntityFrameworkCore.csproj | 81 +++ ...b.CodeGeneration.EntityFrameworkCore.xproj | 17 - .../project.json | 43 -- ...ualStudio.Web.CodeGeneration.MSBuild.xproj | 21 - ...alStudio.Web.CodeGeneration.Msbuild.csproj | 71 ++ ...tudio.Web.CodeGeneration.Templating.csproj | 62 ++ ...Studio.Web.CodeGeneration.Templating.xproj | 17 - .../project.json | 36 - ...sualStudio.Web.CodeGeneration.Tools.csproj | 98 +++ ...isualStudio.Web.CodeGeneration.Tools.xproj | 17 - ...sualStudio.Web.CodeGeneration.Utils.csproj | 85 +++ ...isualStudio.Web.CodeGeneration.Utils.xproj | 17 - .../project.json | 55 -- ...oft.VisualStudio.Web.CodeGeneration.csproj | 71 ++ ...soft.VisualStudio.Web.CodeGeneration.xproj | 17 - .../project.json | 34 - ...VisualStudio.Web.CodeGenerators.Mvc.csproj | 72 ++ ....VisualStudio.Web.CodeGenerators.Mvc.xproj | 17 - .../project.json | 39 -- test/E2E_Test/E2E_Test.csproj | 61 ++ test/E2E_Test/E2E_Test.xproj | 22 - ...osoft.Extensions.ProjectModel.Tests.csproj | 72 ++ ...rosoft.Extensions.ProjectModel.Tests.xproj | 21 - ....CodeGeneration.Core.FunctionalTest.csproj | 80 +++ ...b.CodeGeneration.Core.FunctionalTest.xproj | 17 - .../project.json | 24 - ...Studio.Web.CodeGeneration.Core.Test.csproj | 65 ++ ...lStudio.Web.CodeGeneration.Core.Test.xproj | 20 - .../project.json | 28 - .../EntityFrameworkServicesTests.cs | 1 + ...Generation.EntityFrameworkCore.Test.csproj | 91 +++ ...eGeneration.EntityFrameworkCore.Test.xproj | 17 - ...dio.Web.CodeGeneration.MSBuild.Test.csproj | 58 ++ ...udio.Web.CodeGeneration.MSBuild.Test.xproj | 21 - .../project.json | 32 - ...dio.Web.CodeGeneration.Sources.Test.csproj | 74 ++ ...udio.Web.CodeGeneration.Sources.Test.xproj | 17 - ....Web.CodeGeneration.Templating.Test.csproj | 61 ++ ...o.Web.CodeGeneration.Templating.Test.xproj | 20 - .../project.json | 23 - ...dio.Web.CodeGeneration.Test.Sources.csproj | 50 ++ ...udio.Web.CodeGeneration.Test.Sources.xproj | 17 - .../project.json | 14 - ...tudio.Web.CodeGeneration.Tools.Test.csproj | 58 ++ ...Studio.Web.CodeGeneration.Tools.Test.xproj | 21 - .../project.json | 25 - ...lStudio.Web.CodeGenerators.Mvc.Test.csproj | 70 ++ ...alStudio.Web.CodeGenerators.Mvc.Test.xproj | 20 - .../project.json | 23 - test/Shared/MsBuildProjectSetupHelper.cs | 4 +- .../ClassLibrary1/ClassLibrary1.csproj | 38 + .../ClassLibrary1/ClassLibrary1.xproj | 21 - test/TestApps/ClassLibrary1/project.json | 12 - .../ClassLibrary2/ClassLibrary2.csproj | 37 + .../ClassLibrary2/ClassLibrary2.xproj | 21 - test/TestApps/ClassLibrary2/project.json | 12 - .../ModelTypesLocatorTestClassLibrary.csproj | 60 ++ .../ModelTypesLocatorTestClassLibrary.xproj | 17 - .../project.json | 21 - .../ModelTypesLocatorTestWebApp.csproj | 74 ++ .../ModelTypesLocatorTestWebApp.xproj | 17 - .../ModelTypesLocatorTestWebApp/project.json | 17 - 81 files changed, 2178 insertions(+), 1251 deletions(-) create mode 100644 build/common.props delete mode 100644 global.json delete mode 100644 src/Microsoft.Extensions.ProjectModel.Abstractions.Sources/Microsoft.Extensions.ProjectModel.Abstractions.Sources.xproj delete mode 100644 src/Microsoft.Extensions.ProjectModel.Abstractions.Sources/project.json delete mode 100644 src/Microsoft.Extensions.ProjectModel.DotNet.Sources/Microsoft.Extensions.ProjectModel.DotNet.Sources.xproj delete mode 100644 src/Microsoft.Extensions.ProjectModel.DotNet.Sources/project.json delete mode 100644 src/Microsoft.Extensions.ProjectModel.MsBuild.Sources/Microsoft.Extensions.ProjectModel.MsBuild.Sources.xproj delete mode 100644 src/Microsoft.Extensions.ProjectModel.MsBuild.Sources/project.json create mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Core/Microsoft.VisualStudio.Web.CodeGeneration.Core.csproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Core/Microsoft.VisualStudio.Web.CodeGeneration.Core.xproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Core/project.json create mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Design/Microsoft.VisualStudio.Web.CodeGeneration.Design.csproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Design/Microsoft.VisualStudio.Web.CodeGeneration.Design.xproj create mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.csproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/project.json delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.xproj create mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild.csproj create mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/Microsoft.VisualStudio.Web.CodeGeneration.Templating.csproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/project.json create mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Tools/Microsoft.VisualStudio.Web.CodeGeneration.Tools.csproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Tools/Microsoft.VisualStudio.Web.CodeGeneration.Tools.xproj create mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/Microsoft.VisualStudio.Web.CodeGeneration.Utils.csproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/project.json create mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration/Microsoft.VisualStudio.Web.CodeGeneration.csproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration/Microsoft.VisualStudio.Web.CodeGeneration.xproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGeneration/project.json create mode 100644 src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.csproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xproj delete mode 100644 src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/project.json create mode 100644 test/E2E_Test/E2E_Test.csproj delete mode 100644 test/E2E_Test/E2E_Test.xproj create mode 100644 test/Microsoft.Extensions.ProjectModel.Tests/Microsoft.Extensions.ProjectModel.Tests.csproj delete mode 100644 test/Microsoft.Extensions.ProjectModel.Tests/Microsoft.Extensions.ProjectModel.Tests.xproj create mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.csproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.xproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/project.json create mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.csproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.xproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/project.json create mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.csproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.xproj create mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test.csproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test.xproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/project.json create mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.csproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.xproj create mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.csproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.xproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/project.json create mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.csproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.xproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/project.json create mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.csproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.xproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/project.json create mode 100644 test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.csproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.xproj delete mode 100644 test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/project.json create mode 100644 test/TestApps/ClassLibrary1/ClassLibrary1.csproj delete mode 100644 test/TestApps/ClassLibrary1/ClassLibrary1.xproj delete mode 100644 test/TestApps/ClassLibrary1/project.json create mode 100644 test/TestApps/ClassLibrary2/ClassLibrary2.csproj delete mode 100644 test/TestApps/ClassLibrary2/ClassLibrary2.xproj delete mode 100644 test/TestApps/ClassLibrary2/project.json create mode 100644 test/TestApps/ModelTypesLocatorTestClassLibrary/ModelTypesLocatorTestClassLibrary.csproj delete mode 100644 test/TestApps/ModelTypesLocatorTestClassLibrary/ModelTypesLocatorTestClassLibrary.xproj delete mode 100644 test/TestApps/ModelTypesLocatorTestClassLibrary/project.json create mode 100644 test/TestApps/ModelTypesLocatorTestWebApp/ModelTypesLocatorTestWebApp.csproj delete mode 100644 test/TestApps/ModelTypesLocatorTestWebApp/ModelTypesLocatorTestWebApp.xproj delete mode 100644 test/TestApps/ModelTypesLocatorTestWebApp/project.json diff --git a/.gitignore b/.gitignore index 5e2e1898..85427b83 100644 --- a/.gitignore +++ b/.gitignore @@ -33,4 +33,6 @@ project.fragment.lock.json **/bower_components/* **/*.nuget.props **/*.nuget.targets -.vscode/** \ No newline at end of file +.vscode/** +backup/**/*.* +.dotnet/** \ No newline at end of file diff --git a/NuGetPackageVerifier.json b/NuGetPackageVerifier.json index 18a346c3..ebf5d432 100644 --- a/NuGetPackageVerifier.json +++ b/NuGetPackageVerifier.json @@ -19,9 +19,6 @@ "adx-nonshipping": { "rules": [], "packages": { - "Microsoft.Extensions.ProjectModel.Abstractions.Sources": {}, - "Microsoft.Extensions.ProjectModel.DotNet.Sources": {}, - "Microsoft.Extensions.ProjectModel.MsBuild.Sources": {}, "Microsoft.VisualStudio.Web.CodeGeneration.Msbuild": {} } }, diff --git a/Scaffolding.sln b/Scaffolding.sln index 80ebda6a..1553ef1e 100644 --- a/Scaffolding.sln +++ b/Scaffolding.sln @@ -1,228 +1,536 @@ + Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 +# Visual Studio 15 +VisualStudioVersion = 15.0.25914.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{B6CF7723-2947-411F-9AF1-35C09FAE514E}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{A4057ACF-27F0-4724-963B-44548B6BC4E9}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{24331273-18CC-41BD-BB15-8FEC9CD42FBE}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{81B64EBF-613D-43AE-82DA-B375FB751921}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TestApps", "TestApps", "{95C6F0B4-1687-4C36-90BF-1362CAB06524}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{98547032-3A5C-4368-8168-D48DB6E9B30F}" ProjectSection(SolutionItems) = preProject .gitattributes = .gitattributes .gitignore = .gitignore + .travis.yml = .travis.yml + appveyor.yml = appveyor.yml + backup_build.ps1 = backup_build.ps1 build.cmd = build.cmd build.ps1 = build.ps1 build.sh = build.sh - global.json = global.json + CONTRIBUTING.md = CONTRIBUTING.md + dir = dir LICENSE.txt = LICENSE.txt makefile.shade = makefile.shade - NuGet.Config = NuGet.Config + NuGet.config = NuGet.config NuGetPackageVerifier.json = NuGetPackageVerifier.json README.md = README.md EndProjectSection EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{49FBAACE-59AC-4F83-90BA-7300DBA09F11}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGenerators.Mvc", "src\Microsoft.VisualStudio.Web.CodeGenerators.Mvc\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.csproj", "{3E99E653-6B31-45CF-9B3A-30EEE497BE13}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ModelTypesLocatorTestWebApp", "test\TestApps\ModelTypesLocatorTestWebApp\ModelTypesLocatorTestWebApp.xproj", "{3BFF833B-6E1B-4A0A-85E3-545DE528B66D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Utils", "src\Microsoft.VisualStudio.Web.CodeGeneration.Utils\Microsoft.VisualStudio.Web.CodeGeneration.Utils.csproj", "{121FD6A8-6A7C-405A-B223-D3991D07D6E4}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TestApps", "TestApps", "{40F75CAB-26AB-4BC4-8DC3-B401046EA5FC}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Tools", "src\Microsoft.VisualStudio.Web.CodeGeneration.Tools\Microsoft.VisualStudio.Web.CodeGeneration.Tools.csproj", "{FBBAA490-5752-41E0-A7ED-9B96F06B661E}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ModelTypesLocatorTestClassLibrary", "test\TestApps\ModelTypesLocatorTestClassLibrary\ModelTypesLocatorTestClassLibrary.xproj", "{F6C4B32C-5F1A-4381-A763-E171F713732B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Templating", "src\Microsoft.VisualStudio.Web.CodeGeneration.Templating\Microsoft.VisualStudio.Web.CodeGeneration.Templating.csproj", "{5041A3DC-CBBF-4615-99B1-781B641BCC01}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration", "src\Microsoft.VisualStudio.Web.CodeGeneration\Microsoft.VisualStudio.Web.CodeGeneration.xproj", "{B31513FF-7F8D-461F-9C93-F7CEBD49FD22}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Msbuild", "src\Microsoft.VisualStudio.Web.CodeGeneration.Msbuild\Microsoft.VisualStudio.Web.CodeGeneration.Msbuild.csproj", "{4524AF86-DEEC-48DF-B613-EDCF1212047B}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Core", "src\Microsoft.VisualStudio.Web.CodeGeneration.Core\Microsoft.VisualStudio.Web.CodeGeneration.Core.xproj", "{EAA718C1-C5E6-45FE-B3FE-403150A40B47}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore", "src\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.csproj", "{D798406A-9D72-434E-82FF-38AA0D946AE9}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore", "src\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xproj", "{5295FF9C-BBDA-469E-AECE-44DE1926097A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Design", "src\Microsoft.VisualStudio.Web.CodeGeneration.Design\Microsoft.VisualStudio.Web.CodeGeneration.Design.csproj", "{AF3DE3DB-6FCD-459B-A413-70229C5AA34F}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Tools", "src\Microsoft.VisualStudio.Web.CodeGeneration.Tools\Microsoft.VisualStudio.Web.CodeGeneration.Tools.xproj", "{12C10326-9E12-4F61-BE38-5D90DFAE109C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Core", "src\Microsoft.VisualStudio.Web.CodeGeneration.Core\Microsoft.VisualStudio.Web.CodeGeneration.Core.csproj", "{E44DFA05-387E-44A9-8F5D-89EA9AAED43F}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Utils", "src\Microsoft.VisualStudio.Web.CodeGeneration.Utils\Microsoft.VisualStudio.Web.CodeGeneration.Utils.xproj", "{FA1A34BD-C317-4A03-85F5-FF8A4984D36E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration", "src\Microsoft.VisualStudio.Web.CodeGeneration\Microsoft.VisualStudio.Web.CodeGeneration.csproj", "{98D140A5-7719-4B03-B696-C5294B3CAD64}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGenerators.Mvc", "src\Microsoft.VisualStudio.Web.CodeGenerators.Mvc\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xproj", "{979BFC55-C778-4BEB-B667-AA43CCD07242}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "E2E_Test", "test\E2E_Test\E2E_Test.csproj", "{976D7EFB-E15E-49A0-A420-47246A294320}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest", "test\Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest\Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.xproj", "{41E8E777-9599-4895-A4AB-12D0ECFC4BBB}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.ProjectModel.Tests", "test\Microsoft.Extensions.ProjectModel.Tests\Microsoft.Extensions.ProjectModel.Tests.csproj", "{AA84CF7B-0C63-4909-9371-C2B85D304A68}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Core.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.Core.Test\Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.xproj", "{58804623-EE96-4640-845F-F7416D5287F9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest", "test\Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest\Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.csproj", "{0037B7ED-05D3-44BF-848D-475BE6E25042}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.xproj", "{C3CB8633-EFAA-43E1-BAB0-9495DFFFD16B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Core.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.Core.Test\Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.csproj", "{B1E6D126-898E-4FBF-9239-DF8A83D59F6E}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test\Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.xproj", "{5025C1A4-BD5A-4A14-ACD3-90360EF4B094}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.csproj", "{AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test\Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.xproj", "{7BC55530-323E-48D7-9546-5D95DF57269D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test\Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.csproj", "{47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test", "test\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.xproj", "{1F17DCC9-E56F-4008-8337-FEB6A6819A1F}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test\Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.csproj", "{0E2E48BA-005C-4E7B-992C-B476A3386186}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Templating", "src\Microsoft.VisualStudio.Web.CodeGeneration.Templating\Microsoft.VisualStudio.Web.CodeGeneration.Templating.xproj", "{ACC58820-0386-4058-BDDC-CA35CDC47DEE}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources", "test\Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources\Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.csproj", "{F99040AB-7CE4-4081-BB81-233EFC300FED}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources", "test\Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources\Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.xproj", "{79BCB118-B2AE-43E2-BABA-C0DD49C17269}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test\Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.csproj", "{53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ClassLibrary1", "test\TestApps\ClassLibrary1\ClassLibrary1.xproj", "{83BC53A8-D8AD-462C-891E-BAC8059DCF6B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test", "test\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.csproj", "{960602CF-A019-4C6B-ABD3-1C08C70A0005}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "WebApplication1", "test\TestApps\WebApplication1\WebApplication1.xproj", "{799C8C09-91AD-48C3-AC74-69B02BBA2652}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ModelTypesLocatorTestWebApp", "test\TestApps\ModelTypesLocatorTestWebApp\ModelTypesLocatorTestWebApp.csproj", "{61EDA55A-5CB5-4C73-882D-D496D9623CD1}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "E2E_Test", "test\E2E_Test\E2E_Test.xproj", "{CB156C62-CC9A-4C8A-991E-46B1BBF86CF8}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ModelTypesLocatorTestClassLibrary", "test\TestApps\ModelTypesLocatorTestClassLibrary\ModelTypesLocatorTestClassLibrary.csproj", "{DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Design", "src\Microsoft.VisualStudio.Web.CodeGeneration.Design\Microsoft.VisualStudio.Web.CodeGeneration.Design.xproj", "{0A36ED98-2026-40AF-BAFD-D8916A5C4D74}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClassLibrary2", "test\TestApps\ClassLibrary2\ClassLibrary2.csproj", "{F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test\Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.xproj", "{E77FD1D0-6D18-4236-AAB7-FB68934E78A6}" -EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.ProjectModel.Tests", "test\Microsoft.Extensions.ProjectModel.Tests\Microsoft.Extensions.ProjectModel.Tests.xproj", "{1A66A831-4F06-46D9-B483-70A4E75A2F7F}" -EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.ProjectModel.Abstractions.Sources", "src\Microsoft.Extensions.ProjectModel.Abstractions.Sources\Microsoft.Extensions.ProjectModel.Abstractions.Sources.xproj", "{8A97D718-0681-43C5-A70B-535DBBDF4FA1}" -EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.ProjectModel.DotNet.Sources", "src\Microsoft.Extensions.ProjectModel.DotNet.Sources\Microsoft.Extensions.ProjectModel.DotNet.Sources.xproj", "{1F643A36-A1FC-4502-9D03-75837F20E1A4}" -EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions.ProjectModel.MsBuild.Sources", "src\Microsoft.Extensions.ProjectModel.MsBuild.Sources\Microsoft.Extensions.ProjectModel.MsBuild.Sources.xproj", "{7362AE32-7753-4E7C-86D0-DCA86AF413FA}" -EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.MSBuild", "src\Microsoft.VisualStudio.Web.CodeGeneration.Msbuild\Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.xproj", "{84D9AF9F-1AA5-4041-A983-33F28A075395}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClassLibrary1", "test\TestApps\ClassLibrary1\ClassLibrary1.csproj", "{1DD609A3-870C-4C1C-AB41-32ACBF292C16}" EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test", "test\Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test\Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test.xproj", "{7F54C4EB-A1DF-4873-958E-D2B0378AE209}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_x86|Any CPU = debug_x86|Any CPU + debug_x86|x64 = debug_x86|x64 + debug_x86|x86 = debug_x86|x86 Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3BFF833B-6E1B-4A0A-85E3-545DE528B66D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3BFF833B-6E1B-4A0A-85E3-545DE528B66D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3BFF833B-6E1B-4A0A-85E3-545DE528B66D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3BFF833B-6E1B-4A0A-85E3-545DE528B66D}.Release|Any CPU.Build.0 = Release|Any CPU - {F6C4B32C-5F1A-4381-A763-E171F713732B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F6C4B32C-5F1A-4381-A763-E171F713732B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F6C4B32C-5F1A-4381-A763-E171F713732B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F6C4B32C-5F1A-4381-A763-E171F713732B}.Release|Any CPU.Build.0 = Release|Any CPU - {B31513FF-7F8D-461F-9C93-F7CEBD49FD22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B31513FF-7F8D-461F-9C93-F7CEBD49FD22}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B31513FF-7F8D-461F-9C93-F7CEBD49FD22}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B31513FF-7F8D-461F-9C93-F7CEBD49FD22}.Release|Any CPU.Build.0 = Release|Any CPU - {EAA718C1-C5E6-45FE-B3FE-403150A40B47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EAA718C1-C5E6-45FE-B3FE-403150A40B47}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EAA718C1-C5E6-45FE-B3FE-403150A40B47}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EAA718C1-C5E6-45FE-B3FE-403150A40B47}.Release|Any CPU.Build.0 = Release|Any CPU - {5295FF9C-BBDA-469E-AECE-44DE1926097A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5295FF9C-BBDA-469E-AECE-44DE1926097A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5295FF9C-BBDA-469E-AECE-44DE1926097A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5295FF9C-BBDA-469E-AECE-44DE1926097A}.Release|Any CPU.Build.0 = Release|Any CPU - {12C10326-9E12-4F61-BE38-5D90DFAE109C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {12C10326-9E12-4F61-BE38-5D90DFAE109C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {12C10326-9E12-4F61-BE38-5D90DFAE109C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {12C10326-9E12-4F61-BE38-5D90DFAE109C}.Release|Any CPU.Build.0 = Release|Any CPU - {FA1A34BD-C317-4A03-85F5-FF8A4984D36E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FA1A34BD-C317-4A03-85F5-FF8A4984D36E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FA1A34BD-C317-4A03-85F5-FF8A4984D36E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FA1A34BD-C317-4A03-85F5-FF8A4984D36E}.Release|Any CPU.Build.0 = Release|Any CPU - {979BFC55-C778-4BEB-B667-AA43CCD07242}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {979BFC55-C778-4BEB-B667-AA43CCD07242}.Debug|Any CPU.Build.0 = Debug|Any CPU - {979BFC55-C778-4BEB-B667-AA43CCD07242}.Release|Any CPU.ActiveCfg = Release|Any CPU - {979BFC55-C778-4BEB-B667-AA43CCD07242}.Release|Any CPU.Build.0 = Release|Any CPU - {41E8E777-9599-4895-A4AB-12D0ECFC4BBB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {41E8E777-9599-4895-A4AB-12D0ECFC4BBB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {41E8E777-9599-4895-A4AB-12D0ECFC4BBB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {41E8E777-9599-4895-A4AB-12D0ECFC4BBB}.Release|Any CPU.Build.0 = Release|Any CPU - {58804623-EE96-4640-845F-F7416D5287F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {58804623-EE96-4640-845F-F7416D5287F9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {58804623-EE96-4640-845F-F7416D5287F9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {58804623-EE96-4640-845F-F7416D5287F9}.Release|Any CPU.Build.0 = Release|Any CPU - {C3CB8633-EFAA-43E1-BAB0-9495DFFFD16B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C3CB8633-EFAA-43E1-BAB0-9495DFFFD16B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C3CB8633-EFAA-43E1-BAB0-9495DFFFD16B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C3CB8633-EFAA-43E1-BAB0-9495DFFFD16B}.Release|Any CPU.Build.0 = Release|Any CPU - {5025C1A4-BD5A-4A14-ACD3-90360EF4B094}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5025C1A4-BD5A-4A14-ACD3-90360EF4B094}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5025C1A4-BD5A-4A14-ACD3-90360EF4B094}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5025C1A4-BD5A-4A14-ACD3-90360EF4B094}.Release|Any CPU.Build.0 = Release|Any CPU - {7BC55530-323E-48D7-9546-5D95DF57269D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7BC55530-323E-48D7-9546-5D95DF57269D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7BC55530-323E-48D7-9546-5D95DF57269D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7BC55530-323E-48D7-9546-5D95DF57269D}.Release|Any CPU.Build.0 = Release|Any CPU - {1F17DCC9-E56F-4008-8337-FEB6A6819A1F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1F17DCC9-E56F-4008-8337-FEB6A6819A1F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1F17DCC9-E56F-4008-8337-FEB6A6819A1F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1F17DCC9-E56F-4008-8337-FEB6A6819A1F}.Release|Any CPU.Build.0 = Release|Any CPU - {ACC58820-0386-4058-BDDC-CA35CDC47DEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ACC58820-0386-4058-BDDC-CA35CDC47DEE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ACC58820-0386-4058-BDDC-CA35CDC47DEE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ACC58820-0386-4058-BDDC-CA35CDC47DEE}.Release|Any CPU.Build.0 = Release|Any CPU - {79BCB118-B2AE-43E2-BABA-C0DD49C17269}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {79BCB118-B2AE-43E2-BABA-C0DD49C17269}.Debug|Any CPU.Build.0 = Debug|Any CPU - {79BCB118-B2AE-43E2-BABA-C0DD49C17269}.Release|Any CPU.ActiveCfg = Release|Any CPU - {79BCB118-B2AE-43E2-BABA-C0DD49C17269}.Release|Any CPU.Build.0 = Release|Any CPU - {83BC53A8-D8AD-462C-891E-BAC8059DCF6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {83BC53A8-D8AD-462C-891E-BAC8059DCF6B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {83BC53A8-D8AD-462C-891E-BAC8059DCF6B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {83BC53A8-D8AD-462C-891E-BAC8059DCF6B}.Release|Any CPU.Build.0 = Release|Any CPU - {799C8C09-91AD-48C3-AC74-69B02BBA2652}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {799C8C09-91AD-48C3-AC74-69B02BBA2652}.Debug|Any CPU.Build.0 = Debug|Any CPU - {799C8C09-91AD-48C3-AC74-69B02BBA2652}.Release|Any CPU.ActiveCfg = Release|Any CPU - {799C8C09-91AD-48C3-AC74-69B02BBA2652}.Release|Any CPU.Build.0 = Release|Any CPU - {CB156C62-CC9A-4C8A-991E-46B1BBF86CF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CB156C62-CC9A-4C8A-991E-46B1BBF86CF8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CB156C62-CC9A-4C8A-991E-46B1BBF86CF8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CB156C62-CC9A-4C8A-991E-46B1BBF86CF8}.Release|Any CPU.Build.0 = Release|Any CPU - {0A36ED98-2026-40AF-BAFD-D8916A5C4D74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {0A36ED98-2026-40AF-BAFD-D8916A5C4D74}.Debug|Any CPU.Build.0 = Debug|Any CPU - {0A36ED98-2026-40AF-BAFD-D8916A5C4D74}.Release|Any CPU.ActiveCfg = Release|Any CPU - {0A36ED98-2026-40AF-BAFD-D8916A5C4D74}.Release|Any CPU.Build.0 = Release|Any CPU - {E77FD1D0-6D18-4236-AAB7-FB68934E78A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E77FD1D0-6D18-4236-AAB7-FB68934E78A6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E77FD1D0-6D18-4236-AAB7-FB68934E78A6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E77FD1D0-6D18-4236-AAB7-FB68934E78A6}.Release|Any CPU.Build.0 = Release|Any CPU - {1A66A831-4F06-46D9-B483-70A4E75A2F7F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1A66A831-4F06-46D9-B483-70A4E75A2F7F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1A66A831-4F06-46D9-B483-70A4E75A2F7F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1A66A831-4F06-46D9-B483-70A4E75A2F7F}.Release|Any CPU.Build.0 = Release|Any CPU - {8A97D718-0681-43C5-A70B-535DBBDF4FA1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8A97D718-0681-43C5-A70B-535DBBDF4FA1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8A97D718-0681-43C5-A70B-535DBBDF4FA1}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8A97D718-0681-43C5-A70B-535DBBDF4FA1}.Release|Any CPU.Build.0 = Release|Any CPU - {1F643A36-A1FC-4502-9D03-75837F20E1A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {1F643A36-A1FC-4502-9D03-75837F20E1A4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {1F643A36-A1FC-4502-9D03-75837F20E1A4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {1F643A36-A1FC-4502-9D03-75837F20E1A4}.Release|Any CPU.Build.0 = Release|Any CPU - {7362AE32-7753-4E7C-86D0-DCA86AF413FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7362AE32-7753-4E7C-86D0-DCA86AF413FA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7362AE32-7753-4E7C-86D0-DCA86AF413FA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7362AE32-7753-4E7C-86D0-DCA86AF413FA}.Release|Any CPU.Build.0 = Release|Any CPU - {84D9AF9F-1AA5-4041-A983-33F28A075395}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {84D9AF9F-1AA5-4041-A983-33F28A075395}.Debug|Any CPU.Build.0 = Debug|Any CPU - {84D9AF9F-1AA5-4041-A983-33F28A075395}.Release|Any CPU.ActiveCfg = Release|Any CPU - {84D9AF9F-1AA5-4041-A983-33F28A075395}.Release|Any CPU.Build.0 = Release|Any CPU - {7F54C4EB-A1DF-4873-958E-D2B0378AE209}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7F54C4EB-A1DF-4873-958E-D2B0378AE209}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7F54C4EB-A1DF-4873-958E-D2B0378AE209}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7F54C4EB-A1DF-4873-958E-D2B0378AE209}.Release|Any CPU.Build.0 = Release|Any CPU + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.debug_x86|x64.ActiveCfg = Debug|x64 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.debug_x86|x64.Build.0 = Debug|x64 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.debug_x86|x86.ActiveCfg = Debug|x86 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.debug_x86|x86.Build.0 = Debug|x86 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Debug|x64.ActiveCfg = Debug|x64 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Debug|x64.Build.0 = Debug|x64 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Debug|x86.ActiveCfg = Debug|x86 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Debug|x86.Build.0 = Debug|x86 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Release|Any CPU.Build.0 = Release|Any CPU + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Release|x64.ActiveCfg = Release|x64 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Release|x64.Build.0 = Release|x64 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Release|x86.ActiveCfg = Release|x86 + {3E99E653-6B31-45CF-9B3A-30EEE497BE13}.Release|x86.Build.0 = Release|x86 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.debug_x86|x64.ActiveCfg = Debug|x64 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.debug_x86|x64.Build.0 = Debug|x64 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.debug_x86|x86.ActiveCfg = Debug|x86 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.debug_x86|x86.Build.0 = Debug|x86 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Debug|x64.ActiveCfg = Debug|x64 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Debug|x64.Build.0 = Debug|x64 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Debug|x86.ActiveCfg = Debug|x86 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Debug|x86.Build.0 = Debug|x86 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Release|Any CPU.Build.0 = Release|Any CPU + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Release|x64.ActiveCfg = Release|x64 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Release|x64.Build.0 = Release|x64 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Release|x86.ActiveCfg = Release|x86 + {121FD6A8-6A7C-405A-B223-D3991D07D6E4}.Release|x86.Build.0 = Release|x86 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.debug_x86|Any CPU.ActiveCfg = debug_x86|Any CPU + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.debug_x86|Any CPU.Build.0 = debug_x86|Any CPU + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.debug_x86|x64.ActiveCfg = debug_x86|x64 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.debug_x86|x64.Build.0 = debug_x86|x64 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.debug_x86|x86.ActiveCfg = debug_x86|x86 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.debug_x86|x86.Build.0 = debug_x86|x86 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Debug|x64.ActiveCfg = Debug|x64 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Debug|x64.Build.0 = Debug|x64 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Debug|x86.ActiveCfg = Debug|x86 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Debug|x86.Build.0 = Debug|x86 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Release|Any CPU.Build.0 = Release|Any CPU + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Release|x64.ActiveCfg = Release|x64 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Release|x64.Build.0 = Release|x64 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Release|x86.ActiveCfg = Release|x86 + {FBBAA490-5752-41E0-A7ED-9B96F06B661E}.Release|x86.Build.0 = Release|x86 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.debug_x86|x64.ActiveCfg = Debug|x64 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.debug_x86|x64.Build.0 = Debug|x64 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.debug_x86|x86.ActiveCfg = Debug|x86 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.debug_x86|x86.Build.0 = Debug|x86 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Debug|x64.ActiveCfg = Debug|x64 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Debug|x64.Build.0 = Debug|x64 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Debug|x86.ActiveCfg = Debug|x86 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Debug|x86.Build.0 = Debug|x86 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Release|Any CPU.Build.0 = Release|Any CPU + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Release|x64.ActiveCfg = Release|x64 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Release|x64.Build.0 = Release|x64 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Release|x86.ActiveCfg = Release|x86 + {5041A3DC-CBBF-4615-99B1-781B641BCC01}.Release|x86.Build.0 = Release|x86 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.debug_x86|x64.ActiveCfg = Debug|x64 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.debug_x86|x64.Build.0 = Debug|x64 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.debug_x86|x86.ActiveCfg = Debug|x86 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.debug_x86|x86.Build.0 = Debug|x86 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Debug|x64.ActiveCfg = Debug|x64 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Debug|x64.Build.0 = Debug|x64 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Debug|x86.ActiveCfg = Debug|x86 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Debug|x86.Build.0 = Debug|x86 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Release|Any CPU.Build.0 = Release|Any CPU + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Release|x64.ActiveCfg = Release|x64 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Release|x64.Build.0 = Release|x64 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Release|x86.ActiveCfg = Release|x86 + {4524AF86-DEEC-48DF-B613-EDCF1212047B}.Release|x86.Build.0 = Release|x86 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {D798406A-9D72-434E-82FF-38AA0D946AE9}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {D798406A-9D72-434E-82FF-38AA0D946AE9}.debug_x86|x64.ActiveCfg = Debug|x64 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.debug_x86|x64.Build.0 = Debug|x64 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.debug_x86|x86.ActiveCfg = Debug|x86 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.debug_x86|x86.Build.0 = Debug|x86 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Debug|x64.ActiveCfg = Debug|x64 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Debug|x64.Build.0 = Debug|x64 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Debug|x86.ActiveCfg = Debug|x86 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Debug|x86.Build.0 = Debug|x86 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Release|Any CPU.Build.0 = Release|Any CPU + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Release|x64.ActiveCfg = Release|x64 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Release|x64.Build.0 = Release|x64 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Release|x86.ActiveCfg = Release|x86 + {D798406A-9D72-434E-82FF-38AA0D946AE9}.Release|x86.Build.0 = Release|x86 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.debug_x86|Any CPU.ActiveCfg = debug_x86|Any CPU + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.debug_x86|Any CPU.Build.0 = debug_x86|Any CPU + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.debug_x86|x64.ActiveCfg = debug_x86|x64 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.debug_x86|x64.Build.0 = debug_x86|x64 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.debug_x86|x86.ActiveCfg = debug_x86|x86 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.debug_x86|x86.Build.0 = debug_x86|x86 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Debug|x64.ActiveCfg = Debug|x64 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Debug|x64.Build.0 = Debug|x64 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Debug|x86.ActiveCfg = Debug|x86 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Debug|x86.Build.0 = Debug|x86 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Release|Any CPU.Build.0 = Release|Any CPU + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Release|x64.ActiveCfg = Release|x64 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Release|x64.Build.0 = Release|x64 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Release|x86.ActiveCfg = Release|x86 + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F}.Release|x86.Build.0 = Release|x86 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.debug_x86|x64.ActiveCfg = Debug|x64 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.debug_x86|x64.Build.0 = Debug|x64 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.debug_x86|x86.ActiveCfg = Debug|x86 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.debug_x86|x86.Build.0 = Debug|x86 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Debug|x64.ActiveCfg = Debug|x64 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Debug|x64.Build.0 = Debug|x64 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Debug|x86.ActiveCfg = Debug|x86 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Debug|x86.Build.0 = Debug|x86 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Release|Any CPU.Build.0 = Release|Any CPU + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Release|x64.ActiveCfg = Release|x64 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Release|x64.Build.0 = Release|x64 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Release|x86.ActiveCfg = Release|x86 + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F}.Release|x86.Build.0 = Release|x86 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {98D140A5-7719-4B03-B696-C5294B3CAD64}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {98D140A5-7719-4B03-B696-C5294B3CAD64}.debug_x86|x64.ActiveCfg = Debug|x64 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.debug_x86|x64.Build.0 = Debug|x64 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.debug_x86|x86.ActiveCfg = Debug|x86 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.debug_x86|x86.Build.0 = Debug|x86 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Debug|Any CPU.Build.0 = Debug|Any CPU + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Debug|x64.ActiveCfg = Debug|x64 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Debug|x64.Build.0 = Debug|x64 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Debug|x86.ActiveCfg = Debug|x86 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Debug|x86.Build.0 = Debug|x86 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Release|Any CPU.ActiveCfg = Release|Any CPU + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Release|Any CPU.Build.0 = Release|Any CPU + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Release|x64.ActiveCfg = Release|x64 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Release|x64.Build.0 = Release|x64 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Release|x86.ActiveCfg = Release|x86 + {98D140A5-7719-4B03-B696-C5294B3CAD64}.Release|x86.Build.0 = Release|x86 + {976D7EFB-E15E-49A0-A420-47246A294320}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {976D7EFB-E15E-49A0-A420-47246A294320}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {976D7EFB-E15E-49A0-A420-47246A294320}.debug_x86|x64.ActiveCfg = Debug|x64 + {976D7EFB-E15E-49A0-A420-47246A294320}.debug_x86|x64.Build.0 = Debug|x64 + {976D7EFB-E15E-49A0-A420-47246A294320}.debug_x86|x86.ActiveCfg = Debug|x86 + {976D7EFB-E15E-49A0-A420-47246A294320}.debug_x86|x86.Build.0 = Debug|x86 + {976D7EFB-E15E-49A0-A420-47246A294320}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {976D7EFB-E15E-49A0-A420-47246A294320}.Debug|Any CPU.Build.0 = Debug|Any CPU + {976D7EFB-E15E-49A0-A420-47246A294320}.Debug|x64.ActiveCfg = Debug|x64 + {976D7EFB-E15E-49A0-A420-47246A294320}.Debug|x64.Build.0 = Debug|x64 + {976D7EFB-E15E-49A0-A420-47246A294320}.Debug|x86.ActiveCfg = Debug|x86 + {976D7EFB-E15E-49A0-A420-47246A294320}.Debug|x86.Build.0 = Debug|x86 + {976D7EFB-E15E-49A0-A420-47246A294320}.Release|Any CPU.ActiveCfg = Release|Any CPU + {976D7EFB-E15E-49A0-A420-47246A294320}.Release|Any CPU.Build.0 = Release|Any CPU + {976D7EFB-E15E-49A0-A420-47246A294320}.Release|x64.ActiveCfg = Release|x64 + {976D7EFB-E15E-49A0-A420-47246A294320}.Release|x64.Build.0 = Release|x64 + {976D7EFB-E15E-49A0-A420-47246A294320}.Release|x86.ActiveCfg = Release|x86 + {976D7EFB-E15E-49A0-A420-47246A294320}.Release|x86.Build.0 = Release|x86 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.debug_x86|x64.ActiveCfg = Debug|x64 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.debug_x86|x64.Build.0 = Debug|x64 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.debug_x86|x86.ActiveCfg = Debug|x86 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.debug_x86|x86.Build.0 = Debug|x86 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Debug|x64.ActiveCfg = Debug|x64 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Debug|x64.Build.0 = Debug|x64 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Debug|x86.ActiveCfg = Debug|x86 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Debug|x86.Build.0 = Debug|x86 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Release|Any CPU.Build.0 = Release|Any CPU + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Release|x64.ActiveCfg = Release|x64 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Release|x64.Build.0 = Release|x64 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Release|x86.ActiveCfg = Release|x86 + {AA84CF7B-0C63-4909-9371-C2B85D304A68}.Release|x86.Build.0 = Release|x86 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {0037B7ED-05D3-44BF-848D-475BE6E25042}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {0037B7ED-05D3-44BF-848D-475BE6E25042}.debug_x86|x64.ActiveCfg = Debug|x64 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.debug_x86|x64.Build.0 = Debug|x64 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.debug_x86|x86.ActiveCfg = Debug|x86 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.debug_x86|x86.Build.0 = Debug|x86 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Debug|x64.ActiveCfg = Debug|x64 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Debug|x64.Build.0 = Debug|x64 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Debug|x86.ActiveCfg = Debug|x86 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Debug|x86.Build.0 = Debug|x86 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Release|Any CPU.Build.0 = Release|Any CPU + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Release|x64.ActiveCfg = Release|x64 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Release|x64.Build.0 = Release|x64 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Release|x86.ActiveCfg = Release|x86 + {0037B7ED-05D3-44BF-848D-475BE6E25042}.Release|x86.Build.0 = Release|x86 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.debug_x86|x64.ActiveCfg = Debug|x64 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.debug_x86|x64.Build.0 = Debug|x64 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.debug_x86|x86.ActiveCfg = Debug|x86 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.debug_x86|x86.Build.0 = Debug|x86 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Debug|x64.ActiveCfg = Debug|x64 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Debug|x64.Build.0 = Debug|x64 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Debug|x86.ActiveCfg = Debug|x86 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Debug|x86.Build.0 = Debug|x86 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Release|Any CPU.Build.0 = Release|Any CPU + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Release|x64.ActiveCfg = Release|x64 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Release|x64.Build.0 = Release|x64 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Release|x86.ActiveCfg = Release|x86 + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E}.Release|x86.Build.0 = Release|x86 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.debug_x86|x64.ActiveCfg = Debug|x64 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.debug_x86|x64.Build.0 = Debug|x64 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.debug_x86|x86.ActiveCfg = Debug|x86 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.debug_x86|x86.Build.0 = Debug|x86 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Debug|x64.ActiveCfg = Debug|x64 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Debug|x64.Build.0 = Debug|x64 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Debug|x86.ActiveCfg = Debug|x86 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Debug|x86.Build.0 = Debug|x86 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Release|Any CPU.Build.0 = Release|Any CPU + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Release|x64.ActiveCfg = Release|x64 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Release|x64.Build.0 = Release|x64 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Release|x86.ActiveCfg = Release|x86 + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C}.Release|x86.Build.0 = Release|x86 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.debug_x86|x64.ActiveCfg = Debug|x64 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.debug_x86|x64.Build.0 = Debug|x64 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.debug_x86|x86.ActiveCfg = Debug|x86 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.debug_x86|x86.Build.0 = Debug|x86 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Debug|Any CPU.Build.0 = Debug|Any CPU + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Debug|x64.ActiveCfg = Debug|x64 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Debug|x64.Build.0 = Debug|x64 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Debug|x86.ActiveCfg = Debug|x86 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Debug|x86.Build.0 = Debug|x86 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Release|Any CPU.ActiveCfg = Release|Any CPU + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Release|Any CPU.Build.0 = Release|Any CPU + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Release|x64.ActiveCfg = Release|x64 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Release|x64.Build.0 = Release|x64 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Release|x86.ActiveCfg = Release|x86 + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62}.Release|x86.Build.0 = Release|x86 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {0E2E48BA-005C-4E7B-992C-B476A3386186}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {0E2E48BA-005C-4E7B-992C-B476A3386186}.debug_x86|x64.ActiveCfg = Debug|x64 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.debug_x86|x64.Build.0 = Debug|x64 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.debug_x86|x86.ActiveCfg = Debug|x86 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.debug_x86|x86.Build.0 = Debug|x86 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Debug|x64.ActiveCfg = Debug|x64 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Debug|x64.Build.0 = Debug|x64 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Debug|x86.ActiveCfg = Debug|x86 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Debug|x86.Build.0 = Debug|x86 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Release|Any CPU.Build.0 = Release|Any CPU + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Release|x64.ActiveCfg = Release|x64 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Release|x64.Build.0 = Release|x64 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Release|x86.ActiveCfg = Release|x86 + {0E2E48BA-005C-4E7B-992C-B476A3386186}.Release|x86.Build.0 = Release|x86 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {F99040AB-7CE4-4081-BB81-233EFC300FED}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {F99040AB-7CE4-4081-BB81-233EFC300FED}.debug_x86|x64.ActiveCfg = Debug|x64 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.debug_x86|x64.Build.0 = Debug|x64 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.debug_x86|x86.ActiveCfg = Debug|x86 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.debug_x86|x86.Build.0 = Debug|x86 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Debug|x64.ActiveCfg = Debug|x64 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Debug|x64.Build.0 = Debug|x64 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Debug|x86.ActiveCfg = Debug|x86 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Debug|x86.Build.0 = Debug|x86 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Release|Any CPU.Build.0 = Release|Any CPU + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Release|x64.ActiveCfg = Release|x64 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Release|x64.Build.0 = Release|x64 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Release|x86.ActiveCfg = Release|x86 + {F99040AB-7CE4-4081-BB81-233EFC300FED}.Release|x86.Build.0 = Release|x86 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.debug_x86|x64.ActiveCfg = Debug|x64 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.debug_x86|x64.Build.0 = Debug|x64 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.debug_x86|x86.ActiveCfg = Debug|x86 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.debug_x86|x86.Build.0 = Debug|x86 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Debug|Any CPU.Build.0 = Debug|Any CPU + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Debug|x64.ActiveCfg = Debug|x64 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Debug|x64.Build.0 = Debug|x64 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Debug|x86.ActiveCfg = Debug|x86 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Debug|x86.Build.0 = Debug|x86 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Release|Any CPU.ActiveCfg = Release|Any CPU + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Release|Any CPU.Build.0 = Release|Any CPU + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Release|x64.ActiveCfg = Release|x64 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Release|x64.Build.0 = Release|x64 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Release|x86.ActiveCfg = Release|x86 + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581}.Release|x86.Build.0 = Release|x86 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.debug_x86|x64.ActiveCfg = Debug|x64 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.debug_x86|x64.Build.0 = Debug|x64 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.debug_x86|x86.ActiveCfg = Debug|x86 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.debug_x86|x86.Build.0 = Debug|x86 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Debug|Any CPU.Build.0 = Debug|Any CPU + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Debug|x64.ActiveCfg = Debug|x64 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Debug|x64.Build.0 = Debug|x64 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Debug|x86.ActiveCfg = Debug|x86 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Debug|x86.Build.0 = Debug|x86 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Release|Any CPU.ActiveCfg = Release|Any CPU + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Release|Any CPU.Build.0 = Release|Any CPU + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Release|x64.ActiveCfg = Release|x64 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Release|x64.Build.0 = Release|x64 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Release|x86.ActiveCfg = Release|x86 + {960602CF-A019-4C6B-ABD3-1C08C70A0005}.Release|x86.Build.0 = Release|x86 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.debug_x86|x64.ActiveCfg = Debug|x64 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.debug_x86|x64.Build.0 = Debug|x64 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.debug_x86|x86.ActiveCfg = Debug|x86 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.debug_x86|x86.Build.0 = Debug|x86 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Debug|x64.ActiveCfg = Debug|x64 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Debug|x64.Build.0 = Debug|x64 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Debug|x86.ActiveCfg = Debug|x86 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Debug|x86.Build.0 = Debug|x86 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Release|Any CPU.Build.0 = Release|Any CPU + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Release|x64.ActiveCfg = Release|x64 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Release|x64.Build.0 = Release|x64 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Release|x86.ActiveCfg = Release|x86 + {61EDA55A-5CB5-4C73-882D-D496D9623CD1}.Release|x86.Build.0 = Release|x86 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.debug_x86|x64.ActiveCfg = Debug|x64 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.debug_x86|x64.Build.0 = Debug|x64 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.debug_x86|x86.ActiveCfg = Debug|x86 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.debug_x86|x86.Build.0 = Debug|x86 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Debug|x64.ActiveCfg = Debug|x64 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Debug|x64.Build.0 = Debug|x64 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Debug|x86.ActiveCfg = Debug|x86 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Debug|x86.Build.0 = Debug|x86 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Release|Any CPU.Build.0 = Release|Any CPU + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Release|x64.ActiveCfg = Release|x64 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Release|x64.Build.0 = Release|x64 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Release|x86.ActiveCfg = Release|x86 + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854}.Release|x86.Build.0 = Release|x86 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.debug_x86|x64.ActiveCfg = Debug|x64 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.debug_x86|x64.Build.0 = Debug|x64 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.debug_x86|x86.ActiveCfg = Debug|x86 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.debug_x86|x86.Build.0 = Debug|x86 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Debug|x64.ActiveCfg = Debug|x64 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Debug|x64.Build.0 = Debug|x64 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Debug|x86.ActiveCfg = Debug|x86 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Debug|x86.Build.0 = Debug|x86 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Release|Any CPU.Build.0 = Release|Any CPU + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Release|x64.ActiveCfg = Release|x64 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Release|x64.Build.0 = Release|x64 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Release|x86.ActiveCfg = Release|x86 + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E}.Release|x86.Build.0 = Release|x86 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.debug_x86|Any CPU.ActiveCfg = Debug|Any CPU + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.debug_x86|Any CPU.Build.0 = Debug|Any CPU + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.debug_x86|x64.ActiveCfg = Debug|x64 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.debug_x86|x64.Build.0 = Debug|x64 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.debug_x86|x86.ActiveCfg = Debug|x86 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.debug_x86|x86.Build.0 = Debug|x86 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Debug|x64.ActiveCfg = Debug|x64 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Debug|x64.Build.0 = Debug|x64 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Debug|x86.ActiveCfg = Debug|x86 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Debug|x86.Build.0 = Debug|x86 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Release|Any CPU.Build.0 = Release|Any CPU + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Release|x64.ActiveCfg = Release|x64 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Release|x64.Build.0 = Release|x64 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Release|x86.ActiveCfg = Release|x86 + {1DD609A3-870C-4C1C-AB41-32ACBF292C16}.Release|x86.Build.0 = Release|x86 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {3BFF833B-6E1B-4A0A-85E3-545DE528B66D} = {40F75CAB-26AB-4BC4-8DC3-B401046EA5FC} - {40F75CAB-26AB-4BC4-8DC3-B401046EA5FC} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {F6C4B32C-5F1A-4381-A763-E171F713732B} = {40F75CAB-26AB-4BC4-8DC3-B401046EA5FC} - {B31513FF-7F8D-461F-9C93-F7CEBD49FD22} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {EAA718C1-C5E6-45FE-B3FE-403150A40B47} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {5295FF9C-BBDA-469E-AECE-44DE1926097A} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {12C10326-9E12-4F61-BE38-5D90DFAE109C} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {FA1A34BD-C317-4A03-85F5-FF8A4984D36E} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {979BFC55-C778-4BEB-B667-AA43CCD07242} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {41E8E777-9599-4895-A4AB-12D0ECFC4BBB} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {58804623-EE96-4640-845F-F7416D5287F9} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {C3CB8633-EFAA-43E1-BAB0-9495DFFFD16B} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {5025C1A4-BD5A-4A14-ACD3-90360EF4B094} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {7BC55530-323E-48D7-9546-5D95DF57269D} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {1F17DCC9-E56F-4008-8337-FEB6A6819A1F} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {ACC58820-0386-4058-BDDC-CA35CDC47DEE} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {79BCB118-B2AE-43E2-BABA-C0DD49C17269} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {83BC53A8-D8AD-462C-891E-BAC8059DCF6B} = {40F75CAB-26AB-4BC4-8DC3-B401046EA5FC} - {799C8C09-91AD-48C3-AC74-69B02BBA2652} = {40F75CAB-26AB-4BC4-8DC3-B401046EA5FC} - {CB156C62-CC9A-4C8A-991E-46B1BBF86CF8} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {0A36ED98-2026-40AF-BAFD-D8916A5C4D74} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {E77FD1D0-6D18-4236-AAB7-FB68934E78A6} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {1A66A831-4F06-46D9-B483-70A4E75A2F7F} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} - {8A97D718-0681-43C5-A70B-535DBBDF4FA1} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {1F643A36-A1FC-4502-9D03-75837F20E1A4} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {7362AE32-7753-4E7C-86D0-DCA86AF413FA} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {84D9AF9F-1AA5-4041-A983-33F28A075395} = {B6CF7723-2947-411F-9AF1-35C09FAE514E} - {7F54C4EB-A1DF-4873-958E-D2B0378AE209} = {49FBAACE-59AC-4F83-90BA-7300DBA09F11} + {95C6F0B4-1687-4C36-90BF-1362CAB06524} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {3E99E653-6B31-45CF-9B3A-30EEE497BE13} = {A4057ACF-27F0-4724-963B-44548B6BC4E9} + {121FD6A8-6A7C-405A-B223-D3991D07D6E4} = {A4057ACF-27F0-4724-963B-44548B6BC4E9} + {FBBAA490-5752-41E0-A7ED-9B96F06B661E} = {A4057ACF-27F0-4724-963B-44548B6BC4E9} + {5041A3DC-CBBF-4615-99B1-781B641BCC01} = {A4057ACF-27F0-4724-963B-44548B6BC4E9} + {4524AF86-DEEC-48DF-B613-EDCF1212047B} = {A4057ACF-27F0-4724-963B-44548B6BC4E9} + {D798406A-9D72-434E-82FF-38AA0D946AE9} = {A4057ACF-27F0-4724-963B-44548B6BC4E9} + {AF3DE3DB-6FCD-459B-A413-70229C5AA34F} = {A4057ACF-27F0-4724-963B-44548B6BC4E9} + {E44DFA05-387E-44A9-8F5D-89EA9AAED43F} = {A4057ACF-27F0-4724-963B-44548B6BC4E9} + {98D140A5-7719-4B03-B696-C5294B3CAD64} = {A4057ACF-27F0-4724-963B-44548B6BC4E9} + {976D7EFB-E15E-49A0-A420-47246A294320} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {AA84CF7B-0C63-4909-9371-C2B85D304A68} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {0037B7ED-05D3-44BF-848D-475BE6E25042} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {B1E6D126-898E-4FBF-9239-DF8A83D59F6E} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {AE46E3E2-E6F3-4D9B-BA0C-9FB15F7C4A3C} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {47C1796A-7CAE-4CC1-84CB-7E94ABBF5E62} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {0E2E48BA-005C-4E7B-992C-B476A3386186} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {F99040AB-7CE4-4081-BB81-233EFC300FED} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {53D14FA5-EEBD-4EBF-A728-1A4CDC22B581} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {960602CF-A019-4C6B-ABD3-1C08C70A0005} = {81B64EBF-613D-43AE-82DA-B375FB751921} + {61EDA55A-5CB5-4C73-882D-D496D9623CD1} = {95C6F0B4-1687-4C36-90BF-1362CAB06524} + {DCA0AAF8-72B1-4F0E-90B3-66F7CCF0A854} = {95C6F0B4-1687-4C36-90BF-1362CAB06524} + {F4D4C65F-FAF0-4094-83AF-A4A7B74FE86E} = {95C6F0B4-1687-4C36-90BF-1362CAB06524} + {1DD609A3-870C-4C1C-AB41-32ACBF292C16} = {95C6F0B4-1687-4C36-90BF-1362CAB06524} EndGlobalSection EndGlobal diff --git a/build.ps1 b/build.ps1 index f780c43a..d7fd6f50 100644 --- a/build.ps1 +++ b/build.ps1 @@ -33,7 +33,7 @@ cd $PSScriptRoot $repoFolder = $PSScriptRoot $env:REPO_FOLDER = $repoFolder -$koreBuildZip="https://github.com/aspnet/KoreBuild/archive/feature/msbuild.zip" +$koreBuildZip="https://github.com/prafullbhosale/KoreBuild/archive/feature/msbuild.zip" if ($env:KOREBUILD_ZIP) { $koreBuildZip=$env:KOREBUILD_ZIP diff --git a/build/common.props b/build/common.props new file mode 100644 index 00000000..41bc9b23 --- /dev/null +++ b/build/common.props @@ -0,0 +1,43 @@ + + + + + en-US + Microsoft Corporation. + Microsoft .NET + + + 1.0.0 + $([System.DateTime]::Now.Ticks) + preview4-$(BuildNumber) + + $(MSBuildProjectName) + Microsoft + © Microsoft Corporation. All rights reserved. + + https://asp.net + true + + + true + $(MSBuildThisFileDirectory)Key.snk + true + true + + + + + true + + + + + 1.1.0 + 2.2.0-preview2-build1029 + + + + $(VersionPrefix)-$(VersionSuffix) + + diff --git a/global.json b/global.json deleted file mode 100644 index 9e80dd27..00000000 --- a/global.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "projects": ["src", "test/TestApps"] -} diff --git a/makefile.shade b/makefile.shade index a83be9e9..1812e15f 100644 --- a/makefile.shade +++ b/makefile.shade @@ -21,66 +21,6 @@ var AUTHORS='Microsoft' use-standard-lifecycle k-standard-goals -#xunit-test .xunit-test-msbuild - -#repack-x86 target='compile' if='Directory.Exists("src")' - @{ - if (string.IsNullOrEmpty(CONFIGURATION_LOCAL)) - { - CONFIGURATION_LOCAL = "Debug"; - } - - // Forcing to lower to match the entry in the sources project.json. - var configurationX86 = CONFIGURATION_LOCAL.ToLower() + "_x86"; - Log.Info(DESIGN_NUPKG_NAME+" "+Path.Combine(BUILD_DIR_LOCAL, DESIGN_NUPKG_NAME)); - var projectNupkg = Files - .Include(Path.Combine(BUILD_DIR_LOCAL, DESIGN_NUPKG_NAME)) - .Where(path => !path.EndsWith(".symbols.nupkg", StringComparison.OrdinalIgnoreCase)) - .OrderByDescending(f=>f) // On local builds multiple nupkgs are generated. - .First(); - Log.Info("Repacking Nupkg: " + projectNupkg); - - var extractToDirectory = projectNupkg + "-temp"; - ZipFile.ExtractToDirectory(projectNupkg, extractToDirectory); - - var projectDirectory = Path.Combine(BASE_DIR_LOCAL, "src", DESIGN_PROJECT_NAME); - var projectFilePath = Path.Combine(projectDirectory, "project.json"); - var projectFile = Files.Include(projectFilePath).Single(); - - // Generate the x86 exe variation for the nupkg. - DotnetBuild(projectFile, configurationX86, "net451"); - - var runtimesDirectory = Path.Combine(extractToDirectory, "runtimes"); - var win7x86Directory = Path.Combine(runtimesDirectory, "win7-x86", "lib", "net451"); - var win7x64Directory = Path.Combine(runtimesDirectory, "win7-x64", "lib", "net451"); - Directory.CreateDirectory(win7x86Directory); - Directory.CreateDirectory(win7x64Directory); - - var binDirectory = Path.Combine(projectDirectory, "bin"); - var x86OutputPath = Path.Combine(binDirectory, configurationX86, "net451"); - var x86ExePath = Path.Combine(x86OutputPath, DESIGN_EXE_NAME); - var x86ExeDestinationPath = Path.Combine(win7x86Directory, DESIGN_EXE_NAME); - File.Copy(x86ExePath, x86ExeDestinationPath); - - var x64OutputPath = Path.Combine(binDirectory, CONFIGURATION_LOCAL, "net451"); - var x64ExePath = Path.Combine(x64OutputPath, DESIGN_EXE_NAME); - var x64ExeDestinationPath = Path.Combine(win7x64Directory, DESIGN_EXE_NAME); - File.Copy(x64ExePath, x64ExeDestinationPath); - - var nugetExePath = Path.Combine(BASE_DIR_LOCAL, ".build", "nuget.exe"); - var nuspecPath = Path.Combine(extractToDirectory, DESIGN_PROJECT_NAME + ".nuspec"); - ExecClr(NUGET_EXE_PATH, "pack " + nuspecPath + " -OutputDirectory " + BUILD_DIR_LOCAL); - - try - { - // Delete temporary directory we used to repack. - Directory.Delete(extractToDirectory, true); - } - catch - { - // Don't care if we couldn't delete the temp directory. - } - } #push-packages target="verify" @{ diff --git a/src/Microsoft.Extensions.ProjectModel.Abstractions.Sources/Microsoft.Extensions.ProjectModel.Abstractions.Sources.xproj b/src/Microsoft.Extensions.ProjectModel.Abstractions.Sources/Microsoft.Extensions.ProjectModel.Abstractions.Sources.xproj deleted file mode 100644 index 3a11d66f..00000000 --- a/src/Microsoft.Extensions.ProjectModel.Abstractions.Sources/Microsoft.Extensions.ProjectModel.Abstractions.Sources.xproj +++ /dev/null @@ -1,19 +0,0 @@ - - - - 14.0.25420 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 8a97d718-0681-43c5-a70b-535dbbdf4fa1 - Microsoft.Extensions.ProjectModel.Abstractions.Sources - .\obj - .\bin\ - - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.Extensions.ProjectModel.Abstractions.Sources/project.json b/src/Microsoft.Extensions.ProjectModel.Abstractions.Sources/project.json deleted file mode 100644 index 23d8c318..00000000 --- a/src/Microsoft.Extensions.ProjectModel.Abstractions.Sources/project.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": "1.0.0-*", - "shared": "**/*.cs", - "frameworks": { - "netstandard1.0": {} - } -} \ No newline at end of file diff --git a/src/Microsoft.Extensions.ProjectModel.DotNet.Sources/Microsoft.Extensions.ProjectModel.DotNet.Sources.xproj b/src/Microsoft.Extensions.ProjectModel.DotNet.Sources/Microsoft.Extensions.ProjectModel.DotNet.Sources.xproj deleted file mode 100644 index 25df3ea5..00000000 --- a/src/Microsoft.Extensions.ProjectModel.DotNet.Sources/Microsoft.Extensions.ProjectModel.DotNet.Sources.xproj +++ /dev/null @@ -1,19 +0,0 @@ - - - - 14.0.25420 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 1f643a36-a1fc-4502-9d03-75837f20e1a4 - Microsoft.Extensions.ProjectModel.DotNet.Sources - .\obj - .\bin\ - - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.Extensions.ProjectModel.DotNet.Sources/project.json b/src/Microsoft.Extensions.ProjectModel.DotNet.Sources/project.json deleted file mode 100644 index 23d8c318..00000000 --- a/src/Microsoft.Extensions.ProjectModel.DotNet.Sources/project.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": "1.0.0-*", - "shared": "**/*.cs", - "frameworks": { - "netstandard1.0": {} - } -} \ No newline at end of file diff --git a/src/Microsoft.Extensions.ProjectModel.MsBuild.Sources/Microsoft.Extensions.ProjectModel.MsBuild.Sources.xproj b/src/Microsoft.Extensions.ProjectModel.MsBuild.Sources/Microsoft.Extensions.ProjectModel.MsBuild.Sources.xproj deleted file mode 100644 index d7ece4a9..00000000 --- a/src/Microsoft.Extensions.ProjectModel.MsBuild.Sources/Microsoft.Extensions.ProjectModel.MsBuild.Sources.xproj +++ /dev/null @@ -1,19 +0,0 @@ - - - - 14.0.25420 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 7362ae32-7753-4e7c-86d0-dca86af413fa - Microsoft.Extensions.ProjectModel.MsBuild.Sources - .\obj - .\bin\ - - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.Extensions.ProjectModel.MsBuild.Sources/project.json b/src/Microsoft.Extensions.ProjectModel.MsBuild.Sources/project.json deleted file mode 100644 index 23d8c318..00000000 --- a/src/Microsoft.Extensions.ProjectModel.MsBuild.Sources/project.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": "1.0.0-*", - "shared": "**/*.cs", - "frameworks": { - "netstandard1.0": {} - } -} \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/DefaultCodeGeneratorAssemblyProvider.cs b/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/DefaultCodeGeneratorAssemblyProvider.cs index ea399f56..eea200e6 100644 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/DefaultCodeGeneratorAssemblyProvider.cs +++ b/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/DefaultCodeGeneratorAssemblyProvider.cs @@ -23,7 +23,8 @@ namespace Microsoft.VisualStudio.Web.CodeGeneration new HashSet(StringComparer.Ordinal) { "Microsoft.VisualStudio.Web.CodeGeneration.Tools", - "Microsoft.VisualStudio.Web.CodeGeneration" + "Microsoft.VisualStudio.Web.CodeGeneration", + "Microsoft.VisualStudio.Web.CodeGeneration.Design" }; private readonly ICodeGenAssemblyLoadContext _assemblyLoadContext; diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/Microsoft.VisualStudio.Web.CodeGeneration.Core.csproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/Microsoft.VisualStudio.Web.CodeGeneration.Core.csproj new file mode 100644 index 00000000..9b6d8e68 --- /dev/null +++ b/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/Microsoft.VisualStudio.Web.CodeGeneration.Core.csproj @@ -0,0 +1,77 @@ + + + + + Contains the core infrastructure used by ASP.NET Core Code Generators. + net451;netstandard1.6 + $(NoWarn);CS1591 + true + true + Microsoft.VisualStudio.Web.CodeGeneration.Core + ../../tools/Key.snk + $(ScaffoldingVersion) + true + true + aspnetcore;codegenerator;scaffolding;visualstudioweb + $(PackageTargetFallback);portable-net45+win8 + false + false + false + false + + + + + + + + + + + + true + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.0.0 + + + 1.0.0 + + + 1.6.0 + + + 9.0.1 + + + + + + + + + + + 4.1.0 + + + 4.1.1 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/Microsoft.VisualStudio.Web.CodeGeneration.Core.xproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/Microsoft.VisualStudio.Web.CodeGeneration.Core.xproj deleted file mode 100644 index 2d0d5f8e..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/Microsoft.VisualStudio.Web.CodeGeneration.Core.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - eaa718c1-c5e6-45fe-b3fe-403150a40b47 - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/project.json b/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/project.json deleted file mode 100644 index c210c2a8..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Core/project.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "version": "1.0.0-*", - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk", - "nowarn": [ - "CS1591" - ], - "xmlDoc": true - }, - "description": "Contains the core infrastructure used by ASP.NET Core Code Generators.", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "1.0.0-*", - "Microsoft.Extensions.CommandLineUtils": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "NETStandard.Library": "1.6.0", - "Newtonsoft.Json": "9.0.1" - }, - "frameworks": { - "net451": {}, - "netstandard1.6": { - "imports": [ - "portable-net45+win8" - ], - "dependencies": { - "System.Diagnostics.Process": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1" - } - } - }, - "packOptions": { - "tags": [ - "aspnetcore", - "codegenerator", - "scaffolding", - "visualstudioweb" - ] - } -} \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Design/Microsoft.VisualStudio.Web.CodeGeneration.Design.csproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Design/Microsoft.VisualStudio.Web.CodeGeneration.Design.csproj new file mode 100644 index 00000000..2707fce3 --- /dev/null +++ b/src/Microsoft.VisualStudio.Web.CodeGeneration.Design/Microsoft.VisualStudio.Web.CodeGeneration.Design.csproj @@ -0,0 +1,77 @@ + + + + + Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views. + net451;netcoreapp1.0 + $(NoWarn);CS1591 + true + dotnet-aspnet-codegenerator-design + Exe + ../../tools/Key.snk + $(ScaffoldingVersion) + true + true + aspnetcore;codegenerator;scaffolding;visualstudioweb + $(PackageTargetFallback);portable-net45+win8 + false + false + false + false + Microsoft.VisualStudio.Web.CodeGeneration.Design + win7-x86 + + + + + + + + + + + + true + + + true + + + true + + + true + + + true + + + + + + 1.0.0-alpha-20161104-2 + All + + + + + + + + + + + 1.0.1 + + + + + $(DefineConstants);RELEASE + + + + anycpu32bitpreferred + + + + diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Design/Microsoft.VisualStudio.Web.CodeGeneration.Design.xproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Design/Microsoft.VisualStudio.Web.CodeGeneration.Design.xproj deleted file mode 100644 index e9f29f6b..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Design/Microsoft.VisualStudio.Web.CodeGeneration.Design.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - 0a36ed98-2026-40af-bafd-d8916a5c4d74 - Microsoft.VisualStudio.Web.CodeGeneration.Design - .\obj - .\bin\ - v4.5.2 - - - - 2.0 - - - diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.csproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.csproj new file mode 100644 index 00000000..e76ef600 --- /dev/null +++ b/src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.csproj @@ -0,0 +1,81 @@ + + + + + Contains Entity Framework Core Services used by ASP.NET Core Code Generators. + net451;netstandard1.6 + $(NoWarn);CS1591 + true + true + Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore + ../../tools/Key.snk + $(ScaffoldingVersion) + true + true + aspnetcore;codegenerator;scaffolding;visualstudioweb + $(PackageTargetFallback);dnxcore50;portable-net45+win8 + false + false + false + false + + + + + + + + + + + + true + + + true + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.0.0 + + + 1.0.1 + + + 1.0.1 + + + 1.0.1 + + + 1.0.1 + + + 1.6.0 + + + + + + + + + + + $(DefineConstants);RELEASE + + + + + + + diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xproj deleted file mode 100644 index 011e47f9..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 5295ff9c-bbda-469e-aece-44de1926097a - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/project.json b/src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/project.json deleted file mode 100644 index 899739e8..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/project.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "version": "1.0.0-*", - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk", - "nowarn": [ - "CS1591" - ], - "xmlDoc": true - }, - "description": "Contains Entity Framework Core Services used by ASP.NET Core Code Generators.", - "dependencies": { - "Microsoft.AspNetCore.Hosting": "1.0.0", - "Microsoft.AspNetCore.Server.Kestrel": "1.0.1", - "Microsoft.EntityFrameworkCore": "1.0.1", - "Microsoft.EntityFrameworkCore.Design": "1.0.1", - "Microsoft.EntityFrameworkCore.SqlServer": "1.0.1", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "1.0.0-*", - "NETStandard.Library": "1.6.0" - }, - "frameworks": { - "net451": {}, - "netstandard1.6": { - "imports": [ - "dnxcore50", - "portable-net45+win8" - ] - } - }, - "packOptions": { - "files": { - "mappings": { - "Templates/": "Templates/" - } - }, - "tags": [ - "aspnetcore", - "codegenerator", - "scaffolding", - "visualstudioweb" - ] - } -} \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.xproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.xproj deleted file mode 100644 index 31251e1a..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - 84d9af9f-1aa5-4041-a983-33f28a075395 - Microsoft.VisualStudio.Web.CodeGeneration.Msbuild - .\obj - .\bin\ - v4.5.2 - - - - 2.0 - - - diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild.csproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild.csproj new file mode 100644 index 00000000..897076ec --- /dev/null +++ b/src/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild/Microsoft.VisualStudio.Web.CodeGeneration.Msbuild.csproj @@ -0,0 +1,71 @@ + + + + + MSBuild task (EvaluateProjectInfoForCodeGeneration) used by Microsoft.VisualStudio.Web.CodeGeneration.Tools + net46;netstandard1.6 + $(NoWarn);CS1591 + true + true + Microsoft.VisualStudio.Web.CodeGeneration.Msbuild + ../../tools/Key.snk + $(ScaffoldingVersion) + true + true + false + false + false + false + + + + + + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.1.0-preview-000370-00 + + + 15.1.0-preview-000370-00 + + + 15.1.0-preview-000370-00 + + + 1.6.0 + + + 9.0.1 + + + 3.5.0-rc1-final + + + + + + + + + + + $(DefineConstants);RELEASE + + + + diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/Microsoft.VisualStudio.Web.CodeGeneration.Templating.csproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/Microsoft.VisualStudio.Web.CodeGeneration.Templating.csproj new file mode 100644 index 00000000..be147e5b --- /dev/null +++ b/src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/Microsoft.VisualStudio.Web.CodeGeneration.Templating.csproj @@ -0,0 +1,62 @@ + + + + + Contains Razor based templating host used by ASP.NET Core Code Generators. + net451;netstandard1.6 + $(NoWarn);CS1591 + true + true + Microsoft.VisualStudio.Web.CodeGeneration.Templating + ../../tools/Key.snk + $(ScaffoldingVersion) + true + true + aspnetcore;codegenerator;scaffolding;visualstudioweb + $(PackageTargetFallback);dotnet5.6;dnxcore50;portable-net45+win8 + false + false + false + false + + + + + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.0.0 + + + 1.3.0 + + + 1.6.0 + + + + + + + + + + $(DefineConstants);RELEASE + + + + diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xproj deleted file mode 100644 index 0acecac0..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - acc58820-0386-4058-bddc-ca35cdc47dee - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/project.json b/src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/project.json deleted file mode 100644 index be0526c7..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Templating/project.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "version": "1.0.0-*", - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk", - "nowarn": [ - "CS1591" - ], - "xmlDoc": true - }, - "description": "Contains Razor based templating host used by ASP.NET Core Code Generators.", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "1.0.0-*", - "Microsoft.AspNetCore.Razor": "1.0.0", - "Microsoft.CodeAnalysis.CSharp": "1.3.0", - "NETStandard.Library": "1.6.0" - }, - "frameworks": { - "net451" : {}, - "netstandard1.6": { - "imports": [ - "dotnet5.6", - "dnxcore50", - "portable-net45+win8" - ] - } - }, - "packOptions": { - "tags": [ - "aspnetcore", - "codegenerator", - "scaffolding", - "visualstudioweb" - ] - } -} \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Tools/Microsoft.VisualStudio.Web.CodeGeneration.Tools.csproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Tools/Microsoft.VisualStudio.Web.CodeGeneration.Tools.csproj new file mode 100644 index 00000000..0ea6d518 --- /dev/null +++ b/src/Microsoft.VisualStudio.Web.CodeGeneration.Tools/Microsoft.VisualStudio.Web.CodeGeneration.Tools.csproj @@ -0,0 +1,98 @@ + + + + + Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views. + netcoreapp1.0 + $(NoWarn);CS1591 + true + dotnet-aspnet-codegenerator + Exe + ../../tools/Key.snk + $(ScaffoldingVersion) + true + true + aspnetcore;codegenerator;scaffolding;visualstudioweb + false + false + false + false + + Microsoft.VisualStudio.Web.CodeGeneration.Tools + + + + + + + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.0.0-preview3-004050 + + + 1.0.0 + + + 1.0.0 + + + 1.0.0 + + + 1.0.0 + + + 1.0.0-rc3-003121 + + + 9.0.1 + + + + + + 1.0.1 + + + + + $(DefineConstants);RELEASE + + + + anycpu32bitpreferred + + + + + + + + + + + + + diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Tools/Microsoft.VisualStudio.Web.CodeGeneration.Tools.xproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Tools/Microsoft.VisualStudio.Web.CodeGeneration.Tools.xproj deleted file mode 100644 index ab228a58..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Tools/Microsoft.VisualStudio.Web.CodeGeneration.Tools.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 12c10326-9e12-4f61-be38-5d90dfae109c - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/Microsoft.VisualStudio.Web.CodeGeneration.Utils.csproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/Microsoft.VisualStudio.Web.CodeGeneration.Utils.csproj new file mode 100644 index 00000000..9dbaaf2b --- /dev/null +++ b/src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/Microsoft.VisualStudio.Web.CodeGeneration.Utils.csproj @@ -0,0 +1,85 @@ + + + + + Contains utilities used by ASP.NET Core Code Generation packages. + net451;netstandard1.6 + $(NoWarn);CS1591 + true + Microsoft.VisualStudio.Web.CodeGeneration.Utils + ../../tools/Key.snk + $(ScaffoldingVersion) + true + true + aspnetcore;codegenerator;scaffolding;visualstudioweb + $(PackageTargetFallback);portable-net45+win8 + false + false + false + false + + + + + + + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.3.0 + + + 1.0.0 + + + 1.6.0 + + + 9.0.1 + + + 3.5.0-rc1-final + + + + + + + + + + + + 4.1.0 + + + 4.2.0 + + + 4.0.1 + + + 4.0.0 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xproj b/src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xproj deleted file mode 100644 index 313e9dd7..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - fa1a34bd-c317-4a03-85f5-ff8a4984d36e - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/project.json b/src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/project.json deleted file mode 100644 index 1c197f9f..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration.Utils/project.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "Contains utilities used by ASP.NET Core Code Generation packages.", - "buildOptions": { - "keyFile": "../../tools/Key.snk", - "nowarn": [ - "CS1591" - ], - "compile": { - "include": [ - "../Shared/General/**/*.cs" - ] - }, - "xmlDoc": true - }, - "dependencies": { - "Microsoft.CodeAnalysis.CSharp.Workspaces": "1.3.0", - "Microsoft.Extensions.PlatformAbstractions": "1.0.0", - "Microsoft.Extensions.ProjectModel.Abstractions.Sources": { - "type": "build", - "version": "1.0.0-*" - }, - "NETStandard.Library": "1.6.0", - "Newtonsoft.Json": "9.0.1", - "NuGet.Frameworks": "3.5.0-rc1-final" - }, - "frameworks": { - "net451": { - "frameworkAssemblies": { - "System.Threading.Tasks": { - "type": "build" - } - } - }, - "netstandard1.6": { - "imports": [ - "portable-net45+win8" - ], - "dependencies": { - "System.AppContext": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0", - "System.Threading.Tasks.Parallel": "4.0.1", - "System.Runtime.Loader": "4.0.0" - } - } - }, - "packOptions": { - "tags": [ - "aspnetcore", - "codegenerator", - "scaffolding", - "visualstudioweb" - ] - } -} \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration/Microsoft.VisualStudio.Web.CodeGeneration.csproj b/src/Microsoft.VisualStudio.Web.CodeGeneration/Microsoft.VisualStudio.Web.CodeGeneration.csproj new file mode 100644 index 00000000..ca55a850 --- /dev/null +++ b/src/Microsoft.VisualStudio.Web.CodeGeneration/Microsoft.VisualStudio.Web.CodeGeneration.csproj @@ -0,0 +1,71 @@ + + + + + Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies. + net451;netstandard1.6 + $(NoWarn);CS1591 + true + true + Microsoft.VisualStudio.Web.CodeGeneration + ../../tools/Key.snk + $(ScaffoldingVersion) + true + true + aspnetcore;codegenerator;scaffolding;visualstudioweb + $(PackageTargetFallback);portable-net45+win8 + false + false + false + false + + + + + + + + + + + + true + + + true + + + true + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.0.0 + + + 1.0.0 + + + 1.6.0 + + + + + + + + + + $(DefineConstants);RELEASE + + + + diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration/Microsoft.VisualStudio.Web.CodeGeneration.xproj b/src/Microsoft.VisualStudio.Web.CodeGeneration/Microsoft.VisualStudio.Web.CodeGeneration.xproj deleted file mode 100644 index a74e1dea..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration/Microsoft.VisualStudio.Web.CodeGeneration.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - b31513ff-7f8d-461f-9c93-f7cebd49fd22 - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGeneration/project.json b/src/Microsoft.VisualStudio.Web.CodeGeneration/project.json deleted file mode 100644 index d2573c9b..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGeneration/project.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "version": "1.0.0-*", - "buildOptions": { - "keyFile": "../../tools/Key.snk", - "warningsAsErrors": true, - "nowarn": [ - "CS1591" - ], - "xmlDoc": true - }, - "description": "Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "1.0.0-*", - "Microsoft.Extensions.CommandLineUtils": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "NETStandard.Library": "1.6.0" - }, - "frameworks": { - "net451": {}, - "netstandard1.6": { - "imports": [ - "portable-net45+win8" - ] - } - }, - "packOptions": { - "tags": [ - "aspnetcore", - "codegenerator", - "scaffolding", - "visualstudioweb" - ] - } -} \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.csproj b/src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.csproj new file mode 100644 index 00000000..1df3843b --- /dev/null +++ b/src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.csproj @@ -0,0 +1,72 @@ + + + + + Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views. + net451;netstandard1.6 + $(NoWarn);CS1591 + true + true + Microsoft.VisualStudio.Web.CodeGenerators.Mvc + ../../tools/Key.snk + $(ScaffoldingVersion) + true + true + aspnetcore;aspnetcoremvc;codegenerator;scaffolding;visualstudioweb + $(PackageTargetFallback);portable-net45+win8 + false + false + false + false + + + + + + + + + + + + true + + + true + + + true + + + true + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.6.0 + + + + + + + + + + $(DefineConstants);RELEASE + + + + + + + + diff --git a/src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xproj b/src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xproj deleted file mode 100644 index 907b676c..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 979bfc55-c778-4beb-b667-aa43ccd07242 - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/project.json b/src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/project.json deleted file mode 100644 index bdd5b933..00000000 --- a/src/Microsoft.VisualStudio.Web.CodeGenerators.Mvc/project.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "version": "1.0.0-*", - "description": "Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.", - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk", - "nowarn": [ - "CS1591" - ], - "xmlDoc": true - }, - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration": "1.0.0-*", - "NETStandard.Library": "1.6.0" - }, - "frameworks": { - "net451": {}, - "netstandard1.6": { - "imports": [ - "portable-net45+win8" - ] - } - }, - "packOptions": { - "files": { - "mappings": { - "/": "THIRDPARTYNOTICE ASP.NET_Preview.rtf", - "Templates/": "Templates/" - } - }, - "tags": [ - "aspnetcore", - "aspnetcoremvc", - "codegenerator", - "scaffolding", - "visualstudioweb" - ] - } -} \ No newline at end of file diff --git a/test/E2E_Test/E2E_Test.csproj b/test/E2E_Test/E2E_Test.csproj new file mode 100644 index 00000000..985b7708 --- /dev/null +++ b/test/E2E_Test/E2E_Test.csproj @@ -0,0 +1,61 @@ + + + + + netcoreapp1.0 + EXE + true + E2E_Test + ../../tools/Key.snk + true + true + $(PackageTargetFallback);portable-net451+win8 + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1194 + + + 1.0.1 + + + 1.0.0-preview3-004050 + + + 1.0.0 + + + 1.0.0 + + + 4.6.36-* + + + 4.0.0 + + + 2.2.0-beta4-build3444 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/E2E_Test/E2E_Test.xproj b/test/E2E_Test/E2E_Test.xproj deleted file mode 100644 index 4f114a71..00000000 --- a/test/E2E_Test/E2E_Test.xproj +++ /dev/null @@ -1,22 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - cb156c62-cc9a-4c8a-991e-46b1bbf86cf8 - E2E_Test - .\obj - .\bin\ - v4.6.1 - - - 2.0 - - - - - - \ No newline at end of file diff --git a/test/Microsoft.Extensions.ProjectModel.Tests/Microsoft.Extensions.ProjectModel.Tests.csproj b/test/Microsoft.Extensions.ProjectModel.Tests/Microsoft.Extensions.ProjectModel.Tests.csproj new file mode 100644 index 00000000..44439965 --- /dev/null +++ b/test/Microsoft.Extensions.ProjectModel.Tests/Microsoft.Extensions.ProjectModel.Tests.csproj @@ -0,0 +1,72 @@ + + + + + netcoreapp1.0 + true + Microsoft.Extensions.ProjectModel.Tests + ../../tools/Key.snk + true + true + EXE + + + + + + + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1194 + + + 1.0.0-preview3-004050 + + + 1.0.0 + + + 1.0.0-rc3-003121 + + + 15.1.0-preview-000370-00 + + + 1.0.0 + + + 2.2.0-beta4-build3444 + + + + + + 1.0.1 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.Extensions.ProjectModel.Tests/Microsoft.Extensions.ProjectModel.Tests.xproj b/test/Microsoft.Extensions.ProjectModel.Tests/Microsoft.Extensions.ProjectModel.Tests.xproj deleted file mode 100644 index a0564867..00000000 --- a/test/Microsoft.Extensions.ProjectModel.Tests/Microsoft.Extensions.ProjectModel.Tests.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0.25420 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 1a66a831-4f06-46d9-b483-70a4e75a2f7f - Microsoft.Extensions.ProjectModel - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.csproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.csproj new file mode 100644 index 00000000..f4dfa932 --- /dev/null +++ b/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.csproj @@ -0,0 +1,80 @@ + + + + + netcoreapp1.0 + EXE + Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest + $(PackageTargetFallback);portable-net451+win8 + + + + + + + + + + + + + + true + + + + true + + + true + + + true + + + true + + + true + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1188 + + + + 1.0.0 + + + 1.0.0 + + + 1.0.1 + + + 4.0.1 + + + 2.2.0-beta3-build3402 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.xproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.xproj deleted file mode 100644 index 5b709921..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 41e8e777-9599-4895-a4ab-12d0ecfc4bbb - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/project.json b/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/project.json deleted file mode 100644 index 18ca266e..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.FunctionalTest/project.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "dependencies": { - "dotnet-test-xunit": "2.2.0-*", - "Microsoft.AspNetCore.Hosting": "1.0.0", - "Microsoft.Extensions.DependencyInjection": "1.0.0", - "Microsoft.NETCore.App": { - "version": "1.0.1", - "type": "platform" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "1.0.0-*", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "1.0.0-*", - "ModelTypesLocatorTestWebApp": "1.0.0", - "System.Diagnostics.Contracts": "4.0.1", - "xunit": "2.2.0-*" - }, - "frameworks": { - "netcoreapp1.0": { - "imports": [ - "portable-net451+win8" - ] - } - }, - "testRunner": "xunit" -} \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.csproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.csproj new file mode 100644 index 00000000..15d8908d --- /dev/null +++ b/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.csproj @@ -0,0 +1,65 @@ + + + + + netcoreapp1.0 + EXE + true + Microsoft.VisualStudio.Web.CodeGeneration.Core.Test + ../../tools/Key.snk + true + true + $(PackageTargetFallback);portable-net451+win8 + + + + + + + + + + + + + true + + + true + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1194 + + + 1.0.1 + + + 4.6.38-alpha + + + 4.0.1 + + + 4.0.0 + + + 2.2.0-beta4-build3444 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.xproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.xproj deleted file mode 100644 index db839452..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test.xproj +++ /dev/null @@ -1,20 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 58804623-ee96-4640-845f-f7416d5287f9 - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/project.json b/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/project.json deleted file mode 100644 index 9f545c02..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Core.Test/project.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" - }, - "dependencies": { - "dotnet-test-xunit": "2.2.0-*", - "Microsoft.NETCore.App": { - "version": "1.0.1", - "type": "platform" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "1.0.0-*", - "Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources": { - "version": "1.0.0-*", - "type": "build" - }, - "Moq": "4.6.38-alpha", - "System.Diagnostics.Contracts": "4.0.1", - "System.Diagnostics.TraceSource": "4.0.0", - "xunit": "2.2.0-*" - }, - "frameworks": { - "netcoreapp1.0": { - "imports": "portable-net451+win8" - } - }, - "testRunner": "xunit" -} \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/EntityFrameworkServicesTests.cs b/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/EntityFrameworkServicesTests.cs index 3d394282..80306d91 100644 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/EntityFrameworkServicesTests.cs +++ b/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/EntityFrameworkServicesTests.cs @@ -13,6 +13,7 @@ using Moq; using NuGet.Frameworks; using Xunit; using Xunit.Abstractions; +using IProjectContext = Microsoft.Extensions.ProjectModel.IProjectContext; namespace Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test { diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.csproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.csproj new file mode 100644 index 00000000..7189039a --- /dev/null +++ b/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.csproj @@ -0,0 +1,91 @@ + + + + + netcoreapp1.0 + EXE + true + Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test + ../../tools/Key.snk + true + true + $(PackageTargetFallback);portable-net451+win8 + + + + + + + + + + + + + + + + true + + + true + + + true + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1194 + + + 1.0.0 + + + 1.0.0 + + + 1.0.1 + + + 15.1.0-preview-000370-00 + + + 1.0.0-preview3-004050 + + + 1.0.0 + + + 1.0.0 + + + 4.6.38-alpha + + + 4.0.0 + + + 2.2.0-beta4-build3444 + + + 1.0.0-rc3-003121 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.xproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.xproj deleted file mode 100644 index 1de99695..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.Test.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - c3cb8633-efaa-43e1-bab0-9495dfffd16b - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test.csproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test.csproj new file mode 100644 index 00000000..c5c64be2 --- /dev/null +++ b/test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test.csproj @@ -0,0 +1,58 @@ + + + + + netcoreapp1.0 + EXE + true + Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test + ../../tools/Key.snk + true + true + + + + + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1194 + + + 1.0.1 + + + 1.0.0 + + + 4.6.36-* + + + 4.3.0-* + + + 2.2.0-beta4-build3444 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test.xproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test.xproj deleted file mode 100644 index 041a6e23..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0.25420 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 7f54c4eb-a1df-4873-958e-d2b0378ae209 - Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/project.json b/test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/project.json deleted file mode 100644 index ae9db34c..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.MSBuild.Test/project.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk", - "compile": { - "include": [ - "../Shared/*.cs" - ] - } - }, - "dependencies": { - "Microsoft.Build.Runtime":"15.1.0-preview-000370-00", - "Microsoft.DotNet.Cli.Utils":"1.0.0-preview3-004056", - "Microsoft.DotNet.InternalAbstractions": "1.0.0", - "Microsoft.Extensions.FileProviders.Physical":"1.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Msbuild" :"1.0.0-*", - "Moq": "4.6.38-alpha", - "dotnet-test-xunit": "2.2.0-*", - "xunit": "2.2.0-*" - }, - "frameworks": { - "netcoreapp1.0": { - "dependencies": { - "Microsoft.NETCore.App": { - "version": "1.0.1", - "type": "platform" - } - } - } - }, - "testRunner": "xunit" -} \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.csproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.csproj new file mode 100644 index 00000000..7f90de42 --- /dev/null +++ b/test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.csproj @@ -0,0 +1,74 @@ + + + + + netcoreapp1.0 + Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test + EXE + ../../tools/Key.snk + true + true + $(PackageTargetFallback);portable-net451+win8 + + + + + + + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1194 + + + 1.0.1 + + + 15.1.0-preview-000370-00 + + + 1.0.0-preview3-004050 + + + 1.0.0 + + + 1.0.0 + + + 4.6.38-alpha + + + 4.0.0 + + + 2.2.0-beta4-build3444 + + + 1.0.0-rc3-003121 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.xproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.xproj deleted file mode 100644 index 048645ce..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test/Microsoft.VisualStudio.Web.CodeGeneration.Sources.Test.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 5025c1a4-bd5a-4a14-acd3-90360ef4b094 - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.csproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.csproj new file mode 100644 index 00000000..d2740bbd --- /dev/null +++ b/test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.csproj @@ -0,0 +1,61 @@ + + + + + netcoreapp1.0 + EXE + true + Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test + ../../tools/Key.snk + true + true + $(PackageTargetFallback);portable-net451+win8 + + + + + + + + + + + + true + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1194 + + + 1.0.1 + + + 4.6.38-alpha + + + 4.0.0 + + + 2.2.0-beta4-build3444 + + + 1.0.0-rc3-003121 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.xproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.xproj deleted file mode 100644 index 58146df3..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test.xproj +++ /dev/null @@ -1,20 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 7bc55530-323e-48d7-9546-5d95df57269d - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/project.json b/test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/project.json deleted file mode 100644 index 34e373ea..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Templating.Test/project.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" - }, - "dependencies": { - "dotnet-test-xunit": "2.2.0-*", - "Microsoft.NETCore.App": { - "version": "1.0.1", - "type": "platform" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "1.0.0-*", - "Moq": "4.6.38-alpha", - "System.Diagnostics.TraceSource": "4.0.0", - "xunit": "2.2.0-*" - }, - "frameworks": { - "netcoreapp1.0": { - "imports": "portable-net451+win8" - } - }, - "testRunner": "xunit" -} \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.csproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.csproj new file mode 100644 index 00000000..ed034183 --- /dev/null +++ b/test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.csproj @@ -0,0 +1,50 @@ + + + + + netstandard1.6 + Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources + ../../tools/Key.snk + true + true + $(PackageTargetFallback);portable-net451+win8 + + + + + + + + + + + + true + + + true + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.6.0 + + + 4.0.1 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.xproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.xproj deleted file mode 100644 index 02def6b2..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 79bcb118-b2ae-43e2-baba-c0dd49c17269 - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/project.json b/test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/project.json deleted file mode 100644 index 12fe746e..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Test.Sources/project.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "shared": "*.cs", - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "1.0.0-*", - "NETStandard.Library": "1.6.0" - }, - "frameworks": { - "netstandard1.6": { - "imports": [ - "portable-net451+win8" - ] - } - } -} \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.csproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.csproj new file mode 100644 index 00000000..c7f0b9e7 --- /dev/null +++ b/test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.csproj @@ -0,0 +1,58 @@ + + + + + netcoreapp1.0 + EXE + true + Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test + ../../tools/Key.snk + true + true + + + + + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1194 + + + 1.0.1 + + + 1.0.0 + + + 4.6.36-* + + + 4.3.0-* + + + 2.2.0-beta4-build3444 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.xproj b/test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.xproj deleted file mode 100644 index 7e523f59..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - e77fd1d0-6d18-4236-aab7-fb68934e78a6 - Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test - .\obj - .\bin\ - v4.5.2 - - - - 2.0 - - - diff --git a/test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/project.json b/test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/project.json deleted file mode 100644 index ededf32c..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGeneration.Tools.Test/project.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk", - "compile": { - "include": "../Shared/**/*.cs" - } - }, - "dependencies": { - "dotnet-test-xunit": "2.2.0-*", - "Microsoft.NETCore.App": { - "version": "1.0.1", - "type": "platform" - }, - "Microsoft.DotNet.InternalAbstractions": "1.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Tools": "1.0.0-*", - "Moq": "4.6.36-*", - "System.Diagnostics.TraceSource": "4.3.0-*", - "xunit": "2.2.0-*" - }, - "frameworks": { - "netcoreapp1.0": { } - }, - "testRunner": "xunit" -} \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.csproj b/test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.csproj new file mode 100644 index 00000000..730279b1 --- /dev/null +++ b/test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.csproj @@ -0,0 +1,70 @@ + + + + + netcoreapp1.0 + EXE + true + Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test + ../../tools/Key.snk + true + true + $(PackageTargetFallback);portable-net451+win8 + + + + + + + + + + + + true + + + true + + + true + + + true + + + true + + + + + + 1.0.0-alpha-20161104-2 + All + + + 15.0.0-preview-20161024-02 + + + 2.2.0-beta4-build1194 + + + 1.0.1 + + + 4.6.38-alpha + + + 4.0.0 + + + 2.2.0-beta4-build3444 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.xproj b/test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.xproj deleted file mode 100644 index c93aa8fd..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test.xproj +++ /dev/null @@ -1,20 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 1f17dcc9-e56f-4008-8337-feb6a6819a1f - .\obj - .\bin\ - - - 2.0 - - - - - - \ No newline at end of file diff --git a/test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/project.json b/test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/project.json deleted file mode 100644 index 40e0db42..00000000 --- a/test/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.Test/project.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "buildOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" - }, - "dependencies": { - "dotnet-test-xunit": "2.2.0-*", - "Microsoft.NETCore.App": { - "version": "1.0.1", - "type": "platform" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "1.0.0-*", - "Moq": "4.6.38-alpha", - "System.Diagnostics.TraceSource": "4.0.0", - "xunit": "2.2.0-*" - }, - "frameworks": { - "netcoreapp1.0": { - "imports": "portable-net451+win8" - } - }, - "testRunner": "xunit" -} \ No newline at end of file diff --git a/test/Shared/MsBuildProjectSetupHelper.cs b/test/Shared/MsBuildProjectSetupHelper.cs index 4de450d1..b37b7831 100644 --- a/test/Shared/MsBuildProjectSetupHelper.cs +++ b/test/Shared/MsBuildProjectSetupHelper.cs @@ -16,9 +16,9 @@ namespace Microsoft.VisualStudio.Web.CodeGeneration var current = new DirectoryInfo(AppContext.BaseDirectory); while (current != null) { - if (File.Exists(Path.Combine(current.FullName, "global.json"))) + if (File.Exists(Path.Combine(current.FullName, "Scaffolding.sln"))) { - artifactsDir = Path.Combine(current.FullName, "artifacts/build"); + artifactsDir = Path.Combine(current.FullName, "artifacts", "build"); break; } current = current.Parent; diff --git a/test/TestApps/ClassLibrary1/ClassLibrary1.csproj b/test/TestApps/ClassLibrary1/ClassLibrary1.csproj new file mode 100644 index 00000000..20d09090 --- /dev/null +++ b/test/TestApps/ClassLibrary1/ClassLibrary1.csproj @@ -0,0 +1,38 @@ + + + + + netstandard1.5 + ClassLibrary1 + false + false + false + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.6.0 + + + + + + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/TestApps/ClassLibrary1/ClassLibrary1.xproj b/test/TestApps/ClassLibrary1/ClassLibrary1.xproj deleted file mode 100644 index 5f8fd1a3..00000000 --- a/test/TestApps/ClassLibrary1/ClassLibrary1.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - 83bc53a8-d8ad-462c-891e-bac8059dcf6b - ClassLibrary1 - .\obj - .\bin\ - v4.6.1 - - - - 2.0 - - - diff --git a/test/TestApps/ClassLibrary1/project.json b/test/TestApps/ClassLibrary1/project.json deleted file mode 100644 index 845a6b70..00000000 --- a/test/TestApps/ClassLibrary1/project.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "version": "1.0.0-*", - "dependencies": { - "NETStandard.Library": "1.6.0" - }, - "frameworks": { - "net451": {}, - "netstandard1.5": { - "imports": "dnxcore50" - } - } -} \ No newline at end of file diff --git a/test/TestApps/ClassLibrary2/ClassLibrary2.csproj b/test/TestApps/ClassLibrary2/ClassLibrary2.csproj new file mode 100644 index 00000000..d188f320 --- /dev/null +++ b/test/TestApps/ClassLibrary2/ClassLibrary2.csproj @@ -0,0 +1,37 @@ + + + + + netstandard1.6 + ClassLibrary2 + false + false + false + + + + + + + + + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.6.0 + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/TestApps/ClassLibrary2/ClassLibrary2.xproj b/test/TestApps/ClassLibrary2/ClassLibrary2.xproj deleted file mode 100644 index c00dbdfb..00000000 --- a/test/TestApps/ClassLibrary2/ClassLibrary2.xproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - 23e1d594-ab7a-4f89-9fc1-bb4fe0c0d11d - ClassLibrary2 - .\obj - .\bin\ - v4.6.1 - - - - 2.0 - - - diff --git a/test/TestApps/ClassLibrary2/project.json b/test/TestApps/ClassLibrary2/project.json deleted file mode 100644 index 161f3ab1..00000000 --- a/test/TestApps/ClassLibrary2/project.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "version": "1.0.0-*", - "dependencies": { - "ClassLibrary1": "1.0.0-*", - "NETStandard.Library": "1.6.0" - }, - "frameworks": { - "netstandard1.6": { - "imports": "dnxcore50" - } - } -} \ No newline at end of file diff --git a/test/TestApps/ModelTypesLocatorTestClassLibrary/ModelTypesLocatorTestClassLibrary.csproj b/test/TestApps/ModelTypesLocatorTestClassLibrary/ModelTypesLocatorTestClassLibrary.csproj new file mode 100644 index 00000000..3cd7b237 --- /dev/null +++ b/test/TestApps/ModelTypesLocatorTestClassLibrary/ModelTypesLocatorTestClassLibrary.csproj @@ -0,0 +1,60 @@ + + + + + netstandard1.6 + ModelTypesLocatorTestClassLibrary + Library + $(PackageTargetFallback);dnxcore50;portable-net45+win8 + + + + + + + + + + + + + true + + + true + + + true + + + true + + + true + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.6.0 + + + + + + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/TestApps/ModelTypesLocatorTestClassLibrary/ModelTypesLocatorTestClassLibrary.xproj b/test/TestApps/ModelTypesLocatorTestClassLibrary/ModelTypesLocatorTestClassLibrary.xproj deleted file mode 100644 index 86bb6037..00000000 --- a/test/TestApps/ModelTypesLocatorTestClassLibrary/ModelTypesLocatorTestClassLibrary.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - f6c4b32c-5f1a-4381-a763-e171f713732b - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/test/TestApps/ModelTypesLocatorTestClassLibrary/project.json b/test/TestApps/ModelTypesLocatorTestClassLibrary/project.json deleted file mode 100644 index 417125f8..00000000 --- a/test/TestApps/ModelTypesLocatorTestClassLibrary/project.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "version": "1.0.0", - "buildOptions": { - "emitEntryPoint": false, - "compile": "*.cs" - }, - "dependencies": { - "ClassLibrary1": "1.0.0-*", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "1.0.0-*", - "NETStandard.Library": "1.6.0" - }, - "frameworks": { - "net451": {}, - "netstandard1.6": { - "imports": [ - "dnxcore50", - "portable-net45+win8" - ] - } - } -} \ No newline at end of file diff --git a/test/TestApps/ModelTypesLocatorTestWebApp/ModelTypesLocatorTestWebApp.csproj b/test/TestApps/ModelTypesLocatorTestWebApp/ModelTypesLocatorTestWebApp.csproj new file mode 100644 index 00000000..656ff4a9 --- /dev/null +++ b/test/TestApps/ModelTypesLocatorTestWebApp/ModelTypesLocatorTestWebApp.csproj @@ -0,0 +1,74 @@ + + + + + netstandard1.6 + ModelTypesLocatorTestWebApp + $(PackageTargetFallback);portable-net451+win8 + + + + + + + + + + + + true + + + true + + + true + + + true + + + true + + + true + + + true + + + + + + + 1.0.0-alpha-20161104-2 + All + + + 1.0.0 + + + 1.0.0 + + + 1.0.0 + + + 1.6.0 + + + + + + + + + + + $(DefineConstants);RELEASE + + + + diff --git a/test/TestApps/ModelTypesLocatorTestWebApp/ModelTypesLocatorTestWebApp.xproj b/test/TestApps/ModelTypesLocatorTestWebApp/ModelTypesLocatorTestWebApp.xproj deleted file mode 100644 index 8f08b531..00000000 --- a/test/TestApps/ModelTypesLocatorTestWebApp/ModelTypesLocatorTestWebApp.xproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - 14.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - 3bff833b-6e1b-4a0a-85e3-545de528b66d - .\obj - .\bin\ - - - 2.0 - - - \ No newline at end of file diff --git a/test/TestApps/ModelTypesLocatorTestWebApp/project.json b/test/TestApps/ModelTypesLocatorTestWebApp/project.json deleted file mode 100644 index 95f998f6..00000000 --- a/test/TestApps/ModelTypesLocatorTestWebApp/project.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "1.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0", - "Microsoft.Extensions.Configuration.Json": "1.0.0", - "ModelTypesLocatorTestClassLibrary": "1.0.0-*", - "NETStandard.Library": "1.6.0" - }, - "frameworks": { - "net451": {}, - "netstandard1.6": { - "imports": [ - "portable-net451+win8" - ] - } - } -} \ No newline at end of file