VisualBasicProjectFileManagerPlatform Property
Gets or sets the project's target platform.
Namespace: DevCase.Core.Diagnostics.VisualStudio.SolutionAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public string Platform { get; set; }
Public Property Platform As String
Get
Set
Dim instance As VisualBasicProjectFileManager
Dim value As String
value = instance.Platform
instance.Platform = value
public:
property String^ Platform {
String^ get ();
void set (String^ value);
}
member Platform : string with get, set
No code example is currently available or this language may not be supported.
Property Value
String
The project's target platform.
This is a code example.
No code example is currently available or this language may not be supported.
Dim vbproj As New VisualBasicProjectFileManager("C:\project.vbproj")
vbproj.Platform = "AnyCPU" ' Or "x64" or "x86"
vbproj.Document.Save("C:\modified.vbproj", SaveOptions.None)
Process.Start("notepad.exe", "C:\modified.vbproj")
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.