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

83 lines
3.2 KiB
XML
Raw Normal View History

2020-05-12 22:33:36 +00:00
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2020-03-02 01:22:26 +00:00
2013-12-19 15:51:20 +00:00
<PropertyGroup>
2020-03-02 01:22:26 +00:00
<TargetFramework>netcoreapp3.1</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>
2013-12-19 15:51:20 +00:00
</PropertyGroup>
<PropertyGroup>
<Version>1.0.0</Version>
<PackageVersion>1.0.0</PackageVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<PackageId>Flow.Launcher.Plugin</PackageId>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
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>
</PropertyGroup>
2013-12-19 15:51:20 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<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>
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' ">
<DebugType>pdbonly</DebugType>
<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>
2020-03-02 01:22:26 +00:00
<None Include="README.md" />
2013-12-19 15:51:20 +00:00
</ItemGroup>
2020-03-02 01:22:26 +00:00
2014-12-29 13:55:27 +00:00
<ItemGroup>
2020-03-02 01:22:26 +00:00
<None Remove="FodyWeavers.xml" />
2014-12-29 13:55:27 +00:00
</ItemGroup>
2020-03-02 01:22:26 +00:00
<ItemGroup>
<Compile Include="..\SolutionAssemblyInfo.cs" Link="Properties\SolutionAssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="FodyWeavers.xml" />
</ItemGroup>
2020-03-02 01:22:26 +00:00
2020-01-14 19:10:54 +00:00
<ItemGroup>
2020-05-05 10:13:17 +00:00
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
2020-03-02 01:22:26 +00:00
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
<PackageReference Include="Mono.Cecil" Version="0.11.2" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="PropertyChanged.Fody" Version="3.2.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2020-03-02 01:22:26 +00:00
<PackageReference Include="System.Runtime" Version="4.3.1" />
</ItemGroup>
2013-12-19 15:51:20 +00:00
</Project>