Skip to content

Commit 65e40f3

Browse files
committed
resolve #6
1 parent 083ba68 commit 65e40f3

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

CADPythonShell/CADPythonShell.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
88
<UseWindowsForms>true</UseWindowsForms>
99
<UseWPF>true</UseWPF>
10+
<PlatformTarget>x64</PlatformTarget>
1011
<Configurations>Debug A23</Configurations>
1112
<Configurations>$(Configurations);Release A23</Configurations>
1213
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
1314
</PropertyGroup>
14-
<PropertyGroup>
15+
<!--<PropertyGroup>
1516
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
1617
None
1718
</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
18-
</PropertyGroup>
19+
</PropertyGroup>-->
1920
<PropertyGroup Condition="$(Configuration.Contains('Debug'))">
2021
<DebugSymbols>true</DebugSymbols>
2122
<DebugType>full</DebugType>

CADPythonShell/PackageContents.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,25 @@
2626
AppDescription="a module snoop entities of CAD PythonShell"
2727
LoadOnAutoCADStartup="True">
2828
</ComponentEntry>
29+
<ComponentEntry AppName="CADPythonShell"
30+
ModuleName="./Microsoft.Dynamic.dll"
31+
AppDescription="sub module python shell"
32+
LoadOnAutoCADStartup="True">
33+
</ComponentEntry>
34+
<ComponentEntry AppName="CADPythonShell"
35+
ModuleName="./Microsoft.Scripting.dll"
36+
AppDescription="sub module python shell"
37+
LoadOnAutoCADStartup="True">
38+
</ComponentEntry>
39+
<ComponentEntry AppName="CADPythonShell"
40+
ModuleName="./IronPython.dll"
41+
AppDescription="sub module python shell"
42+
LoadOnAutoCADStartup="True">
43+
</ComponentEntry>
44+
<ComponentEntry AppName="CADPythonShell"
45+
ModuleName="./IronPython.Modules.dll"
46+
AppDescription="sub module python shell"
47+
LoadOnAutoCADStartup="True">
48+
</ComponentEntry>
2949
</Components>
3050
</ApplicationPackage>

global.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"sdk": {
3+
"version": "6.*.0",
4+
"rollForward": "latestMajor",
5+
"allowPrerelease": false
6+
}
7+
}

global.json.bak

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"sdk": {
3+
"version": "6.0.0",
4+
"rollForward": "latestMajor",
5+
"allowPrerelease": true
6+
}
7+
}

0 commit comments

Comments
 (0)