-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFlow.Launcher.Plugin.VisualStudio.csproj
36 lines (31 loc) · 1.35 KB
/
Flow.Launcher.Plugin.VisualStudio.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
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<AssemblyName>Flow.Launcher.Plugin.VisualStudio</AssemblyName>
<PackageId>Flow.Launcher.Plugin.VisualStudio</PackageId>
<Authors>Odotocodot</Authors>
<PackageProjectUrl>https://github.com/Odotocodot/Flow.Launcher.Plugin.VisualStudio</PackageProjectUrl>
<RepositoryUrl>https://github.com/Odotocodot/Flow.Launcher.Plugin.VisualStudio</RepositoryUrl>
<PackageTags>flow-launcher flow-plugin</PackageTags>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugSymbols>false</DebugSymbols>
<DebugType>None</DebugType>
</PropertyGroup>
<ItemGroup>
<Content Include="Images\*.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="plugin.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Flow.Launcher.Plugin" Version="4.1.0" />
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
</ItemGroup>
</Project>