From 7d8fdff6c11c7c07ec5e30a25e806036d724ff67 Mon Sep 17 00:00:00 2001 From: Stephan Date: Thu, 15 Jun 2017 15:02:50 +0200 Subject: [PATCH] U4-10006 - adjust projects to new build --- .gitignore | 16 +- build/NuSpecs/UmbracoCms.Core.nuspec | 88 ++++----- build/NuSpecs/UmbracoCms.nuspec | 26 +-- src/SQLCE4Umbraco/SqlCE4Umbraco.csproj | 1 - .../Repositories/ContentRepository.cs | 27 +++ src/Umbraco.Core/Umbraco.Core.csproj | 1 - src/Umbraco.Tests/Dependencies/NuGet.cs | 102 +++++++--- .../Repositories/ContentRepositoryTest.cs | 96 ++++++++-- .../Services/ThreadSafetyServiceTest.cs | 177 ++++++++++++------ src/Umbraco.Tests/Umbraco.Tests.csproj | 2 - src/Umbraco.Web.UI/Umbraco.Web.UI.csproj | 52 ++--- src/Umbraco.Web.UI/config/trees.config | 1 + src/Umbraco.Web/Umbraco.Web.csproj | 1 - src/UmbracoExamine/UmbracoExamine.csproj | 1 - .../umbraco.MacroEngines.csproj | 1 - .../umbraco.businesslogic.csproj | 1 - src/umbraco.cms/umbraco.cms.csproj | 1 - src/umbraco.controls/umbraco.controls.csproj | 1 - .../umbraco.datalayer.csproj | 1 - .../umbraco.editorControls.csproj | 1 - 20 files changed, 392 insertions(+), 205 deletions(-) diff --git a/.gitignore b/.gitignore index 18239100ad..f713fa4079 100644 --- a/.gitignore +++ b/.gitignore @@ -46,13 +46,7 @@ src/Umbraco.Web.UI/Web.*.config.transformed umbraco/presentation/umbraco/plugins/uComponents/uComponentsInstaller.ascx umbraco/presentation/packages/uComponents/MultiNodePicker/CustomTreeService.asmx -_BuildOutput/* *.ncrunchsolution -build/UmbracoCms.AllBinaries*zip -build/UmbracoCms.WebPI*zip -build/UmbracoCms*zip -build/UmbracoExamine.PDF*zip -build/*.nupkg src/Umbraco.Tests/config/applications.config src/Umbraco.Tests/config/trees.config src/Umbraco.Web.UI/web.config @@ -68,7 +62,6 @@ src/packages/repositories.config src/Umbraco.Web.UI/[Ww]eb.config *.transformed -webpihash.txt node_modules @@ -95,7 +88,6 @@ src/Umbraco.Web.UI/[Uu]mbraco/[Aa]ssets/* src/Umbraco.Web.UI.Client/[Bb]uild/* src/Umbraco.Web.UI.Client/[Bb]uild/[Bb]elle/ src/Umbraco.Web.UI/[Uu]ser[Cc]ontrols/ -build/_BuildOutput/ src/Umbraco.Web.UI.Client/src/[Ll]ess/*.css tools/NDepend/ @@ -130,7 +122,6 @@ src/*.boltdata/ /src/Umbraco.Web.UI/Umbraco/Js/canvasdesigner.config.js /src/Umbraco.Web.UI/Umbraco/Js/canvasdesigner.front.js src/umbraco.sln.ide/* -build/UmbracoCms.*/ src/.vs/ src/Umbraco.Web.UI/umbraco/js/install.loader.js src/Umbraco.Tests/media @@ -140,8 +131,11 @@ apidocs/api/* build/docs.zip build/ui-docs.zip build/csharp-docs.zip -build/msbuild.log .vs/ src/packages/ -build/tools/ src/PrecompiledWeb/* + + +build.out/ +build.tmp/ +build/Modules/*/temp/ \ No newline at end of file diff --git a/build/NuSpecs/UmbracoCms.Core.nuspec b/build/NuSpecs/UmbracoCms.Core.nuspec index e62185d4b2..eb090ab6d8 100644 --- a/build/NuSpecs/UmbracoCms.Core.nuspec +++ b/build/NuSpecs/UmbracoCms.Core.nuspec @@ -44,65 +44,65 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/build/NuSpecs/UmbracoCms.nuspec b/build/NuSpecs/UmbracoCms.nuspec index 8d58ec43a3..22430a4516 100644 --- a/build/NuSpecs/UmbracoCms.nuspec +++ b/build/NuSpecs/UmbracoCms.nuspec @@ -19,22 +19,22 @@ - + - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/src/SQLCE4Umbraco/SqlCE4Umbraco.csproj b/src/SQLCE4Umbraco/SqlCE4Umbraco.csproj index a5d86d5377..2f2bb5866d 100644 --- a/src/SQLCE4Umbraco/SqlCE4Umbraco.csproj +++ b/src/SQLCE4Umbraco/SqlCE4Umbraco.csproj @@ -93,7 +93,6 @@ - @@ -2424,18 +2425,19 @@ xcopy "$(ProjectDir)"..\packages\SqlServerCE.4.0.0.1\x86\*.* "$(TargetDir)x86\" + - + + + - - - - - - + + + + \ No newline at end of file diff --git a/src/Umbraco.Web.UI/config/trees.config b/src/Umbraco.Web.UI/config/trees.config index 13da9246b7..a6104af9ae 100644 --- a/src/Umbraco.Web.UI/config/trees.config +++ b/src/Umbraco.Web.UI/config/trees.config @@ -41,4 +41,5 @@ + \ No newline at end of file diff --git a/src/Umbraco.Web/Umbraco.Web.csproj b/src/Umbraco.Web/Umbraco.Web.csproj index 9aaab32af9..cb51683498 100644 --- a/src/Umbraco.Web/Umbraco.Web.csproj +++ b/src/Umbraco.Web/Umbraco.Web.csproj @@ -2253,6 +2253,5 @@ - \ No newline at end of file diff --git a/src/UmbracoExamine/UmbracoExamine.csproj b/src/UmbracoExamine/UmbracoExamine.csproj index 9a3299fb7e..eab05ff9a5 100644 --- a/src/UmbracoExamine/UmbracoExamine.csproj +++ b/src/UmbracoExamine/UmbracoExamine.csproj @@ -189,7 +189,6 @@ -