2022-03-23 17:35:52 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
<Import Project="..\..\..\..\Version.props" />
|
|
|
|
|
|
|
2020-08-11 00:53:43 +02:00
|
|
|
|
<PropertyGroup>
|
2022-02-07 06:08:30 -08:00
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
2020-08-11 00:53:43 +02:00
|
|
|
|
<ProjectGuid>{03276a39-d4e9-417c-8ffd-200b0ee5e871}</ProjectGuid>
|
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
|
<RootNamespace>Microsoft.Plugin.Uri</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Microsoft.Plugin.Uri</AssemblyName>
|
2020-08-12 14:18:01 -07:00
|
|
|
|
<Version>$(Version).0</Version>
|
2020-08-11 00:53:43 +02:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2022-04-21 04:59:43 -04:00
|
|
|
|
<OutputPath>..\..\..\..\..\$(Platform)\$(Configuration)\modules\launcher\Plugins\Uri\</OutputPath>
|
2020-08-11 00:53:43 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2022-04-21 04:59:43 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
2020-08-11 00:53:43 +02:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>false</Optimize>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<DebugType>full</DebugType>
|
2020-08-11 00:53:43 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2022-04-21 04:59:43 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
2020-08-11 00:53:43 +02:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\..\..\..\codeAnalysis\GlobalSuppressions.cs">
|
|
|
|
|
|
<Link>GlobalSuppressions.cs</Link>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
<AdditionalFiles Include="..\..\..\..\codeAnalysis\StyleCop.json">
|
|
|
|
|
|
<Link>StyleCop.json</Link>
|
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-18 15:19:40 +01:00
|
|
|
|
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj">
|
2020-10-29 14:46:09 -07:00
|
|
|
|
<Private>false</Private>
|
|
|
|
|
|
</ProjectReference>
|
2022-02-18 15:19:40 +01:00
|
|
|
|
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj">
|
2020-10-29 14:46:09 -07:00
|
|
|
|
<Private>false</Private>
|
|
|
|
|
|
</ProjectReference>
|
2020-08-11 00:53:43 +02:00
|
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2020-08-11 00:53:43 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2020-08-11 00:53:43 +02:00
|
|
|
|
<ItemGroup>
|
2022-02-18 15:19:40 +01:00
|
|
|
|
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
|
2022-02-11 17:42:17 +01:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
|
2020-08-11 00:53:43 +02:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
</PackageReference>
|
|
|
|
|
|
<PackageReference Include="System.Runtime" Version="4.3.1" />
|
|
|
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2020-09-02 15:24:59 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2020-09-02 15:24:59 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2020-08-11 00:53:43 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="Images\uri.dark.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\uri.light.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|