mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-11 22:57:59 +08:00
38d537bb8a
* Enable Unit tests for PreviewPane Test Assemblies in CI * Added Preview handlers unit tests project back * throw for Svg to debug tests * Removed failing test * Removed throw statement * Added MD unitests in yml * Run ui tests on STA thread * Throw svg to debug failing tests * Updated test adaptor * Removed failing test to validate CI * throw svg failing test with full stack trace * Check if mock stream is causing the issue * narrow down the failing tests code - 1 * narrow down the failing tests code -2 * dispose all controls * Restore SVg preview control * Update test adaptor and dependency to latest
121 lines
6.5 KiB
XML
121 lines
6.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.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')" />
|
|
<Import Project="..\..\..\..\installer\Version.props" />
|
|
<!-- We don't have GenerateAssemblyInfo task until we use .net core, so we generate it with WriteLinesToFile -->
|
|
<PropertyGroup>
|
|
<AssemblyTitle>UnitTests_PreviewHandlerCommon</AssemblyTitle>
|
|
<AssemblyCompany>Microsoft Corp.</AssemblyCompany>
|
|
<AssemblyCopyright>Copyright (C) 2019 Microsoft Corp.</AssemblyCopyright>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<AssemblyVersionFiles Include="Generated Files\AssemblyInfo.cs" />
|
|
</ItemGroup>
|
|
<Target Name="GenerateAssemblyInfo" BeforeTargets="PrepareForBuild">
|
|
<ItemGroup>
|
|
<HeaderLines Include="// Copyright (c) Microsoft Corporation" />
|
|
<HeaderLines Include="// The Microsoft Corporation licenses this file to you under the MIT license." />
|
|
<HeaderLines Include="// See the LICENSE file in the project root for more information." />
|
|
<HeaderLines Include="#pragma warning disable SA1516" />
|
|
<HeaderLines Include="using System.Reflection%3b" />
|
|
<HeaderLines Include="using System.Resources%3b" />
|
|
<HeaderLines Include="using System.Runtime.CompilerServices%3b" />
|
|
<HeaderLines Include="using System.Runtime.InteropServices%3b" />
|
|
<HeaderLines Include="[assembly: AssemblyTitle("$(AssemblyTitle)")]" />
|
|
<HeaderLines Include="[assembly: AssemblyDescription("")]" />
|
|
<HeaderLines Include="[assembly: AssemblyConfiguration("")]" />
|
|
<HeaderLines Include="[assembly: AssemblyCompany("$(AssemblyCompany)")]" />
|
|
<HeaderLines Include="[assembly: AssemblyCopyright("$(AssemblyCopyright)")]" />
|
|
<HeaderLines Include="[assembly: AssemblyProduct("$(AssemblyTitle)")]" />
|
|
<HeaderLines Include="[assembly: AssemblyTrademark("")]" />
|
|
<HeaderLines Include="[assembly: AssemblyCulture("")]" />
|
|
<HeaderLines Include="[assembly: ComVisible(false)]" />
|
|
<HeaderLines Include="[assembly: NeutralResourcesLanguage("en-US")]" />
|
|
<HeaderLines Include="[assembly: AssemblyVersion("$(Version).0")]" />
|
|
<HeaderLines Include="[assembly: AssemblyFileVersion("$(Version).0")]" />
|
|
</ItemGroup>
|
|
<WriteLinesToFile File="Generated Files\AssemblyInfo.cs" Lines="@(HeaderLines)" Overwrite="true" Encoding="Unicode" WriteOnlyWhenDifferent="true" />
|
|
</Target>
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{748417CA-F17E-487F-9411-CAFB6D3F4877}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>UnitTests_PreviewHandlerCommon</RootNamespace>
|
|
<AssemblyName>UnitTests-PreviewHandlerCommon</AssemblyName>
|
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">15.0</VisualStudioVersion>
|
|
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
|
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
|
|
<IsCodedUITest>False</IsCodedUITest>
|
|
<TestProjectType>UnitTest</TestProjectType>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
|
|
<NuGetPackageImportStamp>
|
|
</NuGetPackageImportStamp>
|
|
<TargetFrameworkProfile />
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Generated Files\AssemblyInfo.cs">
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Include="FileBasedPreviewHandlerTests.cs" />
|
|
<Compile Include="FormHandlerControlTests.cs" />
|
|
<Compile Include="PreviewHandlerBaseTests.cs" />
|
|
<Compile Include="StreamBasedPreviewHandlerTests.cs" />
|
|
<Compile Include="StreamWrapperTests.cs" />
|
|
<Compile Include="WebBrowserExtUnitTests.cs">
|
|
<SubType>Component</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Moq">
|
|
<Version>4.13.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="MSTest.TestAdapter">
|
|
<Version>2.1.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="MSTest.TestFramework">
|
|
<Version>2.1.1</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="System.Threading.Tasks.Extensions">
|
|
<Version>4.5.4</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Common\PreviewHandlerCommon.csproj">
|
|
<Project>{af2349b8-e5b6-4004-9502-687c1c7730b1}</Project>
|
|
<Name>PreviewHandlerCommon</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project> |