mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-29 04:37:55 +08:00
115 lines
4.8 KiB
XML
115 lines
4.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
<Project ToolsVersion="15.0" 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)' == '' ">x64</Platform>
|
|||
|
<ProjectGuid>{E0CC7526-D85E-43AC-844F-D5DF0D2F5AB8}</ProjectGuid>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|||
|
<RootNamespace>ImageResizer</RootNamespace>
|
|||
|
<AssemblyName>ImageResizer.Test</AssemblyName>
|
|||
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
|||
|
<FileAlignment>512</FileAlignment>
|
|||
|
<TargetFrameworkProfile>
|
|||
|
</TargetFrameworkProfile>
|
|||
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|||
|
</PropertyGroup>
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
|||
|
<DebugSymbols>true</DebugSymbols>
|
|||
|
<DebugType>full</DebugType>
|
|||
|
<Optimize>false</Optimize>
|
|||
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)</OutputPath>
|
|||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|||
|
<ErrorReport>prompt</ErrorReport>
|
|||
|
<WarningLevel>4</WarningLevel>
|
|||
|
<Prefer32Bit>false</Prefer32Bit>
|
|||
|
<CodeAnalysisRuleSet>..\..\..\codeAnalysis\Rules.ruleset</CodeAnalysisRuleSet>
|
|||
|
</PropertyGroup>
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
|||
|
<DebugType>pdbonly</DebugType>
|
|||
|
<Optimize>true</Optimize>
|
|||
|
<OutputPath>$(SolutionDir)$(Platform)\$(Configuration)</OutputPath>
|
|||
|
<DefineConstants>TRACE</DefineConstants>
|
|||
|
<ErrorReport>prompt</ErrorReport>
|
|||
|
<WarningLevel>4</WarningLevel>
|
|||
|
<Prefer32Bit>false</Prefer32Bit>
|
|||
|
<CodeAnalysisRuleSet>..\..\..\codeAnalysis\Rules.ruleset</CodeAnalysisRuleSet>
|
|||
|
</PropertyGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="PresentationCore" />
|
|||
|
<Reference Include="System" />
|
|||
|
<Reference Include="WindowsBase" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\ui\ImageResizerUI.csproj">
|
|||
|
<Project>{2be46397-4dfa-414c-9bd4-41e4bbf8cb34}</Project>
|
|||
|
<Name>ImageResizerUI</Name>
|
|||
|
</ProjectReference>
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<AdditionalFiles Include="..\..\..\codeAnalysis\StyleCop.json">
|
|||
|
<Link>StyleCop.json</Link>
|
|||
|
</AdditionalFiles>
|
|||
|
<None Include="App.config">
|
|||
|
<SubType>Designer</SubType>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="..\codeAnalysis\GlobalSuppressions.cs">
|
|||
|
<Link>GlobalSuppressions.cs</Link>
|
|||
|
</Compile>
|
|||
|
<Compile Include="Models\CustomSizeTests.cs" />
|
|||
|
<Compile Include="Models\ResizeSizeTests.cs" />
|
|||
|
<Compile Include="Models\ResizeBatchTests.cs" />
|
|||
|
<Compile Include="Models\ResizeOperationTests.cs" />
|
|||
|
<Compile Include="Properties\AppFixture.cs" />
|
|||
|
<Compile Include="Properties\SettingsTests.cs" />
|
|||
|
<Compile Include="Test\AssertEx.cs" />
|
|||
|
<Compile Include="Test\BitmapSourceExtensions.cs" />
|
|||
|
<Compile Include="Test\TestDirectory.cs" />
|
|||
|
<Compile Include="Views\TimeRemainingConverterTests.cs" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Content Include="Test.gif">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="Test.ico">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="Test.jpg">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="Test.png">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
<Content Include="TestPortrait.png">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</Content>
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Moq">
|
|||
|
<Version>4.13.1</Version>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="StyleCop.Analyzers">
|
|||
|
<Version>1.1.118</Version>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="System.ValueTuple">
|
|||
|
<Version>4.5.0</Version>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="xunit">
|
|||
|
<Version>2.4.1</Version>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="xunit.runner.visualstudio">
|
|||
|
<Version>2.4.1</Version>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
</PackageReference>
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
|
|||
|
</ItemGroup>
|
|||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|||
|
</Project>
|