Skip to content

Commit 460e748

Browse files
Run dotnet format manually from Windows
1 parent 76f3632 commit 460e748

File tree

5 files changed

+27
-27
lines changed

5 files changed

+27
-27
lines changed

test/Sentry.EntityFramework.Tests/IntegrationTests.verify.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Sentry.EntityFramework.Tests;
55
public 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()
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using Foundation;
1+
using Foundation;
22

33
namespace Sentry.MauiTrimTest;
44

55
[Register("AppDelegate")]
66
public class AppDelegate : MauiUIApplicationDelegate
77
{
8-
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
8+
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
99
}

test/Sentry.MauiTrimTest/Platforms/MacCatalyst/Program.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ namespace Sentry.MauiTrimTest;
55

66
public 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
}

test/Sentry.MauiTrimTest/Platforms/Tizen/Main.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
namespace 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
}
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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>
1111
public 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

0 commit comments

Comments
 (0)