zoukankan      html  css  js  c++  java
  • 如何把XNA 3.0 CTP的项目文件升级到XNA 3.0正式版

    1.2.3. How to Upgrade Projects from XNA Game Studio 3.0 CTP to XNA Game Studio 3.0

    You will need to manually upgrade projects that were created with XNA Game Studio 3.0 CTP in order to use them with XNA Game Studio. The upgrade wizard for XNA Game Studio upgrades only XNA Game Studio 2.0 projects. To manually upgrade a project created in XNA Game Studio 3.0 CTP, use the following procedure.

    1. Open the <projectname>.csproj file in a text editor, such as Notepad.
    2. Scroll down to the bottom of the .csproj file, and locate the following three <Import.../> elements.

                    <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
                    <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\v3.0\Microsoft.Xna.GameStudio.Common.targets" />
                    <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\v3.0\Microsoft.Xna.GameStudio.NestedContent.targets" />
                  

      Replace these with the following two <Import.../> elements. Note that the first element is the same.

                    <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
                    <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" />
                  
    3. Save the .csproj file.
    4. Open <projectname>.csproj in Visual C# 2008 Express Edition or Visual Studio 2008 to use it with XNA Game Studio 3.0

    分享到: 更多
  • 相关阅读:
    如何理解联合文件系统?
    Docker 学习笔记(一)
    Bzoj 3124: [Sdoi2013]直径 题解
    Bzoj 3131 [Sdoi2013]淘金 题解
    欧拉路(题目)
    硬币问题
    线段树、树状数组
    Splay树、Treap树
    模拟退火
    广搜题目(一本通)
  • 原文地址:https://www.cnblogs.com/redmoon/p/1363131.html
Copyright © 2011-2022 走看看