| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,6 +13,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][]. | |||
| 13 | 13 | - Python operator method will call C# operator method for supported binary and unary operators ([#1324][p1324]). | |
| 14 | 14 | - Add GetPythonThreadID and Interrupt methods in PythonEngine | |
| 15 | 15 | - 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 | ||
| 16 | 17 | ||
| 17 | 18 | ### Changed | |
| 18 | 19 | - Drop support for Python 2, 3.4, and 3.5 | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,31 @@ | |||
| 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 | + <ItemGroup> | ||
| 17 | + <Compile Update="Properties\Resources.Designer.cs"> | ||
| 18 | + <DesignTime>True</DesignTime> | ||
| 19 | + <AutoGen>True</AutoGen> | ||
| 20 | + <DependentUpon>Resources.resx</DependentUpon> | ||
| 21 | + </Compile> | ||
| 22 | + </ItemGroup> | ||
| 23 | + | ||
| 24 | + <ItemGroup> | ||
| 25 | + <EmbeddedResource Update="Properties\Resources.resx"> | ||
| 26 | + <Generator>ResXFileCodeGenerator</Generator> | ||
| 27 | + <LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
| 28 | + </EmbeddedResource> | ||
| 29 | + </ItemGroup> | ||
| 30 | + | ||
| 31 | + </Project> | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments