Skip to content

Commit c7467ff

Browse files
committed
Fix rebase
1 parent 3f5dbfb commit c7467ff

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Microsoft.Dotnet.Wpf.sln

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ EndProject
252252
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PresentationFramework.Fluent", "src\Microsoft.DotNet.Wpf\src\Themes\PresentationFramework.Fluent\PresentationFramework.Fluent.csproj", "{3F2C0E0E-BB13-46D9-8D9A-08256A49ECA9}"
253253
EndProject
254254
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PresentationFramework.Fluent-ref", "src\Microsoft.DotNet.Wpf\src\Themes\PresentationFramework.Fluent\ref\PresentationFramework.Fluent-ref.csproj", "{3C43C553-2C1F-4EB9-8BF8-371D4A42E0FD}"
255+
EndProject
255256
Project("{6FFF8BB3-74D1-4860-BEF1-5B307BCDBB95}") = "WindowsBase.Tests", "src\Microsoft.DotNet.Wpf\tests\UnitTests\WindowsBase.Tests\WindowsBase.Tests.csproj", "{A5DC575D-EC10-445B-94C1-98015F926FFA}"
256257
EndProject
257258
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PresentationCore.Tests", "src\Microsoft.DotNet.Wpf\tests\UnitTests\PresentationCore.Tests\PresentationCore.Tests.csproj", "{A4377D3F-6BA1-4994-945C-88667993E4F3}"
@@ -2135,11 +2136,8 @@ Global
21352136
{B2F2A89C-55C9-41B1-A645-0948609BD8BE} = {A48B585E-6AB0-4F8D-8484-77F37CB44437}
21362137
{3F2C0E0E-BB13-46D9-8D9A-08256A49ECA9} = {5ACFB055-649D-4A01-98C2-B0BFE7E543D6}
21372138
{3C43C553-2C1F-4EB9-8BF8-371D4A42E0FD} = {60F4058B-D35B-42D2-B276-D44B3AC579BD}
2138-
<<<<<<< HEAD
21392139
{A4377D3F-6BA1-4994-945C-88667993E4F3} = {A48B585E-6AB0-4F8D-8484-77F37CB44437}
2140-
=======
21412140
{A5DC575D-EC10-445B-94C1-98015F926FFA} = {A48B585E-6AB0-4F8D-8484-77F37CB44437}
2142-
>>>>>>> 2e394c618 (Add WindowsBase tests)
21432141
EndGlobalSection
21442142
GlobalSection(ExtensibilityGlobals) = postSolution
21452143
SolutionGuid = {B4340004-DAC0-497D-B69D-CFA7CD93F567}

src/Microsoft.DotNet.Wpf/tests/UnitTests/WindowsBase.Tests/WindowsBase.Tests.csproj

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@
55
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
66
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
77
<Nullable>enable</Nullable>
8+
<Platforms>AnyCPU;x64;x86;ARM64</Platforms>
89
</PropertyGroup>
910

1011
<ItemGroup>
12+
<ProjectReference Include="$(WpfSourceDir)DirectWriteForwarder\DirectWriteForwarder.vcxproj">
13+
<UndefineProperties>TargetFramework;TargetFrameworks</UndefineProperties>
14+
</ProjectReference>
1115
<ProjectReference Include="$(WpfSourceDir)System.Xaml\System.Xaml.csproj" />
1216
<ProjectReference Include="$(WpfSourceDir)WindowsBase\WindowsBase.csproj" />
1317
<ProjectReference Include="$(WpfSourceDir)PresentationCore\PresentationCore.csproj" />
@@ -18,6 +22,13 @@
1822
<PackageReference Include="$(SystemIOPackagingPackage)" Version="$(SystemIOPackagingVersion)" />
1923
<PackageReference Include="Moq" Version="$(MoqPackageVersion)" />
2024
<PackageReference Include="coverlet.msbuild" Version="$(CoverletMSBuildPackageVersion)" />
25+
<PackageReference Include="System.Configuration.ConfigurationManager" Version="$(SystemConfigurationConfigurationManagerPackageVersion)" />
26+
</ItemGroup>
27+
28+
<ItemGroup>
29+
<Content Include="Resources\**\*.*">
30+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
31+
</Content>
2132
</ItemGroup>
2233

2334
</Project>

0 commit comments

Comments
 (0)