2021-06-24 08:47:37 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2022-02-24 10:24:27 +01:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
2021-06-24 08:47:37 +02:00
|
|
|
|
2022-02-24 10:24:27 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="CommandLineParser" Version="2.8.0" />
|
|
|
|
|
<PackageReference Include="NJsonSchema" Version="10.5.2" />
|
|
|
|
|
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="Umbraco.Deploy.Core" Version="9.2.0" />
|
|
|
|
|
<PackageReference Include="Umbraco.Forms.Core" Version="9.2.0" />
|
|
|
|
|
</ItemGroup>
|
2021-06-24 08:47:37 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="CommandLineParser" Version="2.8.0" />
|
2021-08-06 10:36:48 +01:00
|
|
|
<PackageReference Include="NJsonSchema" Version="10.5.2" />
|
2021-06-24 08:47:37 +02:00
|
|
|
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />
|
2022-03-08 16:33:43 +01:00
|
|
|
<PackageReference Include="Umbraco.Deploy.Core" Version="9.3.0" />
|
|
|
|
|
<PackageReference Include="Umbraco.Forms.Core" Version="9.3.0" />
|
2021-06-24 08:47:37 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-02-24 10:24:27 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Umbraco.Core\Umbraco.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
2021-06-24 08:47:37 +02:00
|
|
|
|
2022-02-24 10:24:27 +01:00
|
|
|
<!-- Copy Forms XML docs-->
|
2021-06-25 09:35:39 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<Target Name="CopyPackagesXml" BeforeTargets="Build">
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReferenceFiles Include="$(NugetPackageRoot)%(PackageReference.Identity)\%(PackageReference.Version)%(PackageReference.CopyToOutputDirectory)\lib\**\*.xml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Copy SourceFiles="@(PackageReferenceFiles)" DestinationFolder="$(OutDir)" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2021-06-24 08:47:37 +02:00
|
|
|
</Project>
|