mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-31 02:30:01 -06:00
43 lines
1.7 KiB
XML
43 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<FileVersion>1.1.1.528</FileVersion>
|
|
<ProductVersion>1.1.1.528</ProductVersion>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<Company>FileFlows</Company>
|
|
<Authors>John Andrews</Authors>
|
|
<Product>Collection Nodes</Product>
|
|
<PackageProjectUrl>https://fileflows.com/</PackageProjectUrl>
|
|
<Description>Nodes that provide the ability to read and write from collections.
|
|
|
|
Allows storing of data to database that persists between flow executions.</Description>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug'">
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.1" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="3.0.4" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="3.0.4" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Remove="CollectionNodes.en.json" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="CollectionNodes.en.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="NPoco" Version="5.7.1" />
|
|
<PackageReference Include="System.Data.SQLite" Version="1.0.117" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Plugin">
|
|
<HintPath>..\FileFlows.Plugin.dll</HintPath>
|
|
<SpecificVersion>False</SpecificVersion>
|
|
</Reference>
|
|
</ItemGroup>
|
|
</Project>
|