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

Commit7476e42

Browse files
committed
Add pyproj from @denfromufa
Corrected the configs, won't interfere with users without PTVS
1 parentd68ab74 commit7476e42

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed

‎pythonnet.sln

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Console", "src\console\Cons
1212
EndProject
1313
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") ="clrmodule","src\clrmodule\clrmodule.csproj","{86E834DE-1139-4511-96CC-69636A56E7AC}"
1414
EndProject
15+
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") ="tests","src\tests\tests.pyproj","{250C535C-C060-4F0C-BD80-41F2BF373565}"
16+
EndProject
1517
Global
1618
GlobalSection(SolutionConfigurationPlatforms) =preSolution
1719
DebugMono|x64=DebugMono|x64
@@ -100,6 +102,14 @@ Global
100102
{86E834DE-1139-4511-96CC-69636A56E7AC}.ReleaseWin|x64.Build.0=ReleaseWin|x64
101103
{86E834DE-1139-4511-96CC-69636A56E7AC}.ReleaseWin|x86.ActiveCfg=ReleaseWin|x86
102104
{86E834DE-1139-4511-96CC-69636A56E7AC}.ReleaseWin|x86.Build.0=ReleaseWin|x86
105+
{250C535C-C060-4F0C-BD80-41F2BF373565}.DebugMono|x64.ActiveCfg=DebugMono|Any CPU
106+
{250C535C-C060-4F0C-BD80-41F2BF373565}.DebugMono|x86.ActiveCfg=DebugMono|Any CPU
107+
{250C535C-C060-4F0C-BD80-41F2BF373565}.DebugWin|x64.ActiveCfg=DebugWin|Any CPU
108+
{250C535C-C060-4F0C-BD80-41F2BF373565}.DebugWin|x86.ActiveCfg=DebugWin|Any CPU
109+
{250C535C-C060-4F0C-BD80-41F2BF373565}.ReleaseMono|x64.ActiveCfg=ReleaseMono|Any CPU
110+
{250C535C-C060-4F0C-BD80-41F2BF373565}.ReleaseMono|x86.ActiveCfg=ReleaseMono|Any CPU
111+
{250C535C-C060-4F0C-BD80-41F2BF373565}.ReleaseWin|x64.ActiveCfg=ReleaseWin|Any CPU
112+
{250C535C-C060-4F0C-BD80-41F2BF373565}.ReleaseWin|x86.ActiveCfg=ReleaseWin|Any CPU
103113
EndGlobalSection
104114
GlobalSection(SolutionProperties) =preSolution
105115
HideSolutionNode =FALSE

‎src/tests/tests.pyproj

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<ProjectToolsVersion="4.0"xmlns="http://schemas.microsoft.com/developer/msbuild/2003"DefaultTargets="Build">
3+
<PropertyGroup>
4+
<ConfigurationCondition=" '$(Configuration)' == ''">Debug</Configuration>
5+
<SchemaVersion>2.0</SchemaVersion>
6+
<ProjectGuid>{250c535c-c060-4f0c-bd80-41f2bf373565}</ProjectGuid>
7+
<ProjectHome />
8+
<StartupFile>runtests.py</StartupFile>
9+
<SearchPath />
10+
<WorkingDirectory>.</WorkingDirectory>
11+
<OutputPath>.</OutputPath>
12+
<ProjectTypeGuids>{888888a0-9f3d-457c-b088-3a5042f75d52}</ProjectTypeGuids>
13+
<LaunchProvider>Standard Python launcher</LaunchProvider>
14+
<InterpreterId />
15+
<InterpreterVersion />
16+
</PropertyGroup>
17+
<PropertyGroupCondition="'$(Configuration)' == 'DebugMono'" />
18+
<PropertyGroupCondition="'$(Configuration)' == 'DebugWin'" />
19+
<PropertyGroupCondition="'$(Configuration)' == 'ReleaseMono'" />
20+
<PropertyGroupCondition="'$(Configuration)' == 'ReleaseWin'" />
21+
<PropertyGroup>
22+
<VisualStudioVersionCondition=" '$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
23+
<PtvsTargetsFile>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\Python Tools\Microsoft.PythonTools.targets</PtvsTargetsFile>
24+
</PropertyGroup>
25+
<ItemGroup>
26+
<CompileInclude="leaktest.py" />
27+
<CompileInclude="profile.py" />
28+
<CompileInclude="PyImportTest\test\one.py" />
29+
<CompileInclude="PyImportTest\test\__init__.py" />
30+
<CompileInclude="PyImportTest\__init__.py" />
31+
<CompileInclude="runtests.py" />
32+
<CompileInclude="stress.py" />
33+
<CompileInclude="stresstest.py" />
34+
<CompileInclude="test_array.py" />
35+
<CompileInclude="test_class.py" />
36+
<CompileInclude="test_compat.py" />
37+
<CompileInclude="test_constructors.py" />
38+
<CompileInclude="test_conversion.py" />
39+
<CompileInclude="test_delegate.py" />
40+
<CompileInclude="test_docstring.py" />
41+
<CompileInclude="test_engine.py" />
42+
<CompileInclude="test_enum.py" />
43+
<CompileInclude="test_event.py" />
44+
<CompileInclude="test_exceptions.py" />
45+
<CompileInclude="test_field.py" />
46+
<CompileInclude="test_generic.py" />
47+
<CompileInclude="test_indexer.py" />
48+
<CompileInclude="test_interface.py" />
49+
<CompileInclude="test_method.py" />
50+
<CompileInclude="test_module.py" />
51+
<CompileInclude="test_property.py" />
52+
<CompileInclude="test_subclass.py" />
53+
<CompileInclude="test_suite\test_callback.py" />
54+
<CompileInclude="test_suite\test_import.py" />
55+
<CompileInclude="test_suite\test_recursive_types.py" />
56+
<CompileInclude="test_suite\_missing_import.py" />
57+
<CompileInclude="test_suite\__init__.py" />
58+
<CompileInclude="test_thread.py" />
59+
</ItemGroup>
60+
<ItemGroup>
61+
<FolderInclude="PyImportTest" />
62+
<FolderInclude="PyImportTest\test" />
63+
<FolderInclude="test_suite" />
64+
</ItemGroup>
65+
<ImportProject="$(PtvsTargetsFile)"Condition="Exists($(PtvsTargetsFile))" />
66+
<ImportProject="$(MSBuildToolsPath)\Microsoft.Common.targets"Condition="!Exists($(PtvsTargetsFile))" />
67+
</Project>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp