How can we help you today? How can we help you today?
Chris.Allen
This works: prepend file with: import sys sys.path.append(r'C:\Program Files (x86)\IronPython 2.7\Lib') / comments
This works: prepend file with: import sys sys.path.append(r'C:\Program Files (x86)\IronPython 2.7\Lib')
0 votes
Hi- you mean with the python custom generator option? Sure, I think this will work. / comments
Hi- you mean with the python custom generator option? Sure, I think this will work.
0 votes
I see. Sorry about this. This looks like a current limitation of our support-I'll try to find out more. please bear with me... / comments
I see. Sorry about this. This looks like a current limitation of our support-I'll try to find out more. please bear with me...
0 votes
Righto- thanks. So we can narrow this down to assembly resolution which is always the most common problem with the product. Is your SA in debug mode? If not, below is the smartassemlby.exe.config file for setting it in debug mode. This will create smartassembly.log in current directory assuming the process has write permissions. The logfile will tell us exactly where SA is picking up its mscorlib from. If it doesn't match the correct version, we'll need to update the path; if it does, we're looking at some caching problem (SA does cache references sometimes). <?xml version="1.0"?> <configuration> <configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net, Version=1.2.11.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a"/> </configSections> <startup> <supportedRuntime version="v2.0.50727" sku="client"/> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/> </startup> <log4net> <appender name="TraceLogger" type="log4net.Appender.FileAppender"> <file value="SmartAssembly.log" /> <appendToFile value="false" /> <layout type="log4net.Layout.PatternLayout"> <conversionPattern value="%date %-7level %logger: %message%newline%exception" /> </layout> </appender> <root> <level value="TRACE"/> <appender-ref ref="TraceLogger" /> </root> </log4net> </configuration> / comments
Righto- thanks. So we can narrow this down to assembly resolution which is always the most common problem with the product. Is your SA in debug mode? If not, below is the smartassemlby.exe.config f...
0 votes
Can you paste in your full smartassembly project file please- I can test here with a simulation based on your project. I can debug with full source code. / comments
Can you paste in your full smartassembly project file please- I can test here with a simulation based on your project. I can debug with full source code.
0 votes