-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Flow.Launcher.Plugin.Template.csproj
28 lines (28 loc) · 1.48 KB
/
Flow.Launcher.Plugin.Template.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Flow.Launcher.Plugin.Template</PackageId>
<Title>Flow-Launcher Plugin template for dotnet-new.</Title>
<Description>A dotnet-new template to start off plugins for the Flow Launcher.</Description>
<Authors>Flow-Launcher</Authors>
<PackageProjectUrl>https://github.com/Flow-Launcher/dotnet-template</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Flow-Launcher/dotnet-template.git</RepositoryUrl>
<PackageTags>flow-launcher;flow-plugin;template;dotnet-new</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageType>Template</PackageType>
<PackageVersion>4.2.0</PackageVersion>
<PackageReleaseNotes>- update Flow.Launcher.Plugin to 4.4.0</PackageReleaseNotes>
<NoBuild>true</NoBuild>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<NoDefaultExcludes>true</NoDefaultExcludes>
<ContentTargetFolders>content</ContentTargetFolders>
<TargetFramework>netstandard0.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="Flow.Launcher.Plugin.Template\**\*" Exclude="Flow.Launcher.Plugin.Template\**\bin\**;Flow.Launcher.Plugin.Template\**\obj\**" />
<Compile Remove="**\*" />
<None Include="Readme.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>