zoukankan      html  css  js  c++  java
  • Using SmartAssembly with MSBuild

     
    Skip to end of metadata
     
    Go to start of metadata
     

    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 Working with projects) and set the project options (see Working with project settings).
    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 MSBuild documentation on MSDN.
    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="http://schemas.microsoft.com/developer/msbuild/2003">
        <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=neutralPublicKeyToken=7f465a1c156d4d57" />
        <Target Name="AfterBuild" Condition=" '$(Configuration)' == 'Release' ">
          <SmartAssembly.MSBuild.Tasks.Build ProjectFile="c:path oproject.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 oproject.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 About map files).

      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.

  • 相关阅读:
    const char * 和 std::string.c_str()是个危险的东西!
    原先360商店有msnlite这个软件,后来估计因为被小米收购的原因下架了
    C++ Notes: Table of Contents
    强烈推荐:C++ manpages C++函数查询文档_Dasm_百度空间
    爱上MVC3~实体级标准验证
    Js+MVC~公用API的设计,返回jsonp后使ajax的error属性生效!
    爱上MVC3系列~PartialView()与View()真的一样吗?
    Js~对Boxy弹出框进行封装,提供弹出后自动隐藏与自动跳转功能
    爱上MVC3系列~手动向路由表扔数据,不影响当前URL路由配对
    c# webservice生成客户端及使用时碰到decimal类型时的特殊处理
  • 原文地址:https://www.cnblogs.com/leavind/p/6971104.html
Copyright © 2011-2022 走看看