Skip to content
This repository was archived by the owner on Jun 4, 2019. It is now read-only.

Commit bc51639

Browse files
author
Barton Cline
committed
Of course, for the previous to work, you'll be needing the project files to go with...
But we don't need another copy of that signing key laying around.
1 parent 3a01c11 commit bc51639

File tree

6 files changed

+473
-18
lines changed

6 files changed

+473
-18
lines changed

pythonnet/src/clrmodule/clrmodule.csproj

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,79 @@
3939
<AssemblyOriginatorKeyFile>
4040
</AssemblyOriginatorKeyFile>
4141
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
43+
<DebugSymbols>true</DebugSymbols>
44+
<OutputPath>bin\x86\Debug\</OutputPath>
45+
<DefineConstants>DEBUG;TRACE</DefineConstants>
46+
<DebugType>full</DebugType>
47+
<PlatformTarget>x86</PlatformTarget>
48+
<ErrorReport>prompt</ErrorReport>
49+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
50+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
51+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
52+
</PropertyGroup>
53+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
54+
<OutputPath>bin\x86\Release\</OutputPath>
55+
<DefineConstants>TRACE</DefineConstants>
56+
<Optimize>true</Optimize>
57+
<DebugType>pdbonly</DebugType>
58+
<PlatformTarget>x86</PlatformTarget>
59+
<ErrorReport>prompt</ErrorReport>
60+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
61+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
62+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
63+
</PropertyGroup>
64+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono_x86|AnyCPU'">
65+
<DebugSymbols>true</DebugSymbols>
66+
<OutputPath>bin\DebugMono_x86\</OutputPath>
67+
<DefineConstants>DEBUG;TRACE</DefineConstants>
68+
<DebugType>full</DebugType>
69+
<PlatformTarget>x86</PlatformTarget>
70+
<ErrorReport>prompt</ErrorReport>
71+
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
72+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
73+
</PropertyGroup>
74+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono_x86|x86'">
75+
<DebugSymbols>true</DebugSymbols>
76+
<OutputPath>bin\x86\DebugMono_x86\</OutputPath>
77+
<DefineConstants>DEBUG;TRACE</DefineConstants>
78+
<DebugType>full</DebugType>
79+
<PlatformTarget>x86</PlatformTarget>
80+
<ErrorReport>prompt</ErrorReport>
81+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
82+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
83+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
84+
</PropertyGroup>
85+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
86+
<DebugSymbols>true</DebugSymbols>
87+
<OutputPath>bin\x64\Debug\</OutputPath>
88+
<DefineConstants>DEBUG;TRACE</DefineConstants>
89+
<DebugType>full</DebugType>
90+
<PlatformTarget>x64</PlatformTarget>
91+
<ErrorReport>prompt</ErrorReport>
92+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
93+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
94+
</PropertyGroup>
95+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
96+
<OutputPath>bin\x64\Release\</OutputPath>
97+
<DefineConstants>TRACE</DefineConstants>
98+
<Optimize>true</Optimize>
99+
<DebugType>pdbonly</DebugType>
100+
<PlatformTarget>x64</PlatformTarget>
101+
<ErrorReport>prompt</ErrorReport>
102+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
103+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
104+
</PropertyGroup>
105+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono_x86|x64'">
106+
<DebugSymbols>true</DebugSymbols>
107+
<OutputPath>bin\x64\DebugMono_x86\</OutputPath>
108+
<DefineConstants>DEBUG;TRACE</DefineConstants>
109+
<DebugType>full</DebugType>
110+
<PlatformTarget>x64</PlatformTarget>
111+
<ErrorReport>prompt</ErrorReport>
112+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
113+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
114+
</PropertyGroup>
42115
<ItemGroup>
43116
<Reference Include="RGiesecke.DllExport.Metadata">
44117
<HintPath>..\..\packages\UnmanagedExports.1.2.3-Beta\lib\net\RGiesecke.DllExport.Metadata.dll</HintPath>

pythonnet/src/console/Console.csproj

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,109 @@
4949
<DebugType>full</DebugType>
5050
<PlatformTarget>AnyCPU</PlatformTarget>
5151
</PropertyGroup>
52+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
53+
<DebugSymbols>true</DebugSymbols>
54+
<OutputPath>bin\x86\Debug\</OutputPath>
55+
<DefineConstants>DEBUG;TRACE</DefineConstants>
56+
<DebugType>full</DebugType>
57+
<PlatformTarget>x86</PlatformTarget>
58+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
59+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
60+
</PropertyGroup>
61+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
62+
<DebugSymbols>true</DebugSymbols>
63+
<OutputPath>bin\x86\Release\</OutputPath>
64+
<DefineConstants>TRACE</DefineConstants>
65+
<Optimize>true</Optimize>
66+
<DebugType>pdbonly</DebugType>
67+
<PlatformTarget>x86</PlatformTarget>
68+
<UseVSHostingProcess>false</UseVSHostingProcess>
69+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
70+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
71+
</PropertyGroup>
72+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'EmbeddingTest|x86'">
73+
<DebugSymbols>true</DebugSymbols>
74+
<OutputPath>bin\x86\EmbeddingTest\</OutputPath>
75+
<DefineConstants>DEBUG;TRACE</DefineConstants>
76+
<DebugType>full</DebugType>
77+
<PlatformTarget>x86</PlatformTarget>
78+
</PropertyGroup>
79+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'UnitTests|x86'">
80+
<DebugSymbols>true</DebugSymbols>
81+
<OutputPath>bin\x86\UnitTests\</OutputPath>
82+
<DefineConstants>DEBUG;TRACE</DefineConstants>
83+
<DebugType>full</DebugType>
84+
<PlatformTarget>x86</PlatformTarget>
85+
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
86+
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
87+
</PropertyGroup>
88+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono_x86|AnyCPU'">
89+
<DebugSymbols>true</DebugSymbols>
90+
<OutputPath>bin\DebugMono_x86\</OutputPath>
91+
<DefineConstants>DEBUG;TRACE</DefineConstants>
92+
<DebugType>full</DebugType>
93+
<PlatformTarget>AnyCPU</PlatformTarget>
94+
</PropertyGroup>
95+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono_x86|x86'">
96+
<DebugSymbols>true</DebugSymbols>
97+
<OutputPath>bin\x86\DebugMono_x86\</OutputPath>
98+
<DefineConstants>DEBUG;TRACE</DefineConstants>
99+
<DebugType>full</DebugType>
100+
<PlatformTarget>x86</PlatformTarget>
101+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
102+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
103+
</PropertyGroup>
104+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
105+
<DebugSymbols>true</DebugSymbols>
106+
<OutputPath>bin\x64\Debug\</OutputPath>
107+
<DefineConstants>DEBUG;TRACE</DefineConstants>
108+
<DebugType>full</DebugType>
109+
<PlatformTarget>x64</PlatformTarget>
110+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
111+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
112+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
113+
</PropertyGroup>
114+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
115+
<DebugSymbols>true</DebugSymbols>
116+
<OutputPath>bin\x64\Release\</OutputPath>
117+
<DefineConstants>TRACE</DefineConstants>
118+
<Optimize>true</Optimize>
119+
<DebugType>pdbonly</DebugType>
120+
<PlatformTarget>x64</PlatformTarget>
121+
<UseVSHostingProcess>false</UseVSHostingProcess>
122+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
123+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
124+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
125+
</PropertyGroup>
126+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'EmbeddingTest|x64'">
127+
<DebugSymbols>true</DebugSymbols>
128+
<OutputPath>bin\x64\EmbeddingTest\</OutputPath>
129+
<DefineConstants>DEBUG;TRACE</DefineConstants>
130+
<DebugType>full</DebugType>
131+
<PlatformTarget>x64</PlatformTarget>
132+
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
133+
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
134+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
135+
</PropertyGroup>
136+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'UnitTests|x64'">
137+
<DebugSymbols>true</DebugSymbols>
138+
<OutputPath>bin\x64\UnitTests\</OutputPath>
139+
<DefineConstants>DEBUG;TRACE</DefineConstants>
140+
<DebugType>full</DebugType>
141+
<PlatformTarget>x64</PlatformTarget>
142+
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
143+
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
144+
</PropertyGroup>
145+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono_x86|x64'">
146+
<DebugSymbols>true</DebugSymbols>
147+
<OutputPath>bin\x64\DebugMono_x86\</OutputPath>
148+
<DefineConstants>DEBUG;TRACE</DefineConstants>
149+
<DebugType>full</DebugType>
150+
<PlatformTarget>x64</PlatformTarget>
151+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
152+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
153+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
154+
</PropertyGroup>
52155
<ItemGroup>
53156
<Reference Include="System" />
54157
<Reference Include="System.Core">

pythonnet/src/embed_tests/Python.EmbeddingTest.csproj

Lines changed: 104 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<OutputType>Library</OutputType>
88
<NoStandardLibraries>false</NoStandardLibraries>
99
<AssemblyName>Python.EmbeddingTest</AssemblyName>
10-
<RootNamespace>Python.Runtime</RootNamespace>
10+
<RootNamespace>Python.EmbeddingTest</RootNamespace>
1111
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
1212
<FileUpgradeFlags>
1313
</FileUpgradeFlags>
@@ -68,6 +68,109 @@
6868
<PropertyGroup>
6969
<AssemblyOriginatorKeyFile>pythonnet.snk</AssemblyOriginatorKeyFile>
7070
</PropertyGroup>
71+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
72+
<DebugSymbols>true</DebugSymbols>
73+
<OutputPath>bin\x86\Debug\</OutputPath>
74+
<DefineConstants>DEBUG;TRACE</DefineConstants>
75+
<DebugType>full</DebugType>
76+
<PlatformTarget>x86</PlatformTarget>
77+
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
78+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
79+
<CodeAnalysisFailOnMissingRules>true</CodeAnalysisFailOnMissingRules>
80+
</PropertyGroup>
81+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
82+
<OutputPath>bin\x86\Release\</OutputPath>
83+
<DefineConstants>TRACE</DefineConstants>
84+
<Optimize>true</Optimize>
85+
<DebugType>pdbonly</DebugType>
86+
<PlatformTarget>x86</PlatformTarget>
87+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
88+
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
89+
</PropertyGroup>
90+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'EmbeddingTest|x86'">
91+
<DebugSymbols>true</DebugSymbols>
92+
<OutputPath>bin\x86\EmbeddingTest\</OutputPath>
93+
<DefineConstants>DEBUG;TRACE</DefineConstants>
94+
<DebugType>full</DebugType>
95+
<PlatformTarget>x86</PlatformTarget>
96+
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
97+
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
98+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
99+
</PropertyGroup>
100+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'UnitTests|x86'">
101+
<DebugSymbols>true</DebugSymbols>
102+
<OutputPath>bin\x86\UnitTests\</OutputPath>
103+
<DefineConstants>DEBUG;TRACE</DefineConstants>
104+
<DebugType>full</DebugType>
105+
<PlatformTarget>x86</PlatformTarget>
106+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
107+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
108+
</PropertyGroup>
109+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono_x86|AnyCPU'">
110+
<DebugSymbols>true</DebugSymbols>
111+
<OutputPath>bin\DebugMono_x86\</OutputPath>
112+
<DefineConstants>DEBUG;TRACE</DefineConstants>
113+
<DebugType>full</DebugType>
114+
<PlatformTarget>AnyCPU</PlatformTarget>
115+
</PropertyGroup>
116+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono_x86|x86'">
117+
<DebugSymbols>true</DebugSymbols>
118+
<OutputPath>bin\x86\DebugMono_x86\</OutputPath>
119+
<DefineConstants>DEBUG;TRACE</DefineConstants>
120+
<DebugType>full</DebugType>
121+
<PlatformTarget>x86</PlatformTarget>
122+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
123+
<CodeAnalysisFailOnMissingRules>true</CodeAnalysisFailOnMissingRules>
124+
</PropertyGroup>
125+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
126+
<DebugSymbols>true</DebugSymbols>
127+
<OutputPath>bin\x64\Debug\</OutputPath>
128+
<DefineConstants>DEBUG;TRACE</DefineConstants>
129+
<DebugType>full</DebugType>
130+
<PlatformTarget>x64</PlatformTarget>
131+
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
132+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
133+
<CodeAnalysisFailOnMissingRules>true</CodeAnalysisFailOnMissingRules>
134+
</PropertyGroup>
135+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
136+
<OutputPath>bin\x64\Release\</OutputPath>
137+
<DefineConstants>TRACE</DefineConstants>
138+
<Optimize>true</Optimize>
139+
<DebugType>pdbonly</DebugType>
140+
<PlatformTarget>x64</PlatformTarget>
141+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
142+
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
143+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
144+
</PropertyGroup>
145+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'EmbeddingTest|x64'">
146+
<DebugSymbols>true</DebugSymbols>
147+
<OutputPath>bin\x64\EmbeddingTest\</OutputPath>
148+
<DefineConstants>DEBUG;TRACE</DefineConstants>
149+
<DebugType>full</DebugType>
150+
<PlatformTarget>x64</PlatformTarget>
151+
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
152+
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
153+
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
154+
</PropertyGroup>
155+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'UnitTests|x64'">
156+
<DebugSymbols>true</DebugSymbols>
157+
<OutputPath>bin\x64\UnitTests\</OutputPath>
158+
<DefineConstants>DEBUG;TRACE</DefineConstants>
159+
<DebugType>full</DebugType>
160+
<PlatformTarget>x64</PlatformTarget>
161+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
162+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
163+
</PropertyGroup>
164+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugMono_x86|x64'">
165+
<DebugSymbols>true</DebugSymbols>
166+
<OutputPath>bin\x64\DebugMono_x86\</OutputPath>
167+
<DefineConstants>DEBUG;TRACE</DefineConstants>
168+
<DebugType>full</DebugType>
169+
<PlatformTarget>x64</PlatformTarget>
170+
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
171+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
172+
<CodeAnalysisFailOnMissingRules>true</CodeAnalysisFailOnMissingRules>
173+
</PropertyGroup>
71174
<ItemGroup>
72175
<Reference Include="System" />
73176
<Reference Include="System.Core">
-596 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)