Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0d7acf4

Browse files
author
Barton Cline
committed
# Add modified python-clear.ico #
# Add sourceforge-logo.png # # assemblyinfo.cs added automatically # # Set Framework version to 4.0 #
1 parent 84cee99 commit 0d7acf4

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed

pythonnet/src/console/Console.csproj

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
1-
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
23
<PropertyGroup>
34
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
45
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
56
<ProjectGuid>{E29DCF0A-5114-4A98-B1DD-71264B6EA349}</ProjectGuid>
67
<OutputType>Exe</OutputType>
78
<NoStandardLibraries>false</NoStandardLibraries>
8-
<AssemblyName>python</AssemblyName>
9+
<AssemblyName>nPython</AssemblyName>
910
<RootNamespace>Python.Runtime</RootNamespace>
1011
<StartupObject>
1112
</StartupObject>
1213
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
14+
<FileUpgradeFlags>
15+
</FileUpgradeFlags>
16+
<UpgradeBackupLocation>
17+
</UpgradeBackupLocation>
18+
<OldToolsVersion>3.5</OldToolsVersion>
19+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
20+
<ApplicationIcon>python-clear.ico</ApplicationIcon>
21+
<TargetFrameworkProfile />
1322
</PropertyGroup>
1423
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1524
<DebugSymbols>true</DebugSymbols>
@@ -23,6 +32,8 @@
2332
<Optimize>true</Optimize>
2433
<OutputPath>.\bin\Release\</OutputPath>
2534
<DefineConstants>TRACE</DefineConstants>
35+
<DebugSymbols>true</DebugSymbols>
36+
<UseVSHostingProcess>false</UseVSHostingProcess>
2637
</PropertyGroup>
2738
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'EmbeddingTest|AnyCPU' ">
2839
<DebugSymbols>true</DebugSymbols>
@@ -40,11 +51,17 @@
4051
</PropertyGroup>
4152
<ItemGroup>
4253
<Reference Include="System" />
54+
<Reference Include="System.Core">
55+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
56+
</Reference>
4357
</ItemGroup>
4458
<ItemGroup>
4559
<Compile Include="assemblyinfo.cs" />
4660
<Compile Include="pythonconsole.cs" />
4761
</ItemGroup>
62+
<ItemGroup>
63+
<Content Include="python-clear.ico" />
64+
</ItemGroup>
4865
<ItemGroup>
4966
<ProjectReference Include="..\runtime\Python.Runtime.csproj">
5067
<Project>{097B4AC0-74E9-4C58-BCF8-C69746EC8271}</Project>
@@ -55,6 +72,9 @@
5572
<Name>Python.Test</Name>
5673
</ProjectReference>
5774
</ItemGroup>
75+
<ItemGroup>
76+
<None Include="app.config" />
77+
</ItemGroup>
5878
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
5979
<ProjectExtensions>
6080
<VisualStudio AllowExistingFolder="true" />
@@ -63,4 +83,4 @@
6383
<PostBuildEvent>copy "$(TargetPath)" "$(SolutionDir)"
6484
copy "$(TargetDir)*.pdb" "$(SolutionDir)"</PostBuildEvent>
6585
</PropertyGroup>
66-
</Project>
86+
</Project>

pythonnet/src/console/app.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0"?>
2+
<configuration>
3+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>

pythonnet/src/console/assemblyinfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
using System.Resources;
1515

1616
[assembly: System.Reflection.AssemblyProduct("Python for .NET")]
17-
[assembly: System.Reflection.AssemblyVersion("2.0.0.2")]
17+
[assembly: System.Reflection.AssemblyVersion("2.4.2.7")]
1818
[assembly: AssemblyTitleAttribute("Python Console")]
1919
[assembly: AssemblyDefaultAliasAttribute("python.exe")]
2020
[assembly: CLSCompliant(true)]
@@ -25,5 +25,5 @@
2525
Name = "FullTrust")]
2626
[assembly: AssemblyDescriptionAttribute("")]
2727
[assembly: AssemblyCopyrightAttribute("Zope Public License, Version 2.0 (ZPL)")]
28-
[assembly: AssemblyFileVersionAttribute("2.0.0.2")]
28+
[assembly: AssemblyFileVersionAttribute("2.0.0.4")]
2929
[assembly: NeutralResourcesLanguageAttribute("en")]
264 KB
Binary file not shown.
25.2 KB
Loading

0 commit comments

Comments
 (0)