开发者

Is it possoble to run 'Generate Local Resources Tool' programmatically?

开发者 https://www.devze.com 2023-02-05 23:33 出处:网络
Is it possible to run Visual Studio tool: \'Generate Lo开发者_如何学Pythoncal Resources\' programmatically?From a macro in VS2010 you can do this:

Is it possible to run Visual Studio tool: 'Generate Lo开发者_如何学Pythoncal Resources' programmatically?


From a macro in VS2010 you can do this:

Imports System
Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90
Imports EnvDTE90a
Imports EnvDTE100
Imports System.Diagnostics

Public Module Module1

    Public Sub test()
        DTE.ExecuteCommand("Tools.GenerateLocalResource")
    End Sub


End Module
0

精彩评论

暂无评论...
验证码 换一张
取 消