Skip to content

Commit

Permalink
chore: move Converters to Eppie.App.Shared (#366)
Browse files Browse the repository at this point in the history
References: #347
  • Loading branch information
al-kau authored Oct 3, 2024
1 parent fdeeb83 commit 086fb53
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
using Tuvi.Core.Entities;
using Tuvi.Core.Entities;
using System;
using System.Runtime.InteropServices.WindowsRuntime;

#if WINDOWS_UWP
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Media.Imaging;
#else
using Microsoft.UI.Xaml.Data;
using Microsoft.UI.Xaml.Media.Imaging;
#endif

namespace Tuvi.App.Shared.Converters
{
Expand Down
7 changes: 7 additions & 0 deletions source/Eppie.App/Eppie.App.Shared/Eppie.App.Shared.projitems
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<Compile Include="$(MSBuildThisFileDirectory)Authorization\AuthConfig.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Authorization\AuthConfig.UWP.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Authorization\WindowsAuthenticationBroker.UWP.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Converters\BitmapSourceConverters.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Helpers\BitmapTools.cs" />
<Compile Include="$(MSBuildThisFileDirectory)IncrementalLoading\IncrementalLoadingCollection.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Common\UITools.cs" />
Expand All @@ -39,6 +40,12 @@
<DependentUpon>MainPage.xaml</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Include="$(MSBuildThisFileDirectory)Converters\TuviMailConvertersDictionary.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
</ItemGroup>
<ItemGroup>
<PRIResource Include="$(MSBuildThisFileDirectory)Resources\Strings\en\Resources.resw">
<SubType>Designer</SubType>
Expand Down

0 comments on commit 086fb53

Please sign in to comment.