-
-
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 #36 from egvijayanand/working
Support for XML-based solution file (`slnx`) and `PolySharp` NuGet package
- Loading branch information
Showing
12 changed files
with
200 additions
and
4 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
using Xamarin.Forms.Xaml; | ||
|
||
[assembly: XamlCompilation(XamlCompilationOptions.Compile)] | ||
#if NoPolySharp | ||
|
||
// For making use of C# 9.0 features such as Records. | ||
|
||
namespace System.Runtime.CompilerServices | ||
{ | ||
internal class IsExternalInit { } | ||
} | ||
#endif |
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,12 @@ | ||
<Solution> | ||
<!--#if (CentralPkgMgmt)--> | ||
<Folder Name="/Solution Items/"> | ||
<File Path="Directory.Packages.props" /> | ||
</Folder> | ||
<!--#endif--> | ||
<Project Path="SAFE-NAME.csproj" /> | ||
<Properties Name="Visual Studio"> | ||
<!-- Support is provisionally available on Visual Studio 17.10 and later versions. --> | ||
<Property Name="OpenWith" Value="17" /> | ||
</Properties> | ||
</Solution> |
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,49 @@ | ||
/* | ||
global using Xamarin.Forms; | ||
global using Xamarin.Forms.Xaml; | ||
#if AddMaps | ||
global using Xamarin.Forms.Maps; | ||
#endif | ||
#if (AddEssentials || AddEssentialsInterfaces) | ||
global using Xamarin.Essentials; | ||
#endif | ||
#if AddEssentialsInterfaces | ||
global using Xamarin.Essentials.Implementation; | ||
global using Xamarin.Essentials.Interfaces; | ||
#endif | ||
#if AddToolkit | ||
global using Xamarin.CommunityToolkit.Behaviors; | ||
global using Xamarin.CommunityToolkit.Converters; | ||
global using Xamarin.CommunityToolkit.Effects; | ||
global using Xamarin.CommunityToolkit.ObjectModel; | ||
global using Xamarin.CommunityToolkit.UI.Views; | ||
#endif | ||
#if (AddMarkup || AddSharedToolkit) | ||
global using Xamarin.CommunityToolkit.Markup; | ||
#endif | ||
#if AddMvvmToolkit | ||
global using CommunityToolkit.Mvvm.ComponentModel; | ||
global using CommunityToolkit.Mvvm.Input; | ||
global using CommunityToolkit.Mvvm.Messaging; | ||
#endif | ||
#if AddSharedToolkit | ||
global using VijayAnand.Toolkit.Markup; | ||
#endif | ||
#if AddSharedToolkit | ||
// Static | ||
global using static Xamarin.CommunityToolkit.Markup.GridRowsColumns; | ||
global using static VijayAnand.Toolkit.Markup.ResourceHelper; | ||
global using static VijayAnand.Toolkit.Markup.VisualStateHelper; | ||
#elif AddMarkup | ||
// Static | ||
global using static Xamarin.CommunityToolkit.Markup.GridRowsColumns; | ||
#endif | ||
*/ |
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