Skip to content

Commit 9889ff1

Browse files
committed
Add very simple example editor and Interrupt method in Runtime
1 parent d9e15a7 commit 9889ff1

12 files changed

+704
-0
lines changed

AUTHORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,4 @@
8181
- ([@testrunner123](https://github.com/testrunner123))
8282
- ([@DanBarzilian](https://github.com/DanBarzilian))
8383
- ([@alxnull](https://github.com/alxnull))
84+
- ([gpetrou](https://github.com/gpetrou))

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
1010
### Added
1111

1212
- Ability to instantiate new .NET arrays using `Array[T](dim1, dim2, ...)` syntax
13+
- Add very simple example editor and Interrupt method in Runtime
1314

1415
### Changed
1516
- Drop support for Python 2, 3.4, and 3.5

pythonnet.sln

+14
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{BC426F42
4747
tools\geninterop\geninterop.py = tools\geninterop\geninterop.py
4848
EndProjectSection
4949
EndProject
50+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Editor", "src\Editor\Editor.csproj", "{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}"
51+
EndProject
5052
Global
5153
GlobalSection(SolutionConfigurationPlatforms) = preSolution
5254
Debug|Any CPU = Debug|Any CPU
@@ -129,6 +131,18 @@ Global
129131
{4F2EA4A1-7ECA-48B5-8077-7A3C366F9931}.Release|x64.Build.0 = Release|x64
130132
{4F2EA4A1-7ECA-48B5-8077-7A3C366F9931}.Release|x86.ActiveCfg = Release|x86
131133
{4F2EA4A1-7ECA-48B5-8077-7A3C366F9931}.Release|x86.Build.0 = Release|x86
134+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Debug|Any CPU.ActiveCfg = Debug|x64
135+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Debug|Any CPU.Build.0 = Debug|x64
136+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Debug|x64.ActiveCfg = Debug|x64
137+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Debug|x64.Build.0 = Debug|x64
138+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Debug|x86.ActiveCfg = Debug|Any CPU
139+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Debug|x86.Build.0 = Debug|Any CPU
140+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Release|Any CPU.ActiveCfg = Release|Any CPU
141+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Release|Any CPU.Build.0 = Release|Any CPU
142+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Release|x64.ActiveCfg = Release|Any CPU
143+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Release|x64.Build.0 = Release|Any CPU
144+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Release|x86.ActiveCfg = Release|Any CPU
145+
{99FE9D2F-0E9A-428D-9F52-83C10EB48FD5}.Release|x86.Build.0 = Release|Any CPU
132146
EndGlobalSection
133147
GlobalSection(SolutionProperties) = preSolution
134148
HideSolutionNode = FALSE

src/Editor/Editor.csproj

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
<UseWindowsForms>true</UseWindowsForms>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<ProjectReference Include="..\runtime\Python.Runtime.csproj" />
12+
</ItemGroup>
13+
14+
</Project>

src/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)