2015-04-21 08:32:10 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProjectGuid>{FDB3555B-58EF-4AE6-B5F1-904719637AB4}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>Wox.Plugin.Program</RootNamespace>
|
|
|
|
|
<AssemblyName>Wox.Plugin.Program</AssemblyName>
|
2015-11-07 11:03:54 +08:00
|
|
|
|
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
|
|
|
|
|
<TargetFrameworkProfile />
|
2016-08-18 08:16:40 +08:00
|
|
|
|
<NuGetPackageImportStamp>
|
|
|
|
|
</NuGetPackageImportStamp>
|
2015-04-21 08:32:10 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\Wox.Plugin.Program\</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\Wox.Plugin.Program\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2016-08-18 08:16:40 +08:00
|
|
|
|
<Reference Include="AppxPackagingTlb">
|
|
|
|
|
<HintPath>.\AppxPackagingTlb.dll</HintPath>
|
|
|
|
|
<EmbedInteropTypes>True</EmbedInteropTypes>
|
|
|
|
|
</Reference>
|
2015-12-13 21:36:29 +08:00
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Reference Include="PresentationCore" />
|
|
|
|
|
<Reference Include="PresentationFramework" />
|
2016-08-18 08:16:40 +08:00
|
|
|
|
<Reference Include="ShObjIdlTlb">
|
|
|
|
|
<HintPath>.\ShObjIdlTlb.dll</HintPath>
|
|
|
|
|
<EmbedInteropTypes>True</EmbedInteropTypes>
|
|
|
|
|
</Reference>
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
<Reference Include="System.Windows.Forms" />
|
2015-11-07 11:03:54 +08:00
|
|
|
|
<Reference Include="System.Xaml" />
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Reference Include="System.Xml" />
|
2016-11-29 09:18:38 +08:00
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Reference Include="WindowsBase" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2015-04-22 21:22:55 +08:00
|
|
|
|
<Page Include="AddProgramSource.xaml" />
|
2015-11-28 18:47:42 +08:00
|
|
|
|
<Compile Include="..\..\SolutionAssemblyInfo.cs">
|
|
|
|
|
<Link>Properties\SolutionAssemblyInfo.cs</Link>
|
|
|
|
|
</Compile>
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Compile Include="AddProgramSource.xaml.cs">
|
|
|
|
|
<DependentUpon>AddProgramSource.xaml</DependentUpon>
|
|
|
|
|
</Compile>
|
2019-10-25 10:11:52 +08:00
|
|
|
|
<Compile Include="Logger\ProgramLogger.cs" />
|
2019-09-08 20:16:47 +08:00
|
|
|
|
<Compile Include="Views\Commands\ProgramSettingDisplay.cs" />
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Compile Include="FileChangeWatcher.cs" />
|
2019-09-08 20:16:47 +08:00
|
|
|
|
<Compile Include="Views\Models\ProgramSource.cs" />
|
2016-08-22 09:21:22 +08:00
|
|
|
|
<Compile Include="Programs\IProgram.cs" />
|
2016-08-20 06:25:36 +08:00
|
|
|
|
<Compile Include="Programs\UWP.cs" />
|
|
|
|
|
<Compile Include="Programs\Win32.cs" />
|
2016-04-24 09:51:20 +08:00
|
|
|
|
<Compile Include="SuffixesConverter.cs" />
|
2016-05-07 10:55:09 +08:00
|
|
|
|
<Compile Include="Main.cs" />
|
2019-09-08 20:16:47 +08:00
|
|
|
|
<Compile Include="Views\ProgramSetting.xaml.cs">
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<DependentUpon>ProgramSetting.xaml</DependentUpon>
|
|
|
|
|
</Compile>
|
2016-04-22 03:56:53 +08:00
|
|
|
|
<Compile Include="Settings.cs" />
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Compile Include="ProgramSuffixes.xaml.cs">
|
|
|
|
|
<DependentUpon>ProgramSuffixes.xaml</DependentUpon>
|
|
|
|
|
</Compile>
|
2016-04-24 09:52:19 +08:00
|
|
|
|
<Compile Include="LocationConverter.cs" />
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<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 19:47:00 +08:00
|
|
|
|
<None Include="Images\disable.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2019-12-10 19:01:12 +08:00
|
|
|
|
<None Include="Images\user.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Content Include="Languages\en.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2016-06-11 21:47:03 +08:00
|
|
|
|
<Content Include="Languages\zh-cn.xaml">
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2016-06-11 21:47:03 +08:00
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Languages\zh-tw.xaml">
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2016-06-11 21:47:03 +08:00
|
|
|
|
</Content>
|
2016-02-29 00:22:51 +08:00
|
|
|
|
<Content Include="Languages\de.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2016-06-14 05:24:23 +08:00
|
|
|
|
<Content Include="Languages\pl.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
2019-10-07 23:08:06 +08:00
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Languages\tr.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
2016-06-14 05:24:23 +08:00
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-09-08 20:16:47 +08:00
|
|
|
|
<Page Include="Views\ProgramSetting.xaml">
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Page>
|
|
|
|
|
<Page Include="ProgramSuffixes.xaml">
|
|
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</Page>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj">
|
|
|
|
|
<Project>{4fd29318-a8ab-4d8f-aa47-60bc241b8da3}</Project>
|
|
|
|
|
<Name>Wox.Infrastructure</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj">
|
|
|
|
|
<Project>{8451ecdd-2ea4-4966-bb0a-7bbc40138e80}</Project>
|
|
|
|
|
<Name>Wox.Plugin</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
2020-01-15 03:10:54 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="JetBrains.Annotations">
|
|
|
|
|
<Version>10.3.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json">
|
|
|
|
|
<Version>9.0.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="NLog">
|
|
|
|
|
<Version>4.2.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="System.Runtime">
|
|
|
|
|
<Version>4.0.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="UwpDesktop">
|
|
|
|
|
<Version>10.0.14393.3</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2015-04-21 08:32:10 +08:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
2015-01-14 22:19:44 +08:00
|
|
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
|
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
|
|
|
<Target Name="BeforeBuild">
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="AfterBuild">
|
|
|
|
|
</Target>
|
2015-04-21 08:32:10 +08:00
|
|
|
|
-->
|
2015-11-05 00:40:10 +08:00
|
|
|
|
</Project>
|