Skip to content

Commit c211256

Browse files
committed
Add very simple example editor
1 parent 6b2347a commit c211256

11 files changed

+694
-1
lines changed

AUTHORS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@
8282
- ([@testrunner123](https://github.com/testrunner123))
8383
- ([@DanBarzilian](https://github.com/DanBarzilian))
8484
- ([@alxnull](https://github.com/alxnull))
85-
- ([@gpetrou](https://github.com/gpetrou))
85+
- ([@gpetrou](https://github.com/gpetrou))

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
1313
- Python operator method will call C# operator method for supported binary and unary operators ([#1324][p1324]).
1414
- Add GetPythonThreadID and Interrupt methods in PythonEngine
1515
- Ability to implement delegates with `ref` and `out` parameters in Python, by returning the modified parameter values in a tuple. ([#1355][i1355])
16+
- Add very simple example editor
1617

1718
### Changed
1819
- Drop support for Python 2, 3.4, and 3.5

Editor/Editor.csproj

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
5+
<Platforms>x64;x86</Platforms>
6+
<OutputType>WinExe</OutputType>
7+
<LangVersion>9.0</LangVersion>
8+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9+
<UseWindowsForms>true</UseWindowsForms>
10+
</PropertyGroup>
11+
12+
<ItemGroup>
13+
<ProjectReference Include="..\src\runtime\Python.Runtime.csproj" />
14+
</ItemGroup>
15+
16+
</Project>

Editor/Forms/MainForm.Designer.cs

+204
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)