-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlow.Launcher.Plugin.KubernetesContextSwitcher.csproj
More file actions
41 lines (35 loc) · 1.49 KB
/
Copy pathFlow.Launcher.Plugin.KubernetesContextSwitcher.csproj
File metadata and controls
41 lines (35 loc) · 1.49 KB
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
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows7.0</TargetFramework>
<AssemblyName>Flow.Launcher.Plugin.KubernetesContextSwitcher</AssemblyName>
<RootNamespace>Flow.Launcher.Plugin.KubernetesContextSwitcher</RootNamespace>
<Description>A Flow Launcher plugin to switch Kubernetes contexts quickly</Description>
<PackageId>Flow.Launcher.Plugin.KubernetesContextSwitcher</PackageId>
<Version>1.0.1</Version>
<Authors>Robin Hermann</Authors>
<PackageProjectUrl>https://github.com/R-Studio/Flow.Launcher.Plugin.KubernetesContextSwitcher</PackageProjectUrl>
<RepositoryUrl>https://github.com/R-Studio/Flow.Launcher.Plugin.KubernetesContextSwitcher</RepositoryUrl>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Flow.Launcher.Plugin" Version="4.6.0" />
</ItemGroup>
<ItemGroup>
<Content Include="plugin.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Update="images\k8s.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Update="images\error.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>