Skip to content

Commit

Permalink
Merge pull request #8 from egvijayanand/working
Browse files Browse the repository at this point in the history
Added FUNDING.yml file and IsExternalInit class definition to the project template
  • Loading branch information
egvijayanand authored May 31, 2022
2 parents d282c02 + 7265811 commit cad4d40
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# These are supported funding model platforms

github: ["egvijayanand"]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
custom: ["https://paypal.me/egvijayanand", "https://www.buymeacoffee.com/egvijayanand"]
7 changes: 7 additions & 0 deletions global.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sdk": {
"allowPrerelease": false,
"rollForward": "latestMajor",
"version": "6.0.0"
}
}
9 changes: 9 additions & 0 deletions src/FormsTemplatesCLI/FormsClassLib/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// For making use of C# 9.0 features such as Records.

namespace System.Runtime.CompilerServices
{
public class IsExternalInit
{

}
}
4 changes: 2 additions & 2 deletions src/FormsTemplatesCLI/FormsClassLib/FormsClassLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2401"/>
<!--#if (AddToolkitPackage)-->
<PackageReference Include="Xamarin.CommunityToolkit" Version="2.0.1" />
<PackageReference Include="Xamarin.CommunityToolkit" Version="2.0.2" />
<!--#endif-->
<!--#if (AddMarkupPackage)-->
<PackageReference Include="Xamarin.CommunityToolkit.Markup" Version="2.0.1" />
<PackageReference Include="Xamarin.CommunityToolkit.Markup" Version="2.0.2" />
<!--#endif-->
<!--#if (AddMvvmToolkitPackage)-->
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.0.0-preview3" />
Expand Down
4 changes: 2 additions & 2 deletions src/FormsTemplatesCLI/release-notes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
What's new in ver. 1.3.0:
What's new in ver. 1.3.1:

Added the ability to reference CommunityToolkit.Mvvm (aka Microsoft MVVM Toolkit) NuGet package while creating the library project.
Included the IsExternalInit class definition to make use of C# 9.0 features such as Records.

0 comments on commit cad4d40

Please sign in to comment.