Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9096957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T23:59:17+00:00 2026-06-16T23:59:17+00:00

Well I want to add support for the PAWN language to Visual Studio 2012.

  • 0

Well I want to add support for the PAWN language to Visual Studio 2012.

But because of the lack of experience and lack of tutorials/add-ins which I can edit it’s really a difficult task.

For now I only want to add the filetypes and compiler, no need for intellisense and for syntax highlighting the C syntax highlighter can be used.

I know there is the OOK Language implementation and Boo Language but those add-ins are for VS2010 and won’t compile for VS2012.

How would I accomplish this?

Is there a language add-in (for VS2012) which I can edit/use as base/ use as example?

My last attempt resulted in a black window / unusable VS2012 IDE.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T23:59:19+00:00Added an answer on June 16, 2026 at 11:59 pm

    The official language extension sample for Visual Studio 2010 was the Iron Python Integration sample.

    You can download it from here: IronPython Integration. There is a related documentation here: Visual Studio IronPython Integration Deep Dive

    Unfortunately this sample was not updated for Visual Studio 2012 to my knowledge. However here are the steps to convert it to Visual Studio 2012.

    1. install the Visual Studio 2012 SDK from here: Microsoft Visual Studio 2012 SDK
    2. download the Iron Python integration sample, extract somewhere on your disk
    3. open IronPython.sln, and accept all upgrade conversions
    4. change the projects’ platform target from AnyCpu to x86
    5. some projects have incorrect (auto hinted) references to Visual Studio 11 assemblies (built against .NET 4.5), so they won’t compile as is. Change them back to Visual Studio 10 assemblies. Example, Microsoft.VisualStudio.ExtensibilityHosting.dll in the IronPython.Console projet needs to point to the equivalent file in C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies.
    6. define the IronPython.Project project as the start up project, and update it’s Debug parameters: the start action needs to start the C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe (VS 2012 shell) external program instead of the C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe (VS 2010 shell) one that was set by default. Command line arguments should be set to /RootSuffix Exp
    7. update all base templates to use VS 2012 directories instead of only VS 2010 ones: search for the IronPython.targets string in all .pyproj file and add the VS 2012 case, like this:

    before:

      <PropertyGroup>
        <!-- Set the IronPythonPath property by proving in different locations where Iron Python could be installed -->
        <!-- Regular LocalAppData -->
        <IronPythonPath Condition=" '$(IronPythonPath)' == '' AND Exists('$(LocalAppData)\Microsoft\VisualStudio\10.0\Extensions\Microsoft\IronPython\1.0\IronPython.targets')">$(LocalAppData)\Microsoft\VisualStudio\10.0\Extensions\Microsoft\IronPython\1.0</IronPythonPath>
        <!-- Experimental LocalAppData -->
        <IronPythonPath Condition=" '$(IronPythonPath)' == '' AND Exists('$(LocalAppData)\Microsoft\VisualStudio\10.0Exp\Extensions\Microsoft\IronPython\1.0\IronPython.targets')">$(LocalAppData)\Microsoft\VisualStudio\10.0Exp\Extensions\Microsoft\IronPython\1.0</IronPythonPath>
          <!-- Integrated Shell -->
        <IronPythonPath Condition=" '$(IronPythonPath)' == '' AND Exists('$(MSBuildExtensionsPath)\Microsoft\IronPython Studio 2010\1.0\IronPython.targets')">$(MSBuildExtensionsPath)\Microsoft\IronPython Studio 2010\1.0</IronPythonPath>
      </PropertyGroup>
    

    after:

      <PropertyGroup>
        <!-- Set the IronPythonPath property by proving in different locations where Iron Python could be installed -->
        <!-- Regular LocalAppData -->
        <IronPythonPath Condition=" '$(IronPythonPath)' == '' AND Exists('$(LocalAppData)\Microsoft\VisualStudio\10.0\Extensions\Microsoft\IronPython\1.0\IronPython.targets')">$(LocalAppData)\Microsoft\VisualStudio\10.0\Extensions\Microsoft\IronPython\1.0</IronPythonPath>
        <!-- Experimental LocalAppData -->
        <IronPythonPath Condition=" '$(IronPythonPath)' == '' AND Exists('$(LocalAppData)\Microsoft\VisualStudio\10.0Exp\Extensions\Microsoft\IronPython\1.0\IronPython.targets')">$(LocalAppData)\Microsoft\VisualStudio\10.0Exp\Extensions\Microsoft\IronPython\1.0</IronPythonPath>
          <!-- Regular LocalAppData VS10212 -->
          <IronPythonPath Condition=" '$(IronPythonPath)' == '' AND Exists('$(LocalAppData)\Microsoft\VisualStudio\11.0\Extensions\Microsoft\IronPython\1.0\IronPython.targets')">$(LocalAppData)\Microsoft\VisualStudio\11.0\Extensions\Microsoft\IronPython\1.0</IronPythonPath>
          <!-- Experimental LocalAppData VS2012-->
          <IronPythonPath Condition=" '$(IronPythonPath)' == '' AND Exists('$(LocalAppData)\Microsoft\VisualStudio\11.0Exp\Extensions\Microsoft\IronPython\1.0\IronPython.targets')">$(LocalAppData)\Microsoft\VisualStudio\11.0Exp\Extensions\Microsoft\IronPython\1.0</IronPythonPath>
          <!-- Integrated Shell -->
        <IronPythonPath Condition=" '$(IronPythonPath)' == '' AND Exists('$(MSBuildExtensionsPath)\Microsoft\IronPython Studio 2010\1.0\IronPython.targets')">$(MSBuildExtensionsPath)\Microsoft\IronPython Studio 2010\1.0</IronPythonPath>
      </PropertyGroup>
    

    That’s it. Compile and run (both can take a while the first time due to registration mysteries).

    Here is the result when starting a new Iron Python project from Visual Studio 2012:
    enter image description here

    and when building:
    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My css3 animated menu is working pretty well. But now i want to add
I want to show a welcome screen as well as some basic tutorials of
I want to add support for searching for local Outlook contacts to my ATL/WTL
I have an app that works well on iOS4. I want to add new
well I want to debug some script with Firebug, (cause I can't see anything
Well I want to render a self closing tag say <img> tag like this
Well this is a simple question i want to filter two elements sorted reverse
Well, i want house image to rotate from -5° to 5° and i wrote
I want to build an x86 msi package as well as an x64 package
I want to be able to read any well-formed RSS/ATOM file. That would mean

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.