나는 다른 곳에서 몇 가지 제안을 발견했지만 그들은 지금까지 나를 위해 일하지 않았다.
나는 이것이 가장 유용하다는 것을 알았다. 나중에이 같은 문제에 직면 해있는 사람들을위한
http://social.msdn.microsoft.com/Forums/en-US/d4fa83dc-eed1-4ead-96a1-78bbd9ba6d3a/vb-express-target-x86-platform?forum=vblanguage
, 여기에 도움입니다. 그것은 :
Express Editions:
The VB and C# Express products do not expose the
Target property inside the development environment.
You will need to carefully modify the project file
using a text or XML editor.
1. Close the project and/or solution
2. Select Open File from the File menu
3. Navigate to the project directory, and highlight
the project file
4. Press the Open button, the project file should open
in the XML editor
5. Locate the first <PropertyGroup> section and add
the following line:
<PlatformTarget>x86</PlatformTarget>
1. Save the project file
2. Reopen the project and/or solution using
Open Project/Solution from the File menu
3. Continue with development, debugging, and testing
Alternatively, if the application is targeted to 64-bit
platforms, you can ensure that the COM controls added to
the application have 64-bit equivalents on the development
and deployment computers.
JohnWein added the following:
Using the above method targets the x86 platform, but it
doesn't show the "Configuration:" and "Platform: " boxes
on the Properties tabs. To get this feature, I made a
template of one of the projects that shows these boxes.
Now I can target a platform and know what platform I
have targeted.
고마워요. 플랫폼 및 플랫폼 대상 필드 모두에서 'x86'을 설정하려고했습니다. 외관상으로는, 급행 버전에는 플래트 홈 표적의 선택을 허용하지 않는 UI가있다. 그러나 프로젝트 파일을 수동으로 편집하여 변경 될 수 있습니다. –