@@ -22,7 +22,9 @@ public void BuildPackaged(string id, string framework, string config)
2222
2323 // TODO: remove this if as we should be able to build tizen net8
2424 if ( framework != DotNetPrevious )
25+ {
2526 EnableTizen ( projectFile ) ;
27+ }
2628
2729 if ( framework == DotNetPrevious )
2830 {
@@ -54,7 +56,9 @@ public void BuildPackaged(string id, string framework, string config)
5456 public void BuildWindowsAppSDKSelfContained ( string id , bool wasdkself , bool netself , string packageType )
5557 {
5658 if ( TestEnvironment . IsMacOS )
59+ {
5760 Assert . Ignore ( "This test is designed for testing a windows build." ) ;
61+ }
5862
5963 var projectDir = TestDirectory ;
6064 var projectFile = Path . Combine ( projectDir , $ "{ Path . GetFileName ( projectDir ) } .csproj") ;
@@ -82,10 +86,12 @@ public void BuildWindowsAppSDKSelfContained(string id, bool wasdkself, bool nets
8286 [ TestCase ( "maui" , true , "MSIX" ) ]
8387 [ TestCase ( "maui" , false , "None" ) ]
8488 [ TestCase ( "maui" , false , "MSIX" ) ]
85- public void BuildWindowsRidGraph ( string id , bool useridgraph , string packageType )
89+ public void BuildWindowsRidGraph ( string id , bool useRidGraph , string packageType )
8690 {
8791 if ( TestEnvironment . IsMacOS )
92+ {
8893 Assert . Ignore ( "This test is designed for testing a windows build." ) ;
94+ }
8995
9096 var projectDir = TestDirectory ;
9197 var projectFile = Path . Combine ( projectDir , $ "{ Path . GetFileName ( projectDir ) } .csproj") ;
@@ -96,7 +102,7 @@ public void BuildWindowsRidGraph(string id, bool useridgraph, string packageType
96102 FileUtilities . ReplaceInFile ( projectFile ,
97103 "<WindowsPackageType>None</WindowsPackageType>" ,
98104 $ """
99- <UseRidGraph>{ useridgraph } </UseRidGraph>
105+ <UseRidGraph>{ useRidGraph } </UseRidGraph>
100106 <WindowsPackageType>{ packageType } </WindowsPackageType>
101107 """ ) ;
102108
@@ -115,7 +121,9 @@ public void BuildWindowsRidGraph(string id, bool useridgraph, string packageType
115121 public void PublishUnpackaged ( string id , string framework , string config )
116122 {
117123 if ( ! TestEnvironment . IsWindows )
124+ {
118125 Assert . Ignore ( "Running Windows templates is only supported on Windows." ) ;
126+ }
119127
120128 var projectDir = TestDirectory ;
121129 var projectFile = Path . Combine ( projectDir , $ "{ Path . GetFileName ( projectDir ) } .csproj") ;
@@ -164,7 +172,9 @@ void AssetExists(string filename)
164172 public void PublishPackaged ( string id , string framework , string config )
165173 {
166174 if ( ! TestEnvironment . IsWindows )
175+ {
167176 Assert . Ignore ( "Running Windows templates is only supported on Windows." ) ;
177+ }
168178
169179 var projectDir = TestDirectory ;
170180 var name = Path . GetFileName ( projectDir ) ;
0 commit comments