From 489e6eb6e80ec58a57ba084a7b846be3ce4c168b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Tue, 16 Oct 2018 16:32:35 +0200 Subject: [PATCH 01/14] WebRoot project added --- Habitat.sln | 10 ++ src/WebRoot/Properties/AssemblyInfo.cs | 35 +++++++ src/WebRoot/Web.Debug.config | 30 ++++++ src/WebRoot/Web.Release.config | 31 +++++++ src/WebRoot/Web.config | 23 +++++ src/WebRoot/WebRoot.csproj | 122 +++++++++++++++++++++++++ src/WebRoot/packages.config | 4 + 7 files changed, 255 insertions(+) create mode 100644 src/WebRoot/Properties/AssemblyInfo.cs create mode 100644 src/WebRoot/Web.Debug.config create mode 100644 src/WebRoot/Web.Release.config create mode 100644 src/WebRoot/Web.config create mode 100644 src/WebRoot/WebRoot.csproj create mode 100644 src/WebRoot/packages.config diff --git a/Habitat.sln b/Habitat.sln index 64689143cd..050477ccb9 100644 --- a/Habitat.sln +++ b/Habitat.sln @@ -199,6 +199,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sitecore.Feature.Accounts.T EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sitecore.Feature.Demo.Tests", "src\Feature\Demo\tests\Sitecore.Feature.Demo.Tests.csproj", "{0CF1F7D9-121A-4E40-844C-612EC40345F5}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebRoot", "src\WebRoot\WebRoot.csproj", "{7985416B-3C47-4ABF-8603-73CAB10BEB03}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -613,6 +615,14 @@ Global {0CF1F7D9-121A-4E40-844C-612EC40345F5}.Release|Any CPU.Build.0 = Release|Any CPU {0CF1F7D9-121A-4E40-844C-612EC40345F5}.Release|x64.ActiveCfg = Release|Any CPU {0CF1F7D9-121A-4E40-844C-612EC40345F5}.Release|x64.Build.0 = Release|Any CPU + {7985416B-3C47-4ABF-8603-73CAB10BEB03}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7985416B-3C47-4ABF-8603-73CAB10BEB03}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7985416B-3C47-4ABF-8603-73CAB10BEB03}.Debug|x64.ActiveCfg = Debug|Any CPU + {7985416B-3C47-4ABF-8603-73CAB10BEB03}.Debug|x64.Build.0 = Debug|Any CPU + {7985416B-3C47-4ABF-8603-73CAB10BEB03}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7985416B-3C47-4ABF-8603-73CAB10BEB03}.Release|Any CPU.Build.0 = Release|Any CPU + {7985416B-3C47-4ABF-8603-73CAB10BEB03}.Release|x64.ActiveCfg = Release|Any CPU + {7985416B-3C47-4ABF-8603-73CAB10BEB03}.Release|x64.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/WebRoot/Properties/AssemblyInfo.cs b/src/WebRoot/Properties/AssemblyInfo.cs new file mode 100644 index 0000000000..93341900b7 --- /dev/null +++ b/src/WebRoot/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("WebRoot")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("WebRoot")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("7985416b-3c47-4abf-8603-73cab10beb03")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/WebRoot/Web.Debug.config b/src/WebRoot/Web.Debug.config new file mode 100644 index 0000000000..c1a56423b0 --- /dev/null +++ b/src/WebRoot/Web.Debug.config @@ -0,0 +1,30 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/WebRoot/Web.Release.config b/src/WebRoot/Web.Release.config new file mode 100644 index 0000000000..19058ed353 --- /dev/null +++ b/src/WebRoot/Web.Release.config @@ -0,0 +1,31 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/WebRoot/Web.config b/src/WebRoot/Web.config new file mode 100644 index 0000000000..ec4dd7df8f --- /dev/null +++ b/src/WebRoot/Web.config @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + diff --git a/src/WebRoot/WebRoot.csproj b/src/WebRoot/WebRoot.csproj new file mode 100644 index 0000000000..957e4a1332 --- /dev/null +++ b/src/WebRoot/WebRoot.csproj @@ -0,0 +1,122 @@ + + + + + Debug + AnyCPU + + + 2.0 + {7985416B-3C47-4ABF-8603-73CAB10BEB03} + {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} + Library + Properties + WebRoot + WebRoot + v4.7.2 + true + + + + + + + + + + + true + full + false + bin\ + DEBUG;TRACE + prompt + 4 + + + true + pdbonly + true + bin\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + ..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll + + + + + + + + + + + + Web.config + + + Web.config + + + + 10.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + + + + + True + True + 50303 + / + http://localhost:57741/ + False + False + + + False + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + \ No newline at end of file diff --git a/src/WebRoot/packages.config b/src/WebRoot/packages.config new file mode 100644 index 0000000000..820b061416 --- /dev/null +++ b/src/WebRoot/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file From 6703282cadaf9d05386dc7cb0de32eb5bd32eb48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Tue, 16 Oct 2018 16:34:52 +0200 Subject: [PATCH 02/14] empty Helix.targets added --- src/WebRoot/Helix.targets | 2 ++ src/WebRoot/WebRoot.csproj | 1 + 2 files changed, 3 insertions(+) create mode 100644 src/WebRoot/Helix.targets diff --git a/src/WebRoot/Helix.targets b/src/WebRoot/Helix.targets new file mode 100644 index 0000000000..93aaee19e9 --- /dev/null +++ b/src/WebRoot/Helix.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/WebRoot/WebRoot.csproj b/src/WebRoot/WebRoot.csproj index 957e4a1332..d5e8bc7e17 100644 --- a/src/WebRoot/WebRoot.csproj +++ b/src/WebRoot/WebRoot.csproj @@ -88,6 +88,7 @@ + From 8231374fdb0f95dbbd258af5424aead620733a76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Tue, 16 Oct 2018 16:43:31 +0200 Subject: [PATCH 03/14] project references added --- src/WebRoot/WebRoot.csproj | 124 ++++++++++++++++++++++++++++++++++++- 1 file changed, 123 insertions(+), 1 deletion(-) diff --git a/src/WebRoot/WebRoot.csproj b/src/WebRoot/WebRoot.csproj index d5e8bc7e17..9c09ae6b1c 100644 --- a/src/WebRoot/WebRoot.csproj +++ b/src/WebRoot/WebRoot.csproj @@ -1,4 +1,4 @@ - + @@ -81,6 +81,128 @@ Web.config + + + {3f61c57d-50d9-4194-8196-ef5f7aa4cce5} + Sitecore.Feature.Accounts + + + {4dd516f2-d9e5-4775-b840-e00a71dd7e87} + Sitecore.Feature.Demo + + + {c2e10220-2850-484f-8fca-dcdd1c6e3b53} + Sitecore.Feature.FAQ + + + {0d0b809c-03ab-4ee1-898f-cfe28cf5b245} + Sitecore.Feature.Identity + + + {aca65632-ee93-422b-b25e-8e31969694f5} + Sitecore.Feature.Language + + + {19ce4259-bd16-4239-ac7c-22220fb26575} + Sitecore.Feature.Maps + + + {1417b162-f987-4cbd-8642-ca4c4119e705} + Sitecore.Feature.Media + + + {2bbd157c-ad28-4055-a208-48a2da93bd04} + Sitecore.Feature.Metadata + + + {64cb17ee-49bf-44a6-98f0-4f72ee89073b} + Sitecore.Feature.Multisite + + + {16003e7f-0faf-4dee-b13d-dd327e965a98} + Sitecore.Feature.Navigation + + + {1aad6f22-9b6d-4688-8ea5-1ae7044031f7} + Sitecore.Feature.News + + + {da079e95-db53-4a66-ab35-2dab71d19276} + Sitecore.Feature.PageContent + + + {452c63b5-6019-4ec2-9a9b-9b5dd3241485} + Sitecore.Feature.Person + + + {55b9c026-e106-4185-8213-9cdd53b44e1b} + Sitecore.Feature.Search + + + {b018c183-6976-4766-b2c0-0cba4c064aed} + Sitecore.Feature.Social + + + {64c1c1ef-71cb-47bd-92f9-4e50ce35bd9f} + Sitecore.Feature.Teasers + + + {ce34a3b7-b91a-41ba-8b16-c1e131e1c621} + Sitecore.Foundation.Accounts + + + {5cf5fa06-ab27-4df5-a471-ed57ef3e4ae9} + Sitecore.Foundation.Alerts + + + {7e46ff93-ee05-412c-ac47-2a59a13da73c} + Sitecore.Foundation.Assets + + + {366148b7-2392-4f42-80d6-786b7a3682ae} + Sitecore.Foundation.DependencyInjection + + + {0d6ba4d8-c469-4ae9-9ebb-93bdf7d7e78f} + Sitecore.Foundation.Dictionary + + + {812c16c9-1e8a-42dc-a1c0-6896d570f63a} + Sitecore.Foundation.FieldEditor + + + {80213f24-577f-4f0b-a3b8-62485ea4d2f3} + Sitecore.Foundation.Indexing + + + {622ebd86-43a5-4857-965c-1724f714012a} + Sitecore.Foundation.Installer + + + {323ca7a6-6abb-4652-abe2-75dab139cbc0} + Sitecore.Foundation.LocalDatasource + + + {cfa2ae87-7f8d-4ca6-bb72-b16380190db7} + Sitecore.Foundation.Multisite + + + {007cd5dc-0030-460d-91a3-3ddea9ab472f} + Sitecore.Foundation.Serialization + + + {b535703f-8d07-4f23-a533-2974bb4cc7b1} + Sitecore.Foundation.SitecoreExtensions + + + {98de0d1d-26f1-4cca-847c-4e0fc2dba5fc} + Sitecore.Foundation.Theming + + + {c98ead78-4d83-4789-a621-6011c3d7314d} + Sitecore.Common.Website + + 10.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) From 6e3d8afb07a86c2a9e5800f69ce32faaadb2240a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Wed, 17 Oct 2018 12:33:13 +0200 Subject: [PATCH 04/14] nuget references changed to PackageReference nuget references changed to PackageReference --- src/WebRoot/Web.config | 10 ---------- src/WebRoot/WebRoot.csproj | 20 ++++++-------------- src/WebRoot/packages.config | 4 ---- 3 files changed, 6 insertions(+), 28 deletions(-) delete mode 100644 src/WebRoot/packages.config diff --git a/src/WebRoot/Web.config b/src/WebRoot/Web.config index ec4dd7df8f..82f46f2cdb 100644 --- a/src/WebRoot/Web.config +++ b/src/WebRoot/Web.config @@ -9,15 +9,5 @@ - - - - - - diff --git a/src/WebRoot/WebRoot.csproj b/src/WebRoot/WebRoot.csproj index 9c09ae6b1c..67a0e35982 100644 --- a/src/WebRoot/WebRoot.csproj +++ b/src/WebRoot/WebRoot.csproj @@ -1,5 +1,4 @@ - - + Debug @@ -61,11 +60,6 @@ - - - ..\..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll - - @@ -73,7 +67,6 @@ - Web.config @@ -203,6 +196,11 @@ Sitecore.Common.Website + + + 2.0.0 + + 10.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) @@ -229,12 +227,6 @@ - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - + + + + + FileSystem + Debug + Any CPU + + True + False + False + + \ No newline at end of file diff --git a/src/WebRoot/WebRoot.csproj b/src/WebRoot/WebRoot.csproj index 67a0e35982..867635f2fc 100644 --- a/src/WebRoot/WebRoot.csproj +++ b/src/WebRoot/WebRoot.csproj @@ -1,4 +1,4 @@ - + Debug @@ -67,6 +67,7 @@ + Web.config From 1bef4f13cc92a8f5ac03a6cf04cc38a3a9f55bf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Wed, 17 Oct 2018 12:34:25 +0200 Subject: [PATCH 06/14] Helix.targets added --- src/WebRoot/Helix.targets | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/WebRoot/Helix.targets b/src/WebRoot/Helix.targets index 93aaee19e9..af12ce36dd 100644 --- a/src/WebRoot/Helix.targets +++ b/src/WebRoot/Helix.targets @@ -1,2 +1,23 @@  + + + + $(PipelineCollectFilesPhaseDependsOn); + CollectContentFilesFromHelixModules; + + + + + + + + + + %(TargetPath) + + + + + + \ No newline at end of file From 89aa06dcbfd5eff483a8b8419fdf22442a00222c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Wed, 17 Oct 2018 12:34:39 +0200 Subject: [PATCH 07/14] Build action of Web.config set to None --- src/WebRoot/WebRoot.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WebRoot/WebRoot.csproj b/src/WebRoot/WebRoot.csproj index 867635f2fc..3d0630dbc3 100644 --- a/src/WebRoot/WebRoot.csproj +++ b/src/WebRoot/WebRoot.csproj @@ -1,4 +1,4 @@ - + Debug @@ -61,7 +61,7 @@ - + From 22add57459c5120da60400828b162d5f87692bd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Wed, 24 Oct 2018 15:46:59 +0200 Subject: [PATCH 08/14] ApplyTransformOnPublish added --- .../Accounts/code/Sitecore.Feature.Accounts.csproj | 7 +++++-- .../Accounts/code/Sitecore.Foundation.Accounts.csproj | 4 +++- .../code/Sitecore.Foundation.SitecoreExtensions.csproj | 9 +++++++-- src/Project/Habitat/code/Sitecore.Habitat.Website.csproj | 4 +++- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/src/Feature/Accounts/code/Sitecore.Feature.Accounts.csproj b/src/Feature/Accounts/code/Sitecore.Feature.Accounts.csproj index 5d4d4e665c..b7d07a70a2 100644 --- a/src/Feature/Accounts/code/Sitecore.Feature.Accounts.csproj +++ b/src/Feature/Accounts/code/Sitecore.Feature.Accounts.csproj @@ -1,4 +1,4 @@ - + @@ -109,7 +109,10 @@ Designer - + + True + Designer + diff --git a/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj b/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj index c3972208cd..17d490f134 100644 --- a/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj +++ b/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj @@ -115,7 +115,9 @@ - + + true + Web.config diff --git a/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj b/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj index 29936d82c0..9d4367a23b 100644 --- a/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj +++ b/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj @@ -1,4 +1,4 @@ - + @@ -131,9 +131,14 @@ Designer - + + true + + + true + web.config diff --git a/src/Project/Habitat/code/Sitecore.Habitat.Website.csproj b/src/Project/Habitat/code/Sitecore.Habitat.Website.csproj index 71d9e5b55d..1b73f64b78 100644 --- a/src/Project/Habitat/code/Sitecore.Habitat.Website.csproj +++ b/src/Project/Habitat/code/Sitecore.Habitat.Website.csproj @@ -110,7 +110,9 @@ Designer - + + true + From 5c0554f3e40123f0f6b1d4e8aff4284b562096db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Wed, 24 Oct 2018 16:14:20 +0200 Subject: [PATCH 09/14] Helix.Module.targets added --- src/WebRoot/Helix.Module.targets | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/WebRoot/Helix.Module.targets diff --git a/src/WebRoot/Helix.Module.targets b/src/WebRoot/Helix.Module.targets new file mode 100644 index 0000000000..5bc14f27dd --- /dev/null +++ b/src/WebRoot/Helix.Module.targets @@ -0,0 +1,21 @@ + + + + + + false + + + + + + + <_TransformFilesToApplyOnPublish Include="@(_NoneWithTargetPath->'%(FullPath)')" Condition="'%(ApplyTransformOnPublish)' == 'true'"/> + + + + + \ No newline at end of file From f3cbab33d93e461b2d6eb78af48304991fd076d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Wed, 24 Oct 2018 17:18:00 +0200 Subject: [PATCH 10/14] SlowCheetah installed --- src/WebRoot/WebRoot.csproj | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/WebRoot/WebRoot.csproj b/src/WebRoot/WebRoot.csproj index 3d0630dbc3..e074c5cc5c 100644 --- a/src/WebRoot/WebRoot.csproj +++ b/src/WebRoot/WebRoot.csproj @@ -1,4 +1,4 @@ - + Debug @@ -201,6 +201,11 @@ 2.0.0 + + 3.1.66 + runtime; build; native; contentfiles; analyzers + all + 10.0 From 929553ca0cdad477675141080a9a9770c7d35a03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Wed, 24 Oct 2018 17:23:06 +0200 Subject: [PATCH 11/14] Helix.targets updated --- src/WebRoot/Helix.targets | 59 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 56 insertions(+), 3 deletions(-) diff --git a/src/WebRoot/Helix.targets b/src/WebRoot/Helix.targets index af12ce36dd..cf039008b6 100644 --- a/src/WebRoot/Helix.targets +++ b/src/WebRoot/Helix.targets @@ -1,5 +1,7 @@  + + $(PipelineCollectFilesPhaseDependsOn); @@ -9,15 +11,66 @@ - + - + %(TargetPath) - + + + + + + + + + $(PipelineCollectFilesPhaseDependsOn); + CollectTransformFilesToApplyOnPublish; + + + + + + + + + + + %(FullPath) + $([System.IO.Path]::Combine($([System.IO.Path]::GetDirectoryName(%(TargetPath))),%(Filename))) + + + + $(_PackageTempDir)\%(TargetPathToFileToTransform) + $(PublishUrl)\%(TargetPathToFileToTransform) + + + + + + + + %(TargetPathToFileToTransform) + + + + + + + + + + + + + + \ No newline at end of file From 4dbb8ccc9e9be3ac9766fd775cdcdbaa0cd56103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Wed, 24 Oct 2018 17:23:26 +0200 Subject: [PATCH 12/14] adding one missing reference --- src/WebRoot/WebRoot.csproj | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/WebRoot/WebRoot.csproj b/src/WebRoot/WebRoot.csproj index e074c5cc5c..eada30f673 100644 --- a/src/WebRoot/WebRoot.csproj +++ b/src/WebRoot/WebRoot.csproj @@ -196,6 +196,10 @@ {c98ead78-4d83-4789-a621-6011c3d7314d} Sitecore.Common.Website + + {86cadb26-5817-46b6-88c7-76d5753722c3} + Sitecore.Habitat.Website + From 59829adb32f134a3e73f33615369e1730e6b9558 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Thu, 25 Oct 2018 13:11:38 +0200 Subject: [PATCH 13/14] Unicorn.MSBuild installed and configured --- src/WebRoot/WebRoot.csproj | 5 +++++ src/WebRoot/WebRoot.wpp.targets | 7 +++++++ 2 files changed, 12 insertions(+) create mode 100644 src/WebRoot/WebRoot.wpp.targets diff --git a/src/WebRoot/WebRoot.csproj b/src/WebRoot/WebRoot.csproj index eada30f673..a168f33c78 100644 --- a/src/WebRoot/WebRoot.csproj +++ b/src/WebRoot/WebRoot.csproj @@ -210,6 +210,11 @@ runtime; build; native; contentfiles; analyzers all + + 1.0.0 + runtime; build; native; contentfiles; analyzers + all + 10.0 diff --git a/src/WebRoot/WebRoot.wpp.targets b/src/WebRoot/WebRoot.wpp.targets new file mode 100644 index 0000000000..67df190bc0 --- /dev/null +++ b/src/WebRoot/WebRoot.wpp.targets @@ -0,0 +1,7 @@ + + + + https://habitat.sc/unicorn.aspx + 749CABBC85EAD20CE55E2C6066F1BE375D2115696C8A8B24DB6ED1FD60613086 + + \ No newline at end of file From 2bf8ee29530d5f7d495869e5a5c46dde8cf0647b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Mucha?= Date: Thu, 25 Oct 2018 13:12:18 +0200 Subject: [PATCH 14/14] publish url changed to the path --- publishsettings.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publishsettings.targets b/publishsettings.targets index 3786a9e610..2eddff00d0 100644 --- a/publishsettings.targets +++ b/publishsettings.targets @@ -1,6 +1,6 @@ - http://habitat.dev.local + C:\inetpub\wwwroot\habitat.dev.local packages.config