Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit67474eb

Browse files
committed
Add very simple example editor and Interrupt method in Runtime
1 parentd9e15a7 commit67474eb

File tree

12 files changed

+695
-0
lines changed

12 files changed

+695
-0
lines changed

‎AUTHORS.md

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 14 additions & 0 deletions
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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<ProjectSdk="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+
<ProjectReferenceInclude="..\runtime\Python.Runtime.csproj" />
12+
</ItemGroup>
13+
14+
</Project>

‎src/Editor/Forms/MainForm.Designer.cs

Lines changed: 204 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp