mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 11:19:31 -06:00
36 lines
1.2 KiB
XML
36 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>FileFlows.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
|
|
<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>Gotify</Product>
|
|
<PackageProjectUrl>https://fileflows.com/</PackageProjectUrl>
|
|
<Description>Lets you send Gotify messages to a server</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Gotify.en.json" />
|
|
</ItemGroup>
|
|
|
|
<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 Update="i18n\*.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|