File tree Expand file tree Collapse file tree 5 files changed +27
-27
lines changed
Sentry.EntityFramework.Tests
Sentry.MauiTrimTest/Platforms Expand file tree Collapse file tree 5 files changed +27
-27
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ namespace Sentry.EntityFramework.Tests;
55public class IntegrationTests
66{
77 // needs to be a variable to stop EF from inlining it as a constant
8- static string shouldNotAppearInPayload = "SHOULD NOT APPEAR IN PAYLOAD" ;
8+ private static string shouldNotAppearInPayload = "SHOULD NOT APPEAR IN PAYLOAD" ;
99
1010 [ SkippableFact ]
1111 public async Task Simple ( )
Original file line number Diff line number Diff line change 1- using Foundation ;
1+ using Foundation ;
22
33namespace Sentry . MauiTrimTest ;
44
55[ Register ( "AppDelegate" ) ]
66public class AppDelegate : MauiUIApplicationDelegate
77{
8- protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
8+ protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
99}
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ namespace Sentry.MauiTrimTest;
55
66public class Program
77{
8- // This is the main entry point of the application.
9- static void Main ( string [ ] args )
10- {
11- // if you want to use a different Application Delegate class from "AppDelegate"
12- // you can specify it here.
13- UIApplication . Main ( args , null , typeof ( AppDelegate ) ) ;
14- }
8+ // This is the main entry point of the application.
9+ private static void Main ( string [ ] args )
10+ {
11+ // if you want to use a different Application Delegate class from "AppDelegate"
12+ // you can specify it here.
13+ UIApplication . Main ( args , null , typeof ( AppDelegate ) ) ;
14+ }
1515}
Original file line number Diff line number Diff line change 44
55namespace Sentry . MauiTrimTest ;
66
7- class Program : MauiApplication
7+ public class Program : MauiApplication
88{
9- protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
9+ protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
1010
11- static void Main ( string [ ] args )
12- {
13- var app = new Program ( ) ;
14- app . Run ( args ) ;
15- }
11+ private static void Main ( string [ ] args )
12+ {
13+ var app = new Program ( ) ;
14+ app . Run ( args ) ;
15+ }
1616}
Original file line number Diff line number Diff line change 1- using Microsoft . UI . Xaml ;
1+ using Microsoft . UI . Xaml ;
22
33// To learn more about WinUI, the WinUI project structure,
44// and more about our project templates, see: http://aka.ms/winui-project-info.
@@ -10,15 +10,15 @@ namespace Sentry.MauiTrimTest.WinUI;
1010/// </summary>
1111public partial class App : MauiWinUIApplication
1212{
13- /// <summary>
14- /// Initializes the singleton application object. This is the first line of authored code
15- /// executed, and as such is the logical equivalent of main() or WinMain().
16- /// </summary>
17- public App ( )
18- {
19- this . InitializeComponent ( ) ;
20- }
13+ /// <summary>
14+ /// Initializes the singleton application object. This is the first line of authored code
15+ /// executed, and as such is the logical equivalent of main() or WinMain().
16+ /// </summary>
17+ public App ( )
18+ {
19+ this . InitializeComponent ( ) ;
20+ }
2121
22- protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
22+ protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
2323}
2424
You can’t perform that action at this time.
0 commit comments