-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added readme and renamed to 'WinForms (not working)'
- Loading branch information
1 parent
649219a
commit b782705
Showing
36 changed files
with
147 additions
and
73 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Main | ||
|
||
Contains the basic functionality for EZCode (automatically included in build). | ||
- `bool`, `str`, `float`, `int`, `expressions`, `var`, and `list` classes | ||
- `print`, `input`, `runcode`, `clear`, `regexmatch`, and `istype` methods | ||
- basic math functions including: | ||
- `add` add numbers | ||
- `subtract` subtract numbers | ||
- `multiply` multiply numbers | ||
- `divide` divide numbers | ||
- `pi` pi constant | ||
- `clamp` clamp number between 2 numbers | ||
- `avg` average of numbers | ||
- `operate` everything in MathF from C# class. | ||
|
||
```json | ||
bool b new : True | ||
str s new : Hello World | ||
float f new : 1.23 | ||
int i new : 123 | ||
var v new : any | ||
list l new : 1;2;3 | ||
(5 * 5) // expression -- explicit watch \((.* {EXP})\) | ||
print Hello World! // prints to console | ||
input // waits for the user to input | ||
clear // clears the console | ||
runcode undefined val => any // this runs any ezcode | ||
regexmatch : text, \/hello|\/world | ||
istype : #varname /*add the # before variable name*/, str | ||
add 5, 10 | ||
subtract 5, 10 | ||
multiply 5, 10 | ||
divide 5, 10 | ||
pi // returns pi constant | ||
clamp 50, 10, 100 // clamps number '50' between '10' and '100' | ||
avg 10, 20, 30, 40, 50, 100000 // returns the average of the numbers | ||
operate sin, 50 // returns the sin of 50 | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.5.002.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "WinForms (not working)", "WinForms (not working)", "{B0AF1F15-714A-4CF7-9B47-8DE5A2142A66}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WinFormsEZCodeLibrary", "WinForms (not working)\WinFormsEZCodeLibrary\WinFormsEZCodeLibrary.csproj", "{F8012344-E1E6-4158-A475-AB4F2062EA06}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{F8012344-E1E6-4158-A475-AB4F2062EA06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{F8012344-E1E6-4158-A475-AB4F2062EA06}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{F8012344-E1E6-4158-A475-AB4F2062EA06}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{F8012344-E1E6-4158-A475-AB4F2062EA06}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(NestedProjects) = preSolution | ||
{F8012344-E1E6-4158-A475-AB4F2062EA06} = {B0AF1F15-714A-4CF7-9B47-8DE5A2142A66} | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {5FC517E7-75CA-4C42-8038-190DD2961007} | ||
EndGlobalSection | ||
EndGlobal |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# WinForms | ||
|
||
Support for Windows Forms | ||
|
||
Package does not work |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
25 changes: 25 additions & 0 deletions
25
...ing)/WinFormsEZCodeLibrary/obj/Debug/net8.0-windows/WinFormsEZCodeLibrary.AssemblyInfo.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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by a tool. | ||
// Runtime Version:4.0.30319.42000 | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost if | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
|
||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyCompanyAttribute("WinFormsEZCodeLibrary")] | ||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | ||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+649219a3b0463a63f2614c2391221e67f3f88c6d")] | ||
[assembly: System.Reflection.AssemblyProductAttribute("WinFormsEZCodeLibrary")] | ||
[assembly: System.Reflection.AssemblyTitleAttribute("WinFormsEZCodeLibrary")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | ||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] | ||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] | ||
|
||
// Generated by the MSBuild WriteCodeFragment class. | ||
|
1 change: 1 addition & 0 deletions
1
...ormsEZCodeLibrary/obj/Debug/net8.0-windows/WinFormsEZCodeLibrary.AssemblyInfoInputs.cache
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
65543cd7b35cd7b45bb5c5f4d461d73803d942e2949eb3c47b85cab766af21d9 |
19 changes: 19 additions & 0 deletions
19
.../obj/Debug/net8.0-windows/WinFormsEZCodeLibrary.GeneratedMSBuildEditorConfig.editorconfig
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
is_global = true | ||
build_property.ApplicationManifest = | ||
build_property.StartupObject = | ||
build_property.ApplicationDefaultFont = | ||
build_property.ApplicationHighDpiMode = | ||
build_property.ApplicationUseCompatibleTextRendering = | ||
build_property.ApplicationVisualStyles = | ||
build_property.TargetFramework = net8.0-windows | ||
build_property.TargetPlatformMinVersion = 7.0 | ||
build_property.UsingMicrosoftNETSdkWeb = | ||
build_property.ProjectTypeGuids = | ||
build_property.InvariantGlobalization = | ||
build_property.PlatformNeutralAssembly = | ||
build_property.EnforceExtendedAnalyzerRules = | ||
build_property._SupportedPlatformList = Linux,macOS,Windows | ||
build_property.RootNamespace = WinFormsEZCodeLibrary | ||
build_property.ProjectDir = D:\EZCodeLanguage\Packages\WinForms (not working)\WinFormsEZCodeLibrary\ | ||
build_property.EnableComHosting = | ||
build_property.EnableGeneratedComInterfaceComImportInterop = |
File renamed without changes.
Binary file renamed
BIN
+778 Bytes
...indows/WinFormsEZCodeLibrary.assets.cache → ...indows/WinFormsEZCodeLibrary.assets.cache
Binary file not shown.
Binary file added
BIN
+749 Bytes
...CodeLibrary/obj/Debug/net8.0-windows/WinFormsEZCodeLibrary.csproj.AssemblyReference.cache
Binary file not shown.
File renamed without changes.
1 change: 1 addition & 0 deletions
1
...CodeLibrary/obj/Debug/net8.0-windows/WinFormsEZCodeLibrary.csproj.CoreCompileInputs.cache
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
c98b8dfd39af0619705e47d0c33176e3bbfe72242ceec79f540344d144144455 |
9 changes: 9 additions & 0 deletions
9
...sEZCodeLibrary/obj/Debug/net8.0-windows/WinFormsEZCodeLibrary.csproj.FileListAbsolute.txt
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
D:\EZCodeLanguage\Packages\WinForms\WinFormsEZCodeLibrary\obj\Debug\net8.0-windows\refint\WinFormsEZCodeLibrary.dll | ||
D:\EZCodeLanguage\Packages\WinForms\WinFormsEZCodeLibrary\obj\Debug\net8.0-windows\WinFormsEZCodeLibrary.csproj.AssemblyReference.cache | ||
D:\EZCodeLanguage\Packages\WinForms\WinFormsEZCodeLibrary\obj\Debug\net8.0-windows\WinFormsEZCodeLibrary.GeneratedMSBuildEditorConfig.editorconfig | ||
D:\EZCodeLanguage\Packages\WinForms\WinFormsEZCodeLibrary\obj\Debug\net8.0-windows\WinFormsEZCodeLibrary.AssemblyInfoInputs.cache | ||
D:\EZCodeLanguage\Packages\WinForms\WinFormsEZCodeLibrary\obj\Debug\net8.0-windows\WinFormsEZCodeLibrary.AssemblyInfo.cs | ||
D:\EZCodeLanguage\Packages\WinForms\WinFormsEZCodeLibrary\obj\Debug\net8.0-windows\WinFormsEZCodeLibrary.csproj.CoreCompileInputs.cache | ||
D:\EZCodeLanguage\Packages\WinForms\WinFormsEZCodeLibrary\obj\Debug\net8.0-windows\WinFormsEZCodeLibrary.sourcelink.json | ||
D:\EZCodeLanguage\Packages\WinForms\WinFormsEZCodeLibrary\obj\Debug\net8.0-windows\WinFormsEZCodeLibrary.dll | ||
D:\EZCodeLanguage\Packages\WinForms\WinFormsEZCodeLibrary\obj\Debug\net8.0-windows\WinFormsEZCodeLibrary.pdb |
Binary file added
BIN
+5.5 KB
...ms (not working)/WinFormsEZCodeLibrary/obj/Debug/net8.0-windows/WinFormsEZCodeLibrary.dll
Binary file not shown.
Binary file added
BIN
+12.6 KB
...ms (not working)/WinFormsEZCodeLibrary/obj/Debug/net8.0-windows/WinFormsEZCodeLibrary.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...ing)/WinFormsEZCodeLibrary/obj/Debug/net8.0-windows/WinFormsEZCodeLibrary.sourcelink.json
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
{"documents":{"D:\\EZCodeLanguage\\Packages\\*":"https://raw.githubusercontent.com/JBrosDevelopment/Packages/649219a3b0463a63f2614c2391221e67f3f88c6d/*"}} |
File renamed without changes.
Binary file added
BIN
+5.5 KB
... working)/WinFormsEZCodeLibrary/obj/Debug/net8.0-windows/refint/WinFormsEZCodeLibrary.dll
Binary file not shown.
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
File renamed without changes.
File renamed without changes.
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
10 changes: 10 additions & 0 deletions
10
WinForms (not working)/WinFormsEZCodeLibrary/obj/project.nuget.cache
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"version": 2, | ||
"dgSpecHash": "dX1ed+xNvi6l/wVT2O4I1bKUnvZglrU4DsoAmHgttwbHyxDKufs/ZSw0XDmteJjPmBua5tJqFgR3qBedGpAbQA==", | ||
"success": true, | ||
"projectFilePath": "D:\\EZCodeLanguage\\Packages\\WinForms (not working)\\WinFormsEZCodeLibrary\\WinFormsEZCodeLibrary.csproj", | ||
"expectedPackageFiles": [ | ||
"C:\\Users\\jlham\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512" | ||
], | ||
"logs": [] | ||
} |
File renamed without changes.
File renamed without changes.
Empty file.
This file was deleted.
Oops, something went wrong.