-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLayoutFallback.csproj
More file actions
23 lines (21 loc) · 887 Bytes
/
Copy pathLayoutFallback.csproj
File metadata and controls
23 lines (21 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<OutputType>Library</OutputType>
<AssemblyName>Flow.Launcher.Plugin.LayoutFallback</AssemblyName>
<RootNamespace>Flow.Launcher.Plugin.LayoutFallback</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Flow.Launcher.Plugin" Version="4.4.0" />
</ItemGroup>
<ItemGroup>
<Content Include="plugin.json" CopyToOutputDirectory="Always" />
<Content Include="Images\layout-fallback.png" CopyToOutputDirectory="Always" />
</ItemGroup>
</Project>