-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from egvijayanand/working
Essentials Interfaces and Auto type inclusion
- Loading branch information
Showing
22 changed files
with
226 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,5 @@ | |
|
||
namespace System.Runtime.CompilerServices | ||
{ | ||
internal class IsExternalInit | ||
{ | ||
|
||
} | ||
internal class IsExternalInit { } | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
using Xamarin.Forms; | ||
using Xamarin.Forms.Xaml; | ||
#if (AddEssentials || AddEssentialsInterfaces) | ||
|
||
using Xamarin.Essentials; | ||
#endif | ||
#if AddEssentialsInterfaces | ||
using Xamarin.Essentials.Implementation; | ||
using Xamarin.Essentials.Interfaces; | ||
#endif | ||
#if AddToolkit | ||
|
||
using Xamarin.CommunityToolkit.Behaviors; | ||
using Xamarin.CommunityToolkit.Converters; | ||
using Xamarin.CommunityToolkit.Effects; | ||
using Xamarin.CommunityToolkit.ObjectModel; | ||
using Xamarin.CommunityToolkit.UI.Views; | ||
#endif | ||
#if AddMarkup | ||
|
||
using Xamarin.CommunityToolkit.Markup; | ||
#endif | ||
#if AddMvvmToolkit | ||
|
||
using CommunityToolkit.Mvvm.ComponentModel; | ||
using CommunityToolkit.Mvvm.Input; | ||
using CommunityToolkit.Mvvm.Messaging; | ||
#endif | ||
#if AddSharedToolkit | ||
|
||
using VijayAnand.Toolkit.Markup; | ||
#endif | ||
#if AddSharedToolkit | ||
|
||
// Static | ||
using static Xamarin.CommunityToolkit.Markup.GridRowsColumns; | ||
using static VijayAnand.Toolkit.Markup.ResourceHelper; | ||
using static VijayAnand.Toolkit.Markup.VisualStateHelper; | ||
#elif AddMarkup | ||
|
||
// Static | ||
using static Xamarin.CommunityToolkit.Markup.GridRowsColumns; | ||
#endif | ||
|
||
namespace FormsClassLib._1 | ||
{ | ||
public class HomePage : ContentPage | ||
{ | ||
public HomePage() | ||
{ | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.