Skip to content

Commit c1f52f1

Browse files
Rename dotnet.csproj to iOSDotNetTest.csproj and update namespaces
- Rename dotnet.csproj to iOSDotNetTest.csproj - Update namespace from 'dotnet' to 'iOSDotNetTest' in AppDelegate.cs, SceneDelegate.cs, Main.cs, and Test1.cs Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 00ad40f commit c1f52f1

5 files changed

Lines changed: 4 additions & 4 deletions

File tree

dotnet/AppDelegate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace dotnet;
1+
namespace iOSDotNetTest;
22

33
[Register ("AppDelegate")]
44
public class AppDelegate : UIApplicationDelegate {

dotnet/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using dotnet;
1+
using iOSDotNetTest;
22

33
// This is the main entry point of the application.
44
// If you want to use a different Application Delegate class from "AppDelegate"

dotnet/SceneDelegate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace dotnet;
1+
namespace iOSDotNetTest;
22

33
[Register ("SceneDelegate")]
44
public class SceneDelegate : UIResponder, IUIWindowSceneDelegate {

dotnet/Test1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace dotnet;
1+
namespace iOSDotNetTest;
22

33
[TestClass]
44
public sealed class Test1

0 commit comments

Comments
 (0)