|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 | 3 | <PropertyGroup>
|
4 |
| - <TargetFrameworks>net7.0-android33.0</TargetFrameworks> |
5 |
| - <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>net8.0-android34.0</TargetFrameworks> |
| 5 | + <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net8.0-windows10.0.19041.0</TargetFrameworks> |
6 | 6 | <!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
|
7 | 7 | <!-- <TargetFrameworks>$(TargetFrameworks);net7.0-tizen</TargetFrameworks> -->
|
8 | 8 | <OutputType>Exe</OutputType>
|
|
36 | 36 | <GenerateTestArtifacts>True</GenerateTestArtifacts>
|
37 | 37 | <AppInstallerUri>D:\Courses\snipPC</AppInstallerUri>
|
38 | 38 | <HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
|
39 |
| - <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">31.0</SupportedOSPlatformVersion> |
| 39 | + <SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">32.0</SupportedOSPlatformVersion> |
40 | 40 | <DefaultLanguage>en</DefaultLanguage>
|
41 | 41 | </PropertyGroup>
|
42 | 42 |
|
|
66 | 66 | <ApplicationTitle>FlowHub</ApplicationTitle>
|
67 | 67 | </PropertyGroup>
|
68 | 68 |
|
| 69 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android34.0|AnyCPU'"> |
| 70 | + <ApplicationTitle>FlowHub</ApplicationTitle> |
| 71 | + <ApplicationDisplayVersion>0.9.7</ApplicationDisplayVersion> |
| 72 | + <ApplicationVersion>1</ApplicationVersion> |
| 73 | + </PropertyGroup> |
| 74 | + |
| 75 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-windows10.0.19041.0|AnyCPU'"> |
| 76 | + <ApplicationTitle>FlowHub</ApplicationTitle> |
| 77 | + <ApplicationDisplayVersion>0.9.7</ApplicationDisplayVersion> |
| 78 | + <ApplicationVersion>1</ApplicationVersion> |
| 79 | + </PropertyGroup> |
| 80 | + |
| 81 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android34.0|AnyCPU'"> |
| 82 | + <ApplicationTitle>FlowHub</ApplicationTitle> |
| 83 | + <ApplicationDisplayVersion>0.9.7</ApplicationDisplayVersion> |
| 84 | + <ApplicationVersion>1</ApplicationVersion> |
| 85 | + </PropertyGroup> |
| 86 | + |
| 87 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-windows10.0.19041.0|AnyCPU'"> |
| 88 | + <ApplicationTitle>FlowHub</ApplicationTitle> |
| 89 | + <ApplicationDisplayVersion>0.9.7</ApplicationDisplayVersion> |
| 90 | + <ApplicationVersion>1</ApplicationVersion> |
| 91 | + </PropertyGroup> |
| 92 | + |
69 | 93 | <ItemGroup>
|
70 | 94 | <!-- App Icon -->
|
71 |
| - <MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> |
| 95 | + <MauiIcon Include="Resources\AppIcon\appicon1.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> |
72 | 96 |
|
73 | 97 | <!-- Splash Screen -->
|
74 | 98 | <MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" />
|
|
84 | 108 | <MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
|
85 | 109 | </ItemGroup>
|
86 | 110 |
|
| 111 | + <ItemGroup> |
| 112 | + <Compile Remove="Platforms\Windows\CalendarUtils\CalendarStore.windows.cs" /> |
| 113 | + <Compile Remove="Utilities\CalendarUtils\CalendarStore.net.cs" /> |
| 114 | + </ItemGroup> |
| 115 | + |
87 | 116 | <ItemGroup>
|
88 | 117 | <None Remove="Resources\Images\add_btn_48.svg" />
|
89 | 118 | <None Remove="Resources\Images\add_btn_48_light.svg" />
|
|
129 | 158 | <ItemGroup>
|
130 | 159 | <PackageReference Include="akgul.Maui.DataGrid" Version="3.0.0" />
|
131 | 160 | <PackageReference Include="CommunityToolkit.Diagnostics" Version="8.2.2" />
|
132 |
| - <PackageReference Include="CommunityToolkit.Maui" Version="6.1.0" /> |
| 161 | + <PackageReference Include="CommunityToolkit.Maui" Version="7.0.0" /> |
133 | 162 | <PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
134 | 163 | <PackageReference Include="HarfBuzzSharp" Version="7.3.0" />
|
135 | 164 | <PackageReference Include="itext7" Version="8.0.2" />
|
136 | 165 | <PackageReference Include="itext7.bouncy-castle-adapter" Version="8.0.2" />
|
137 | 166 | <PackageReference Include="LiteDB.Async" Version="0.1.7" />
|
138 | 167 | <PackageReference Include="LiveChartsCore.SkiaSharpView.Maui" Version="2.0.0-rc1.2" />
|
139 |
| - <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" /> |
| 168 | + <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> |
140 | 169 | <PackageReference Include="SkiaSharp" Version="2.88.6" />
|
141 | 170 | <PackageReference Include="UraniumUI" Version="2.5.6" />
|
142 | 171 | <PackageReference Include="UraniumUI.Blurs" Version="2.5.6" />
|
|
146 | 175 | </ItemGroup>
|
147 | 176 |
|
148 | 177 | <ItemGroup>
|
149 |
| - <ProjectReference Include="..\..\Plugin.Maui.CalendarStoree\src\Plugin.Maui.CalendarStore\Plugin.Maui.CalendarStore.csproj" /> |
150 | 178 | <ProjectReference Include="..\FlowHub.DataAccess\FlowHub.DataAccess.csproj" />
|
151 | 179 | <ProjectReference Include="..\FlowHub.Models\FlowHub.Models.csproj" />
|
152 | 180 | </ItemGroup>
|
|
179 | 207 | <MauiXaml Update="PopUpPages\ErrorPopUpAlert.xaml">
|
180 | 208 | <Generator>MSBuild:Compile</Generator>
|
181 | 209 | </MauiXaml>
|
182 |
| - <MauiXaml Update="Utilities\BottomSheet\Drawers\BaseDrawer.xaml"> |
| 210 | + <MauiXaml Update="PopUpPages\UpSertInstallmentPayment.xaml"> |
183 | 211 | <Generator>MSBuild:Compile</Generator>
|
184 | 212 | </MauiXaml>
|
185 |
| - <MauiXaml Update="Utilities\BottomSheet\Drawers\ListDrawer.xaml"> |
| 213 | + <MauiXaml Update="Views\Desktop\Debts\ManageDebtsPageD.xaml"> |
186 | 214 | <Generator>MSBuild:Compile</Generator>
|
187 | 215 | </MauiXaml>
|
188 |
| - <MauiXaml Update="Views\Desktop\Debts\ManageDebtsPageD.xaml"> |
| 216 | + <MauiXaml Update="Views\Desktop\Debts\UpSertDebtPopUp.xaml"> |
189 | 217 | <Generator>MSBuild:Compile</Generator>
|
190 | 218 | </MauiXaml>
|
191 | 219 | <MauiXaml Update="Views\Desktop\ExitApp.xaml">
|
|
218 | 246 | <MauiXaml Update="Views\Mobile\Debts\ManageLendingsPageM.xaml">
|
219 | 247 | <Generator>MSBuild:Compile</Generator>
|
220 | 248 | </MauiXaml>
|
221 |
| - <MauiXaml Update="Views\Mobile\Debts\ViewDebtBottomSheet.xaml"> |
| 249 | + <MauiXaml Update="Views\Mobile\Debts\SingleDebtDetailsPageM.xaml"> |
222 | 250 | <Generator>MSBuild:Compile</Generator>
|
223 | 251 | </MauiXaml>
|
224 |
| - <MauiXaml Update="Views\Mobile\Debts\DebtsOverviewPageM.xaml"> |
| 252 | + <MauiXaml Update="Views\Mobile\Debts\UpSertDebtBottomSheet.xaml"> |
225 | 253 | <Generator>MSBuild:Compile</Generator>
|
226 | 254 | </MauiXaml>
|
227 |
| - <MauiXaml Update="Views\Mobile\Debts\UpSertDebtPageM.xaml"> |
| 255 | + <MauiXaml Update="Views\Mobile\Debts\DebtsOverviewPageM.xaml"> |
228 | 256 | <Generator>MSBuild:Compile</Generator>
|
229 | 257 | </MauiXaml>
|
230 | 258 | <MauiXaml Update="Views\Mobile\Expenditures\ManageExpendituresM.xaml">
|
|
239 | 267 | <MauiXaml Update="Views\Mobile\Expenditures\PlannedExpenditures\MonthlyPlannedExp\UpSertMonthlyPlannedExpPageM.xaml">
|
240 | 268 | <Generator>MSBuild:Compile</Generator>
|
241 | 269 | </MauiXaml>
|
| 270 | + <MauiXaml Update="Views\Mobile\Expenditures\UpSertExpenditureBottomSheet.xaml"> |
| 271 | + <Generator>MSBuild:Compile</Generator> |
| 272 | + </MauiXaml> |
242 | 273 | <MauiXaml Update="Views\Mobile\Expenditures\UpSertExpenditurePageM.xaml">
|
243 | 274 | <Generator>MSBuild:Compile</Generator>
|
244 | 275 | </MauiXaml>
|
|
278 | 309 | </ItemGroup>
|
279 | 310 |
|
280 | 311 | <ItemGroup>
|
| 312 | + <Folder Include="Platforms\Windows\Utilities\" /> |
281 | 313 | <Folder Include="Resources\Images\darkicons\" />
|
282 | 314 | </ItemGroup>
|
283 | 315 |
|
284 | 316 | <ItemGroup>
|
285 | 317 | <None Include="..\.editorconfig" Link=".editorconfig" />
|
| 318 | + <None Include="Platforms\Windows\CalendarUtils\CalendarStore.windows.cs" /> |
| 319 | + <None Include="Utilities\CalendarUtils\CalendarStore.net.cs" /> |
286 | 320 | </ItemGroup>
|
287 | 321 |
|
288 | 322 | <ItemGroup>
|
|
327 | 361 | <Compile Update="Views\Mobile\Debts\ManageBorrowingsPageM.xaml.cs">
|
328 | 362 | <DependentUpon>ManageBorrowingsPageM.xaml</DependentUpon>
|
329 | 363 | </Compile>
|
330 |
| - <Compile Update="Views\Mobile\Debts\ViewDebtBottomSheet.xaml.cs"> |
331 |
| - <DependentUpon>ViewDebtBottomSheet.xaml</DependentUpon> |
| 364 | + <Compile Update="Views\Mobile\Debts\SingleDebtDetailsPageM.xaml.cs"> |
| 365 | + <DependentUpon>SingleDebtDetailsPageM.xaml</DependentUpon> |
332 | 366 | </Compile>
|
333 | 367 | <Compile Update="Views\Mobile\Incomes\ManageIncomesM.xaml.cs">
|
334 | 368 | <DependentUpon>ManageIncomesM.xaml</DependentUpon>
|
|
0 commit comments