Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zelenko/csharp
:computer: One file GUI in C#
https://github.com/zelenko/csharp
csharp csharp-script dotnet gui microsoft
Last synced: 4 days ago
JSON representation
:computer: One file GUI in C#
- Host: GitHub
- URL: https://github.com/zelenko/csharp
- Owner: zelenko
- License: mit
- Created: 2017-08-03T12:15:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-29T23:16:05.000Z (over 7 years ago)
- Last Synced: 2024-11-19T05:54:54.212Z (2 months ago)
- Topics: csharp, csharp-script, dotnet, gui, microsoft
- Language: C#
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple GUI
This simple "hello.cs" script creates GUI interface on Windows without any IDE installed. This was tested on Windows 10 with Microsoft .NET Framework 4.5.2 installed.## Requirements
* [Microsoft .NET Framework](https://www.microsoft.com/net/download/framework)
* Text editorFind where the "csc.exe" is located. Be default on Windows it is stored in `"C:\Windows\Microsoft.NET\Framework64\v3.5\"`. To run this command from command prompt, you either have to be in the folder, or add folder to your system $PATH:
C:\Windows\Microsoft.NET\Framework64\v3.5\To see existing path, run this command:
```
echo %Path%
```If your "hello.cs" is stored on C drive in "cs" folder, then your command to compile source code into executable is:
```
csc.exe /target:exe /out:c:\cs\hello.exe c:\cs\hello.cs
```# [![C Sharp](http://is3.mzstatic.com/image/thumb/Purple49/v4/96/ec/7b/96ec7b92-13be-1d8c-3ee5-f9d1f99a7b7b/source/1200x630bb.jpg)](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/)