mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-04 15:19:49 -06:00
42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
|
<FileVersion>0.8.4.152</FileVersion>
|
|
<ProductVersion>0.8.4.152</ProductVersion>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<Company>FileFlows</Company>
|
|
<Authors>John Andrews</Authors>
|
|
<Product>Apprise</Product>
|
|
<PackageProjectUrl>https://fileflows.com/</PackageProjectUrl>
|
|
<Description>Lets you send Apprise messages to a server</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Apprise.en.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Apprise.en.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug'">
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="FileFlows.Plugin">
|
|
<HintPath>..\FileFlows.Plugin.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|