forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.Debug.config
More file actions
23 lines (20 loc) · 974 Bytes
/
App.Debug.config
File metadata and controls
23 lines (20 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8" ?>
<!-- Debug version of App.Config -->
<configuration>
<configSections>
<section name="microsoft.scripting" type="Microsoft.Scripting.Hosting.Configuration.Section, Microsoft.Scripting, Version=1.2.0.0, Culture=neutral, PublicKeyToken=cde11cd8ecc94417" requirePermission="false"/>
</configSections>
<!-- Enable mixed-mode CLRv2 assemblies. -->
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" />
</startup>
<runtime>
<!-- Enable loading assemblies from network shares or downloaded from the internet. -->
<loadFromRemoteSources enabled="true"/>
</runtime>
<microsoft.scripting>
<languages>
<language names="IronPython;Python;py" extensions=".py" displayName="IronPython 3.0" type="IronPython.Runtime.PythonContext, IronPython, Version=3.0.0.0, Culture=neutral, PublicKeyToken=cde11cd8ecc94417"/>
</languages>
</microsoft.scripting>
</configuration>