Skip to content

Commit

Permalink
MAUI Mac Catalyst
Browse files Browse the repository at this point in the history
  • Loading branch information
TanayParikh authored Apr 20, 2022
1 parent 4f47cc1 commit 6a25e00
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/scenarios/mauiblazormaccatalyst/post.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
'''
post cleanup script
'''

from shared.postcommands import clean_directories

clean_directories()
10 changes: 10 additions & 0 deletions src/scenarios/mauiblazormaccatalyst/pre.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
'''
pre-command
'''
from performance.logger import setup_loggers
from shutil import copytree
from shared.const import PUBDIR

setup_loggers(True)

copytree('app', PUBDIR)
12 changes: 12 additions & 0 deletions src/scenarios/mauiblazormaccatalyst/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
'''
C# Console app
'''
from shared.runner import TestTraits, Runner

EXENAME = 'MauiBlazorMacCatalystDefault'

if __name__ == "__main__":
traits = TestTraits(exename=EXENAME,
guiapp='false',
)
Runner(traits).run()

0 comments on commit 6a25e00

Please sign in to comment.