mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
# Conflicts: # Flow.Launcher.Core/Flow.Launcher.Core.csproj # Flow.Launcher.Infrastructure/Image/ImageCache.cs # Flow.Launcher.Infrastructure/Image/ImageLoader.cs # Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj # Flow.Launcher/App.xaml.cs # Flow.Launcher/Flow.Launcher.csproj # Flow.Launcher/Helper/SingleInstance.cs # Flow.Launcher/MainWindow.axaml.cs # Flow.Launcher/MainWindow.xaml # Flow.Launcher/ResultListBox.xaml.cs # Scripts/post_build.ps1
73 lines
2.9 KiB
XML
73 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<ProjectGuid>{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}</ProjectGuid>
|
|
<UseWPF>true</UseWPF>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Flow.Launcher.Plugin</RootNamespace>
|
|
<AssemblyName>Flow.Launcher.Plugin</AssemblyName>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Version>4.2.0</Version>
|
|
<PackageVersion>4.2.0</PackageVersion>
|
|
<AssemblyVersion>4.2.0</AssemblyVersion>
|
|
<FileVersion>4.2.0</FileVersion>
|
|
<PackageId>Flow.Launcher.Plugin</PackageId>
|
|
<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>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<PackageReadmeFile>Readme.md</PackageReadmeFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(APPVEYOR)' == 'True'">
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>portable</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>..\Output\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
<DocumentationFile>..\Output\Debug\Flow.Launcher.Plugin.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>embedded</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>..\Output\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Readme.md" Pack="true" PackagePath="\"/>
|
|
<None Include="FodyWeavers.xml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Fody" Version="6.5.4">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
|
|
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|