Skip to content

Commit

Permalink
chore: fix the build one more time
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezgerges committed Nov 20, 2024
1 parent f6e7f54 commit 5e89848
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/Uno.UI/UI/ColorHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,12 @@
using WindowsColor = Windows/*Intentional space for WinUI upgrade tool*/.UI.Color;

#if IS_UNO_UI_PROJECT
namespace Microsoft.UI.Text;
namespace Microsoft.UI;
#else
namespace Windows.UI.Text;
namespace Windows.UI;
#endif

#if HAS_UNO_WINUI && !IS_UNO_UI_PROJECT
internal
#else
public
#endif
static partial class ColorHelper
public static partial class ColorHelper
{
/// <summary>
/// Retrieves the display name of the specified color.
Expand Down
9 changes: 9 additions & 0 deletions src/Uno.UWP/Uno.Reference.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,13 @@
<ProjectReference Include="..\Uno.UI.Dispatching\Uno.UI.Dispatching.Reference.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Include="..\Uno.UI\UI\Input\PointerPoint.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerPointProperties.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerPointPropertiesExtensions.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerUpdateKind.cs" />
<Compile Include="..\Uno.UI\UI\Colors.cs" />
<Compile Include="..\Uno.UI\UI\ColorHelper.cs" />
<Compile Include="..\Uno.UI\UI\Text\FontWeights.cs" />
</ItemGroup>
</Project>
10 changes: 10 additions & 0 deletions src/Uno.UWP/Uno.Skia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@
<ProjectReference Include="..\Uno.Foundation\Uno.Foundation.Skia.csproj" />
<ProjectReference Include="..\Uno.UI.Dispatching\Uno.UI.Dispatching.Skia.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Include="..\Uno.UI\UI\Input\PointerPoint.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerPointProperties.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerPointPropertiesExtensions.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerUpdateKind.cs" />
<Compile Include="..\Uno.UI\UI\Colors.cs" />
<Compile Include="..\Uno.UI\UI\ColorHelper.cs" />
<Compile Include="..\Uno.UI\UI\Text\FontWeights.cs" />
</ItemGroup>

<ItemGroup>
<PRIResource Include="Storage\Pickers\Strings\**\*.resw" />
Expand Down
9 changes: 9 additions & 0 deletions src/Uno.UWP/Uno.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,13 @@
<ProjectReference Include="..\Uno.UI.Dispatching\Uno.UI.Dispatching.Tests.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Include="..\Uno.UI\UI\Input\PointerPoint.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerPointProperties.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerPointPropertiesExtensions.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerUpdateKind.cs" />
<Compile Include="..\Uno.UI\UI\Colors.cs" />
<Compile Include="..\Uno.UI\UI\ColorHelper.cs" />
<Compile Include="..\Uno.UI\UI\Text\FontWeights.cs" />
</ItemGroup>
</Project>
9 changes: 9 additions & 0 deletions src/Uno.UWP/Uno.Wasm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,13 @@
<ProjectReference Include="..\Uno.UI.Dispatching\Uno.UI.Dispatching.Wasm.csproj" />
</ItemGroup>

<ItemGroup>
<Compile Include="..\Uno.UI\UI\Input\PointerPoint.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerPointProperties.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerPointPropertiesExtensions.cs" />
<Compile Include="..\Uno.UI\UI\Input\PointerUpdateKind.cs" />
<Compile Include="..\Uno.UI\UI\Colors.cs" />
<Compile Include="..\Uno.UI\UI\ColorHelper.cs" />
<Compile Include="..\Uno.UI\UI\Text\FontWeights.cs" />
</ItemGroup>
</Project>

0 comments on commit 5e89848

Please sign in to comment.