2022-06-11 07:45:36 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-06-09 15:04:03 +00:00
|
|
|
|
<PropertyGroup>
|
2021-12-01 10:20:13 +00:00
|
|
|
|
<OutputType>Library</OutputType>
|
2025-02-26 14:37:41 +00:00
|
|
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
2021-12-01 10:20:13 +00:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2021-06-09 15:04:03 +00:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2021-12-01 10:20:13 +00:00
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2021-06-09 15:04:03 +00:00
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2024-05-23 05:03:01 +00:00
|
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
2021-06-09 15:04:03 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2021-12-01 10:20:13 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2021-10-05 04:51:57 +00:00
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.WindowsSettings</OutputPath>
|
2021-06-09 15:04:03 +00:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>false</Optimize>
|
2021-07-19 08:32:57 +00:00
|
|
|
|
<DebugType>portable</DebugType>
|
2021-06-09 15:04:03 +00:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2021-12-01 10:20:13 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
2021-10-05 04:51:57 +00:00
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\Flow.Launcher.Plugin.WindowsSettings</OutputPath>
|
2021-06-09 15:04:03 +00:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
2021-07-19 08:32:57 +00:00
|
|
|
|
<DebugType>portable</DebugType>
|
2021-06-09 15:04:03 +00:00
|
|
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
2022-06-11 07:45:36 +00:00
|
|
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
2021-06-09 15:04:03 +00:00
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-30 21:37:45 +00:00
|
|
|
|
<Content Include="Images\*.png">
|
2021-06-09 15:04:03 +00:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2021-11-30 21:37:45 +00:00
|
|
|
|
</Content>
|
2021-06-09 15:04:03 +00:00
|
|
|
|
</ItemGroup>
|
2022-06-11 07:45:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Include="WindowsSettings.json">
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
2021-07-19 08:32:57 +00:00
|
|
|
|
<ItemGroup>
|
2021-10-04 23:10:00 +00:00
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
2021-07-19 08:32:57 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-05-23 05:03:01 +00:00
|
|
|
|
</Project>
|