-
-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add usings back to project templates
Fixes #2619
- Loading branch information
Showing
18 changed files
with
69 additions
and
8 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
src/Eto.Forms.Templates/content/App-CSharp/EtoApp.1/MainForm.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
src/Eto.Forms.Templates/content/App-CSharp/EtoApp.1/MainForm.eto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
src/Eto.Forms.Templates/content/App-CSharp/EtoApp.1/MainForm.jeto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
src/Eto.Forms.Templates/content/App-CSharp/EtoApp.1/MainForm.xeto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
src/Eto.Forms.Templates/content/App-CSharp/EtoApp.1/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
namespace EtoApp._1 | ||
using System; | ||
using Eto.Forms; | ||
using Eto.Drawing; | ||
|
||
namespace EtoApp._1 | ||
{ | ||
class Program | ||
{ | ||
|
5 changes: 4 additions & 1 deletion
5
src/Eto.Forms.Templates/content/App-CSharp/Separate/EtoApp.1.Gtk/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
namespace EtoApp._1.Gtk | ||
using System; | ||
using Eto.Forms; | ||
|
||
namespace EtoApp._1.Gtk | ||
{ | ||
class Program | ||
{ | ||
|
5 changes: 4 additions & 1 deletion
5
src/Eto.Forms.Templates/content/App-CSharp/Separate/EtoApp.1.Mac/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
namespace EtoApp._1.Mac | ||
using System; | ||
using Eto.Forms; | ||
|
||
namespace EtoApp._1.Mac | ||
{ | ||
class Program | ||
{ | ||
|
5 changes: 4 additions & 1 deletion
5
src/Eto.Forms.Templates/content/App-CSharp/Separate/EtoApp.1.MacOS/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
namespace EtoApp._1.Mac | ||
using System; | ||
using Eto.Forms; | ||
|
||
namespace EtoApp._1.Mac | ||
{ | ||
class Program | ||
{ | ||
|
5 changes: 4 additions & 1 deletion
5
src/Eto.Forms.Templates/content/App-CSharp/Separate/EtoApp.1.WinForms/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
namespace EtoApp._1.WinForms | ||
using System; | ||
using Eto.Forms; | ||
|
||
namespace EtoApp._1.WinForms | ||
{ | ||
class Program | ||
{ | ||
|
5 changes: 4 additions & 1 deletion
5
src/Eto.Forms.Templates/content/App-CSharp/Separate/EtoApp.1.Wpf/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
namespace EtoApp._1.Wpf | ||
using System; | ||
using Eto.Forms; | ||
|
||
namespace EtoApp._1.Wpf | ||
{ | ||
class Program | ||
{ | ||
|
2 changes: 2 additions & 0 deletions
2
src/Eto.Forms.Templates/content/App-CSharp/Separate/EtoApp.1.XamMac/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
using AppKit; | ||
using Eto.Forms; | ||
|
||
namespace EtoApp._1.XamMac | ||
{ | ||
class Program | ||
|
5 changes: 4 additions & 1 deletion
5
src/Eto.Forms.Templates/content/App-FSharp/Separate/EtoApp.1.Wpf/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
namespace EtoApp._1.Wpf | ||
using System; | ||
using Eto.Forms; | ||
|
||
namespace EtoApp._1.Wpf | ||
{ | ||
class Program | ||
{ | ||
|
5 changes: 4 additions & 1 deletion
5
src/Eto.Forms.Templates/content/App-VisualBasic/Separate/EtoApp.1.MacOS/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
namespace EtoApp._1.Mac | ||
using System; | ||
using Eto.Forms; | ||
|
||
namespace EtoApp._1.Mac | ||
{ | ||
class Program | ||
{ | ||
|
2 changes: 2 additions & 0 deletions
2
src/Eto.Forms.Templates/content/App-VisualBasic/Separate/EtoApp.1.XamMac/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
using AppKit; | ||
using Eto.Forms; | ||
|
||
namespace EtoApp._1.XamMac | ||
{ | ||
class Program | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters