* Moved to centralized nuget packages * Handle JsonSchema * Change PackageReference to PackageVersion * Opt out of central package management for mangement api (at least for versions less than 14) and the UI project * ManagePackageVersionsCentrally = false * Change folder acceptance tests are build, to avoid reading the test Directory.Packages.props * Change folder acceptance tests are build, to avoid reading the test Directory.Packages.props * change working directory * workingDirectory * Force the template to use local nuget packages * Force the template to use local nuget packages * clean up * added wait on * added wait on
24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ContentTargetFolders>.</ContentTargetFolders>
|
|
<Product>UmbracoPackage</Product>
|
|
<PackageId>UmbracoPackage</PackageId>
|
|
<Title>UmbracoPackage</Title>
|
|
<Description>...</Description>
|
|
<PackageTags>umbraco plugin package</PackageTags>
|
|
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">UmbracoPackage</RootNamespace>
|
|
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Umbraco.Cms.Web.Website" Version="UMBRACO_VERSION_FROM_TEMPLATE" />
|
|
<PackageReference Include="Umbraco.Cms.Web.BackOffice" Version="UMBRACO_VERSION_FROM_TEMPLATE" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="App_Plugins\UmbracoPackage\**" ExcludeFromSingleFile="true" CopyToPublishDirectory="Always" />
|
|
<None Include="buildTransitive\**" Pack="true" PackagePath="buildTransitive" />
|
|
</ItemGroup>
|
|
</Project>
|