Skip to content

Commit 8ab1f47

Browse files
committedJul 24, 2024
First commit
0 parents  commit 8ab1f47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+3354
-0
lines changed
 

‎.gitignore

+189
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
.vs/
5+
mono_crash.*
6+
.idea/
7+
8+
# User-specific files
9+
*.suo
10+
*.user
11+
*.sln.docstates
12+
*.userprefs
13+
14+
# ignore Xamarin.Android Resource.Designer.cs files
15+
**/*.Droid/**/[Rr]esource.[Dd]esigner.cs
16+
**/*.Android/**/[Rr]esource.[Dd]esigner.cs
17+
**/Android/**/[Rr]esource.[Dd]esigner.cs
18+
19+
# Xamarin Components
20+
Components/
21+
22+
# Build results
23+
[Dd]ebug/
24+
[Dd]ebugPublic/
25+
[Rr]elease/
26+
x64/
27+
build/
28+
bld/
29+
[Bb]in/
30+
[Oo]bj/
31+
32+
# MSTest test Results
33+
[Tt]est[Rr]esult*/
34+
[Bb]uild[Ll]og.*
35+
36+
#NUNIT
37+
*.VisualState.xml
38+
TestResult.xml
39+
40+
# Build Results of an ATL Project
41+
[Dd]ebugPS/
42+
[Rr]eleasePS/
43+
dlldata.c
44+
45+
*_i.c
46+
*_p.c
47+
*_i.h
48+
*.ilk
49+
*.meta
50+
*.obj
51+
*.pch
52+
*.pdb
53+
*.pgc
54+
*.pgd
55+
*.rsp
56+
*.sbr
57+
*.tlb
58+
*.tli
59+
*.tlh
60+
*.tmp
61+
*.tmp_proj
62+
*.log
63+
*.vspscc
64+
*.vssscc
65+
.builds
66+
*.pidb
67+
*.svclog
68+
*.scc
69+
70+
# Chutzpah Test files
71+
_Chutzpah*
72+
73+
# Visual C++ cache files
74+
ipch/
75+
*.aps
76+
*.ncb
77+
*.opensdf
78+
*.sdf
79+
*.cachefile
80+
81+
# Visual Studio profiler
82+
*.psess
83+
*.vsp
84+
*.vspx
85+
86+
# TFS 2012 Local Workspace
87+
$tf/
88+
89+
# Guidance Automation Toolkit
90+
*.gpState
91+
92+
# ReSharper is a .NET coding add-in
93+
_ReSharper*/
94+
*.[Rr]e[Ss]harper
95+
*.DotSettings.user
96+
97+
# JustCode is a .NET coding addin-in
98+
.JustCode
99+
100+
# TeamCity is a build add-in
101+
_TeamCity*
102+
103+
# DotCover is a Code Coverage Tool
104+
*.dotCover
105+
106+
# NCrunch
107+
*.ncrunch*
108+
_NCrunch_*
109+
.*crunch*.local.xml
110+
111+
# MightyMoose
112+
*.mm.*
113+
AutoTest.Net/
114+
115+
# Web workbench (sass)
116+
.sass-cache/
117+
118+
# Installshield output folder
119+
[Ee]xpress/
120+
121+
# DocProject is a documentation generator add-in
122+
DocProject/buildhelp/
123+
DocProject/Help/*.HxT
124+
DocProject/Help/*.HxC
125+
DocProject/Help/*.hhc
126+
DocProject/Help/*.hhk
127+
DocProject/Help/*.hhp
128+
DocProject/Help/Html2
129+
DocProject/Help/html
130+
131+
# Click-Once directory
132+
publish/
133+
134+
# Publish Web Output
135+
*.[Pp]ublish.xml
136+
*.azurePubxml
137+
138+
# NuGet Packages Directory
139+
packages/
140+
## TODO: If the tool you use requires repositories.config uncomment the next line
141+
#!packages/repositories.config
142+
143+
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
144+
# This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
145+
!packages/build/
146+
147+
# Windows Azure Build Output
148+
csx/
149+
*.build.csdef
150+
151+
# Windows Store app package directory
152+
AppPackages/
153+
154+
# Others
155+
sql/
156+
*.Cache
157+
ClientBin/
158+
[Ss]tyle[Cc]op.*
159+
~$*
160+
*~
161+
*.dbmdl
162+
*.dbproj.schemaview
163+
*.pfx
164+
*.publishsettings
165+
node_modules/
166+
.DS_Store
167+
168+
# RIA/Silverlight projects
169+
Generated_Code/
170+
171+
# Backup & report files from converting an old project file to a newer
172+
# Visual Studio version. Backup files are not needed, because we have git ;-)
173+
_UpgradeReport_Files/
174+
Backup*/
175+
UpgradeLog*.XML
176+
UpgradeLog*.htm
177+
178+
# SQL Server files
179+
*.mdf
180+
*.ldf
181+
182+
# Business Intelligence projects
183+
*.rdl.data
184+
*.bim.layout
185+
*.bim_*.settings
186+
187+
# Microsoft Fakes
188+
FakesAssemblies/
189+
project.lock.json

‎AiForms.Maui.Effects.sln

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 25.0.1706.12
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AiForms.Maui.Effects", "AiForms.Maui.Effects\AiForms.Maui.Effects.csproj", "{D0755503-550F-4F0F-A0C9-7D8FEB3D5F5F}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample", "Sample\Sample.csproj", "{66101680-09B1-40E8-86D1-C2BDCAD4BBC0}"
9+
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{494DC052-7CF8-4CD2-8014-AB81DB45ACFA}"
11+
ProjectSection(SolutionItems) = preProject
12+
LICENSE.txt = LICENSE.txt
13+
README-ja.md = README-ja.md
14+
README.md = README.md
15+
EndProjectSection
16+
EndProject
17+
Global
18+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
19+
Debug|Any CPU = Debug|Any CPU
20+
Release|Any CPU = Release|Any CPU
21+
EndGlobalSection
22+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
23+
{D0755503-550F-4F0F-A0C9-7D8FEB3D5F5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{D0755503-550F-4F0F-A0C9-7D8FEB3D5F5F}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{D0755503-550F-4F0F-A0C9-7D8FEB3D5F5F}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{D0755503-550F-4F0F-A0C9-7D8FEB3D5F5F}.Release|Any CPU.Build.0 = Release|Any CPU
27+
{66101680-09B1-40E8-86D1-C2BDCAD4BBC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
28+
{66101680-09B1-40E8-86D1-C2BDCAD4BBC0}.Debug|Any CPU.Build.0 = Debug|Any CPU
29+
{66101680-09B1-40E8-86D1-C2BDCAD4BBC0}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{66101680-09B1-40E8-86D1-C2BDCAD4BBC0}.Release|Any CPU.Build.0 = Release|Any CPU
31+
EndGlobalSection
32+
GlobalSection(SolutionProperties) = preSolution
33+
HideSolutionNode = FALSE
34+
EndGlobalSection
35+
GlobalSection(ExtensibilityGlobals) = postSolution
36+
SolutionGuid = {B3FBB0AF-4FD7-4202-8AAD-E9FBA13A13CE}
37+
EndGlobalSection
38+
EndGlobal

0 commit comments

Comments
 (0)
Please sign in to comment.