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>
|
2022-04-20 15:42:27 +02:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-02-24 10:24:27 +01:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
2021-06-24 08:47:37 +02:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-06-20 09:20:47 +02:00
|
|
|
<PackageReference Include="CommandLineParser" Version="2.9.1" />
|
|
|
|
|
<PackageReference Include="NJsonSchema" Version="10.7.2" />
|
2021-06-24 08:47:37 +02:00
|
|
|
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />
|
2022-04-22 09:24:30 +02:00
|
|
|
<PackageReference Include="Umbraco.Deploy.Core" Version="9.3.1" />
|
2022-06-20 09:20:47 +02:00
|
|
|
<PackageReference Include="Umbraco.Forms.Core" Version="10.0.0-rc1" />
|
2022-04-26 11:15:11 +02:00
|
|
|
<PackageReference Include="Umbraco.Deploy.Core" Version="9.4.0" />
|
|
|
|
|
<PackageReference Include="Umbraco.Forms.Core" Version="9.4.0" />
|
2022-06-20 09:20:47 +02:00
|
|
|
<PackageReference Update="Nerdbank.GitVersioning">
|
|
|
|
|
<Version>3.5.107</Version>
|
|
|
|
|
</PackageReference>
|
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>
|