Flow.Launcher/Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj

87 lines
3.5 KiB
XML
Raw Permalink Normal View History

2025-09-21 12:23:00 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2020-03-02 01:22:26 +00:00
2013-12-19 15:51:20 +00:00
<PropertyGroup>
2025-02-26 14:37:41 +00:00
<TargetFramework>net9.0-windows</TargetFramework>
2013-12-19 15:51:20 +00:00
<ProjectGuid>{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}</ProjectGuid>
2020-03-02 01:22:26 +00:00
<UseWPF>true</UseWPF>
2013-12-19 15:51:20 +00:00
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
2020-04-21 09:12:17 +00:00
<RootNamespace>Flow.Launcher.Plugin</RootNamespace>
<AssemblyName>Flow.Launcher.Plugin</AssemblyName>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2025-02-28 08:23:45 +00:00
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
2013-12-19 15:51:20 +00:00
</PropertyGroup>
<PropertyGroup>
2026-02-24 11:52:23 +00:00
<Version>5.2.0</Version>
<PackageVersion>5.2.0</PackageVersion>
<AssemblyVersion>5.2.0</AssemblyVersion>
<FileVersion>5.2.0</FileVersion>
<PackageId>Flow.Launcher.Plugin</PackageId>
2020-05-12 22:33:36 +00:00
<Authors>Flow-Launcher</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Flow-Launcher/Flow.Launcher</RepositoryUrl>
<PackageDescription>Reference this library if you want to develop a Flow Launcher plugin</PackageDescription>
<PackageTags>flowlauncher</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2020-05-05 10:13:17 +00:00
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2023-06-18 20:32:15 +00:00
<PackageReadmeFile>Readme.md</PackageReadmeFile>
2025-07-07 05:46:44 +00:00
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(APPVEYOR)' == 'True'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
2013-12-19 15:51:20 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
2013-12-19 15:51:20 +00:00
<Optimize>false</Optimize>
2014-03-17 13:49:54 +00:00
<OutputPath>..\Output\Debug\</OutputPath>
2013-12-19 15:51:20 +00:00
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
2015-11-07 03:03:54 +00:00
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>..\Output\Debug\Flow.Launcher.Plugin.xml</DocumentationFile>
2013-12-19 15:51:20 +00:00
</PropertyGroup>
2020-03-02 01:22:26 +00:00
2013-12-19 15:51:20 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2020-05-26 22:37:07 +00:00
<DebugType>embedded</DebugType>
2013-12-19 15:51:20 +00:00
<Optimize>true</Optimize>
2014-03-17 13:49:54 +00:00
<OutputPath>..\Output\Release\</OutputPath>
2013-12-19 15:51:20 +00:00
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-11-07 03:03:54 +00:00
<Prefer32Bit>false</Prefer32Bit>
2013-12-19 15:51:20 +00:00
</PropertyGroup>
2020-03-02 01:22:26 +00:00
2013-12-19 15:51:20 +00:00
<ItemGroup>
2024-12-10 07:24:19 +00:00
<AdditionalFiles Include="NativeMethods.txt" />
</ItemGroup>
<ItemGroup>
<None Include="Readme.md" Pack="true" PackagePath="\" />
2020-05-26 22:47:08 +00:00
<None Include="FodyWeavers.xml" />
</ItemGroup>
2020-03-02 01:22:26 +00:00
2020-01-14 19:10:54 +00:00
<ItemGroup>
2025-09-21 12:23:00 +00:00
<PackageReference Include="Fody" Version="6.9.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2026-02-24 11:52:23 +00:00
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.103" PrivateAssets="All" />
2025-09-21 12:23:00 +00:00
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
2026-02-24 11:52:23 +00:00
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.269">
2024-12-10 07:24:19 +00:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2025-07-19 12:26:33 +00:00
<PackageReference Include="PropertyChanged.Fody" Version="4.1.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
2020-03-02 01:22:26 +00:00
</ItemGroup>
</Project>