博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Using SmartAssembly with MSBuild
阅读量:6968 次
发布时间:2019-06-27

本文共 3924 字,大约阅读时间需要 13 分钟。

 
 
 

You can integrate SmartAssembly in your build process. 

You set up your project in SmartAssembly once, and you can then build your assembly in your normal MSBuild process. The settings you chose in the SmartAssembly project are applied without needing to run SmartAssembly separately.

Note that the SmartAssembly task should be the last stage of your build process. Because of the way SmartAssembly changes your assembly, running other tasks after SmartAssembly is not supported. (An exception to this is assembly-signing tools, if you choose not to sign your code with SmartAssembly).

To integrate SmartAssembly directly into the build process, follow these steps:

  1. Create your project in SmartAssembly (see ) and set the project options (see ).
  2. Open your application's .csproj or .vsprojfile in an XML editor.
    The .csproj or .vsproj file is actually a MSBuild XML file that you can edit to add SmartAssembly to the build tasks. For more information about the MSBuild XML schema, see the .
  3. Add references to SmartAssembly to your C# or VB.NET project file, as follows. 

    Note that the <UsingTask> element includes SmartAssembly's major version number. This page has been written for SmartAssembly 6.x. If you are using a different version of SmartAssembly, you will need to change the version number specified in the <UsingTask> element. For example, if you use SmartAssembly 5.5, change the version to Version=5.0.0.0

     

    <
    Project 
    DefaultTargets
    =
    "Build" 
    xmlns
    =
    "
    >
      
    <
    PropertyGroup
    >
        
    ...
      
    </
    PropertyGroup
    >
      
    ...
      
    <
    ItemGroup
    >
        
    ...
      
    </
    ItemGroup
    >
      
    <
    Import 
    Project
    =
    "$(MSBuildToolsPath)\Microsoft.CSharp.targets" 
    />
      
    <
    UsingTask
     
    TaskName
    =
    "SmartAssembly.MSBuild.Tasks.Build"
    AssemblyName="SmartAssembly.MSBuild.Tasks, 
    Version
    =
    6
    .0.0.0,
    Culture
    =
    neutral
    PublicKeyToken
    =
    7f465a1c156d4d57
    " />
      
    <
    Target 
    Name
    =
    "AfterBuild" 
    Condition
    =
    " '$(Configuration)' == 'Release' "
    >
        
    <
    SmartAssembly.MSBuild.Tasks.Build 
    ProjectFile
    =
    "c:\path\to\project.saproj"
    />
      
    </
    Target
    >
    </
    Project
    >

     

     

  4. Edit the following line (near the bottom of the XML which you just added to the project), setting the ProjectFile attribute to the path to your *.saproj file:
    <SmartAssembly.MSBuild.Tasks.Build ProjectFile="c:\path\to\project.saproj"/>
  5. If required, add any of the following optional attributes to the same element:

    OverwriteAssembly

    Set to True if you want to overwrite the original assembly with the obfuscated one.

    If this option is not set, or set to False, SmartAssembly uses the destination file name from the .saproj project.

    If you set this option to True, SmartAssembly ignores the OverwriteAssembly attribute, if set.

    Input

    If this option is set, SmartAssembly will process the assembly specified as this attribute's value.

    If this option is not set, SmartAssembly will process the assembly specified in the .saproj project is used.

    This is useful if you want to build an assembly using exactly the same settings as those you chose for a different assembly.

    Output

    If this option is set, SmartAssembly will use this attribute's value as the file name when saving the built assembly.

    If this option is not set, SmartAssembly will use the file name in the .saproj file when saving the built assembly.

    This attribute is ignored if the OverwriteAssembly property is set to True.

    This option is useful if you want to save a test build to a different path from other builds.

    MarkAsReleased

    (Deprecated)

    This option was used in SmartAssembly 6.2 and earlier to preserve map files (see ).

    SmartAssembly 6.5 stores map files permanently, so this option is ignored.

    A diff showing the added lines in a .csproj file is shown below.

    Build your assembly with MSBuild. SmartAssembly is run automatically, using the settings in your SmartAssembly project file.

    If you use a .mdb file for your SmartAssembly database, ensure that Visual Studio is run as an administrator when running MSBuild.

转载于:https://www.cnblogs.com/leavind/p/6971104.html

你可能感兴趣的文章
linux基础命令介绍七:网络传输与安全
查看>>
Maven踩过的坑
查看>>
nginx 负载均衡搭建
查看>>
执行批量curl请求脚本注意事项
查看>>
大公司是怎么发布静态资源的
查看>>
PHP学习之路--Mac环境的配置
查看>>
sqoop学习总结
查看>>
通过一张简单的图,让你彻底地、永久地搞懂JS的==运算
查看>>
[vue+vuex+vue-router] 强撸一发暗黑风 markdown 日记应用
查看>>
使用 FLOWCONTROLLERS 改进IOS应用架构
查看>>
【猿团专访】| 潜心研究的云视“华山派”,关于技术研发的那些事
查看>>
OAuth2.0认证
查看>>
Atom-JavaScript语法校验
查看>>
React Native 入门
查看>>
使用Volley上传头像图片
查看>>
用tbox实现内存检测
查看>>
用真机做远程调试的两种方式
查看>>
抽象类和方法
查看>>
细节:js 原型对象与for-in 方法枚举的问题
查看>>
性能优化总结
查看>>