From f43f37dc35fb973bcaa09ae2462e3c350e506c6f Mon Sep 17 00:00:00 2001 From: Warren Buckley Date: Tue, 4 May 2021 17:58:50 +0100 Subject: [PATCH] Umbraco V9 Adds SourceLink package from Microsoft for people to debug into the relevent build commit with GitHub source code (#10224) We had this previously in Umbraco V8 --- src/Umbraco.Core/Umbraco.Core.csproj | 14 ++++++++++++ .../Umbraco.Examine.Lucene.csproj | 22 ++++++++++++++----- .../Umbraco.Infrastructure.csproj | 10 +++++++++ .../Umbraco.Persistence.SqlCe.csproj | 16 +++++++++++++- .../Umbraco.PublishedCache.NuCache.csproj | 20 ++++++++++++++--- .../Umbraco.Tests.Common.csproj | 16 +++++++++++++- .../Umbraco.Web.BackOffice.csproj | 15 +++++++++++++ .../Umbraco.Web.Common.csproj | 14 ++++++++++++ .../Umbraco.Web.UI.NetCore.csproj | 14 ++++++++++++ .../Umbraco.Web.Website.csproj | 14 ++++++++++++ 10 files changed, 144 insertions(+), 11 deletions(-) diff --git a/src/Umbraco.Core/Umbraco.Core.csproj b/src/Umbraco.Core/Umbraco.Core.csproj index 7abbff9815..cc461be6a2 100644 --- a/src/Umbraco.Core/Umbraco.Core.csproj +++ b/src/Umbraco.Core/Umbraco.Core.csproj @@ -8,6 +8,16 @@ Umbraco CMS Core Contains the core assembly needed to run Umbraco Cms. This package only contains the assembly, and can be used for package development. Use the template in the Umbraco.Templates package to setup Umbraco Umbraco CMS + + + true + + + true + + + true + snupkg @@ -22,6 +32,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Umbraco.Examine.Lucene/Umbraco.Examine.Lucene.csproj b/src/Umbraco.Examine.Lucene/Umbraco.Examine.Lucene.csproj index 30baa3c9de..c563f1e334 100644 --- a/src/Umbraco.Examine.Lucene/Umbraco.Examine.Lucene.csproj +++ b/src/Umbraco.Examine.Lucene/Umbraco.Examine.Lucene.csproj @@ -1,4 +1,4 @@ - + net472 @@ -10,6 +10,16 @@ false Umbraco.Cms.Examine.Lucene + + + true + + + true + + + true + snupkg @@ -36,11 +46,11 @@ - - 1.0.0 - runtime; build; native; contentfiles; analyzers; buildtransitive - all - + + 1.0.0 + runtime; build; native; contentfiles; analyzers; buildtransitive + all + diff --git a/src/Umbraco.Infrastructure/Umbraco.Infrastructure.csproj b/src/Umbraco.Infrastructure/Umbraco.Infrastructure.csproj index 9df72edf84..fa3063071a 100644 --- a/src/Umbraco.Infrastructure/Umbraco.Infrastructure.csproj +++ b/src/Umbraco.Infrastructure/Umbraco.Infrastructure.csproj @@ -6,6 +6,16 @@ Umbraco.Cms.Infrastructure Umbraco CMS Infrastructure Contains the infrastructure assembly needed to run Umbraco Cms. This package only contains the assembly, and can be used for package development. Use the template in the Umbraco.Templates package to setup Umbraco + + + true + + + true + + + true + snupkg diff --git a/src/Umbraco.Persistence.SqlCe/Umbraco.Persistence.SqlCe.csproj b/src/Umbraco.Persistence.SqlCe/Umbraco.Persistence.SqlCe.csproj index 090c47fe0c..4cf1c0635e 100644 --- a/src/Umbraco.Persistence.SqlCe/Umbraco.Persistence.SqlCe.csproj +++ b/src/Umbraco.Persistence.SqlCe/Umbraco.Persistence.SqlCe.csproj @@ -1,8 +1,18 @@ - + net472 Umbraco.Cms.Persistence.SqlCe + + + true + + + true + + + true + snupkg @@ -14,6 +24,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + all diff --git a/src/Umbraco.PublishedCache.NuCache/Umbraco.PublishedCache.NuCache.csproj b/src/Umbraco.PublishedCache.NuCache/Umbraco.PublishedCache.NuCache.csproj index b99f767b8e..b01dffb3bb 100644 --- a/src/Umbraco.PublishedCache.NuCache/Umbraco.PublishedCache.NuCache.csproj +++ b/src/Umbraco.PublishedCache.NuCache/Umbraco.PublishedCache.NuCache.csproj @@ -1,12 +1,22 @@ - + netstandard2.0 Umbraco.Cms.Infrastructure.PublishedCache 8 Umbraco.Cms.PublishedCache.NuCache - Umbraco CMS Published Cache - Contains the Published Cache assembly needed to run Umbraco Cms. This package only contains the assembly, and can be used for package development. Use the template in the Umbraco.Templates package to setup Umbraco + Umbraco CMS Published Cache + Contains the Published Cache assembly needed to run Umbraco Cms. This package only contains the assembly, and can be used for package development. Use the template in the Umbraco.Templates package to setup Umbraco + + + true + + + true + + + true + snupkg @@ -15,6 +25,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + all diff --git a/src/Umbraco.Tests.Common/Umbraco.Tests.Common.csproj b/src/Umbraco.Tests.Common/Umbraco.Tests.Common.csproj index a13d6b763b..79415d3e3c 100644 --- a/src/Umbraco.Tests.Common/Umbraco.Tests.Common.csproj +++ b/src/Umbraco.Tests.Common/Umbraco.Tests.Common.csproj @@ -1,4 +1,4 @@ - + netstandard2.0 @@ -6,10 +6,24 @@ Umbraco.Cms.Tests Umbraco CMS Test Tools Contains commonly used tools to write tests for Umbraco CMS, such as various builders for content etc. + + + true + + + true + + + true + snupkg + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Umbraco.Web.BackOffice/Umbraco.Web.BackOffice.csproj b/src/Umbraco.Web.BackOffice/Umbraco.Web.BackOffice.csproj index 9d12be6c79..7cdd8848fa 100644 --- a/src/Umbraco.Web.BackOffice/Umbraco.Web.BackOffice.csproj +++ b/src/Umbraco.Web.BackOffice/Umbraco.Web.BackOffice.csproj @@ -7,6 +7,17 @@ Umbraco.Cms.Web.BackOffice Umbraco CMS Back Office Contains the Back Office assembly needed to run the back office of Umbraco Cms. This package only contains the assembly, and can be used for package development. Use the template in the Umbraco.Templates package to setup Umbraco + + + true + + + true + + + true + snupkg + @@ -20,6 +31,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Umbraco.Web.Common/Umbraco.Web.Common.csproj b/src/Umbraco.Web.Common/Umbraco.Web.Common.csproj index 125d0f1585..996f99cf5d 100644 --- a/src/Umbraco.Web.Common/Umbraco.Web.Common.csproj +++ b/src/Umbraco.Web.Common/Umbraco.Web.Common.csproj @@ -7,6 +7,16 @@ Umbraco.Cms.Web.Common Umbraco CMS Web Contains the Web assembly needed to run Umbraco Cms. This package only contains the assembly, and can be used for package development. Use the template in the Umbraco.Templates package to setup Umbraco + + + true + + + true + + + true + snupkg @@ -26,6 +36,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Umbraco.Web.UI.NetCore/Umbraco.Web.UI.NetCore.csproj b/src/Umbraco.Web.UI.NetCore/Umbraco.Web.UI.NetCore.csproj index e55b6dec1f..bc20bcd4a0 100644 --- a/src/Umbraco.Web.UI.NetCore/Umbraco.Web.UI.NetCore.csproj +++ b/src/Umbraco.Web.UI.NetCore/Umbraco.Web.UI.NetCore.csproj @@ -3,6 +3,16 @@ net5.0 Umbraco.Cms.Web.UI.NetCore + + + true + + + true + + + true + snupkg bin\Release\Umbraco.Web.UI.NetCore.xml @@ -73,6 +83,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Umbraco.Web.Website/Umbraco.Web.Website.csproj b/src/Umbraco.Web.Website/Umbraco.Web.Website.csproj index 043656b23a..d530fe3f97 100644 --- a/src/Umbraco.Web.Website/Umbraco.Web.Website.csproj +++ b/src/Umbraco.Web.Website/Umbraco.Web.Website.csproj @@ -7,6 +7,16 @@ Umbraco.Cms.Web.Website Umbraco CMS Website Contains the Website assembly needed to run Umbraco Cms (Front office). This package only contains the assembly, and can be used for package development. Use the template in the Umbraco.Templates package to setup Umbraco + + + true + + + true + + + true + snupkg @@ -28,6 +38,10 @@ + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + all