Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions SfDataGridDemoMVVM/SfDataGridDemoMVVM.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ VisualStudioVersion = 17.0.31611.283
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SfDataGridDemoMVVM", "SfDataGridDemoMVVM\SfDataGridDemoMVVM.csproj", "{BEB9B8D8-99B0-4F52-AC1E-62EFE1125DC3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Syncfusion.Maui.DataGrid", "..\..\..\MAUI-4845\dev\maui-datagrid\maui\src\datagrid\Syncfusion.Maui.DataGrid.csproj", "{DD02E2F2-B083-433A-8ADE-CA37A60A1F13}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -23,12 +21,6 @@ Global
{BEB9B8D8-99B0-4F52-AC1E-62EFE1125DC3}.Release-Xml|Any CPU.ActiveCfg = Release|Any CPU
{BEB9B8D8-99B0-4F52-AC1E-62EFE1125DC3}.Release-Xml|Any CPU.Build.0 = Release|Any CPU
{BEB9B8D8-99B0-4F52-AC1E-62EFE1125DC3}.Release-Xml|Any CPU.Deploy.0 = Release|Any CPU
{DD02E2F2-B083-433A-8ADE-CA37A60A1F13}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DD02E2F2-B083-433A-8ADE-CA37A60A1F13}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DD02E2F2-B083-433A-8ADE-CA37A60A1F13}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DD02E2F2-B083-433A-8ADE-CA37A60A1F13}.Release|Any CPU.Build.0 = Release|Any CPU
{DD02E2F2-B083-433A-8ADE-CA37A60A1F13}.Release-Xml|Any CPU.ActiveCfg = Release-Xml|Any CPU
{DD02E2F2-B083-433A-8ADE-CA37A60A1F13}.Release-Xml|Any CPU.Build.0 = Release-Xml|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
20 changes: 7 additions & 13 deletions SfDataGridDemoMVVM/SfDataGridDemoMVVM/SfDataGridDemoMVVM.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net7.0-android;net7.0-ios;net7.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net7.0-windows10.0.19041.0</TargetFrameworks>
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
<!-- <TargetFrameworks>$(TargetFrameworks);net6.0-tizen</TargetFrameworks> -->
<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>

<OutputType>Exe</OutputType>
<RootNamespace>SfDataGridDemoMVVM</RootNamespace>
<UseMaui>true</UseMaui>
Expand Down Expand Up @@ -44,18 +43,13 @@
<!-- Custom Fonts -->
<MauiFont Include="Resources\Fonts\*" />

<!-- Raw Assets (also remove the "Resources\Raw" prefix) -->
<!-- Raw Assets -->
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.Maui" Version="3.1.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.1.0" />
<PackageReference Include="Syncfusion.Maui.Core" Version="20.41.66" />
<PackageReference Include="CommunityToolkit.Maui" Version="$(MauiVersion)" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Syncfusion.Maui.DataGrid" Version="*" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\..\MAUI-4845\dev\maui-datagrid\maui\src\datagrid\Syncfusion.Maui.DataGrid.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<IsFirstTimeProjectOpen>False</IsFirstTimeProjectOpen>
<ActiveDebugFramework>net7.0-android</ActiveDebugFramework>
<ActiveDebugProfile>Pixel 5 - API 30 (Android 11.0 - API 30)</ActiveDebugProfile>
<ActiveDebugFramework>net9.0-windows10.0.19041.0</ActiveDebugFramework>
<ActiveDebugProfile>Windows Machine</ActiveDebugProfile>
<SelectedPlatformGroup>Emulator</SelectedPlatformGroup>
<DefaultDevice>pixel_5_-_api_30</DefaultDevice>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-android|AnyCPU'">
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android|AnyCPU'">
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
</PropertyGroup>
</Project>