2020-03-20 09:43:42 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<PropertyGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<ProjectGuid>{FDB3555B-58EF-4AE6-B5F1-904719637AB4}</ProjectGuid>
|
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
|
<RootNamespace>Wox.Plugin.Program</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Wox.Plugin.Program</AssemblyName>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
<UseWpf>true</UseWpf>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2015-04-20 20:32:10 -04:00
|
|
|
|
</PropertyGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<Optimize>false</Optimize>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\Wox.Plugin.Program\</OutputPath>
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
|
</PropertyGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\Wox.Plugin.Program\</OutputPath>
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
|
</PropertyGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<ItemGroup>
|
2016-08-18 01:16:40 +01:00
|
|
|
|
<Reference Include="AppxPackagingTlb">
|
|
|
|
|
|
<HintPath>.\AppxPackagingTlb.dll</HintPath>
|
|
|
|
|
|
<EmbedInteropTypes>True</EmbedInteropTypes>
|
|
|
|
|
|
</Reference>
|
|
|
|
|
|
<Reference Include="ShObjIdlTlb">
|
|
|
|
|
|
<HintPath>.\ShObjIdlTlb.dll</HintPath>
|
|
|
|
|
|
<EmbedInteropTypes>True</EmbedInteropTypes>
|
|
|
|
|
|
</Reference>
|
2015-04-20 20:32:10 -04:00
|
|
|
|
</ItemGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="Images\program.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Include="Images\cmd.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Include="Images\folder.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2019-10-17 22:47:00 +11:00
|
|
|
|
<None Include="Images\disable.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2019-12-10 22:01:12 +11:00
|
|
|
|
<None Include="Images\user.png">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<Content Include="Languages\en.xaml">
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
</ItemGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<ItemGroup>
|
2016-06-11 15:47:03 +02:00
|
|
|
|
<Content Include="Languages\zh-cn.xaml">
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2016-06-11 15:47:03 +02:00
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Include="Languages\zh-tw.xaml">
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2016-06-11 15:47:03 +02:00
|
|
|
|
</Content>
|
2016-02-28 17:22:51 +01:00
|
|
|
|
<Content Include="Languages\de.xaml">
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2016-06-13 23:24:23 +02:00
|
|
|
|
<Content Include="Languages\pl.xaml">
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
2019-10-07 18:08:06 +03:00
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Content Include="Languages\tr.xaml">
|
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
2016-06-13 23:24:23 +02:00
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2015-04-20 20:32:10 -04:00
|
|
|
|
</ItemGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2015-04-20 20:32:10 -04:00
|
|
|
|
<ItemGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
|
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
|
|
|
|
<PackageReference Include="NLog" Version="4.7.0-rc1" />
|
|
|
|
|
|
<PackageReference Include="System.Runtime" Version="4.3.1" />
|
|
|
|
|
|
<PackageReference Include="UwpDesktop" Version="10.0.14393.3" />
|
2015-04-20 20:32:10 -04:00
|
|
|
|
</ItemGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
|
2020-01-14 21:10:54 +02:00
|
|
|
|
<ItemGroup>
|
2020-03-20 09:43:42 -07:00
|
|
|
|
<Folder Include="Properties\" />
|
2020-01-14 21:10:54 +02:00
|
|
|
|
</ItemGroup>
|
2015-11-04 16:40:10 +00:00
|
|
|
|
</Project>
|