mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-23 18:03:54 +08:00
1d1dc41bb0
* PreviewPane porting .NET core 3.1 * Adding in misspellings Co-authored-by: Clint Rutkas <clint@rutkas.com>
54 lines
2.5 KiB
XML
54 lines
2.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
<PropertyGroup>
|
|
<Platforms>x64</Platforms>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<AssemblyTitle>PreviewHandlerCommon</AssemblyTitle>
|
|
<AssemblyDescription>PowerToys PreviewHandlerCommon</AssemblyDescription>
|
|
<AssemblyCompany>Microsoft Corporation</AssemblyCompany>
|
|
<AssemblyCopyright>Copyright (C) 2020 Microsoft Corporation</AssemblyCopyright>
|
|
<AssemblyProduct>PowerToys</AssemblyProduct>
|
|
<AssemblyTitle>PreviewHandlerCommon</AssemblyTitle>
|
|
<Company>Microsoft Corporation</Company>
|
|
<Product>PowerToys</Product>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
<Description>PowerToys PreviewHandlerCommon</Description>
|
|
<Copyright>Copyright (C) 2020 Microsoft Corporation</Copyright>
|
|
<DocumentationFile>$(SolutionDir)$(Platform)\$(Configuration)\modules\FileExplorerPreview\PreviewHandlerCommonDocumentation.xml</DocumentationFile>
|
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\modules\FileExplorerPreview\</OutputPath>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<ProjectGuid>{AF2349B8-E5B6-4004-9502-687C1C7730B1}</ProjectGuid>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<IntermediateOutputPath>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(AssemblyName)\</IntermediateOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="..\..\..\Version.props" />
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\..\..\codeAnalysis\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
|
|
<Compile Update="controls\WebBrowserExt.cs" />
|
|
<Compile Update="examplehandler\CustomControlTest.cs" />
|
|
<Compile Update="controls\FormHandlerControl.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\..\..\codeAnalysis\StyleCop.json">
|
|
<Link>StyleCop.json</Link>
|
|
</AdditionalFiles>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="System.IO.Abstractions" Version="12.2.5" />
|
|
</ItemGroup>
|
|
</Project> |