zoukankan      html  css  js  c++  java
  • DevExpress.Build.targets

     1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
     2   <UsingTask TaskName="DevExpress.Build.DXGeneratePriConfigurationFiles" AssemblyFile="DevExpress.Build.v14.2.dll"/>
     3   <PropertyGroup>
     4     <_GenerateProjectPriFileDependsOn>
     5         $(_GenerateProjectPriFileDependsOn);
     6         BeforeGenerateProjectPriFile;
     7         _GeneratePrisForPortableLibraries;
     8         _GetPriFilesFromPayload;
     9         _ComputeInputPriFiles;
    10         _GenerateProjectPriConfigurationFiles;
    11         _CalculateInputsForGenerateProjectPriFileCore;
    12         _GenerateProjectPriFileCore;
    13         _AddFileReadsAndFileWritesForProjectPri;
    14         _CreateProjectPriFileItem;
    15         _ExpandProjectPriFile;
    16         _ExpandPriFiles;
    17         AfterGenerateProjectPriFile
    18     </_GenerateProjectPriFileDependsOn>
    19 </PropertyGroup>
    20   <Target Name="_GenerateProjectPriConfigurationFiles"
    21             Inputs="$(MSBuildProjectFullPath);@(_PriFile);$(AppxPriConfigXmlDefaultSnippetPath)"
    22             Outputs="$(_PriConfigXmlPath);$(_LayoutResfilesPath);$(_ResourcesResfilesPath);$(_PriResfilesPath)"
    23             >
    24 
    25         <ItemGroup>
    26             <_LayoutFile Include="@(PackagingOutputs)" Condition="'%(OutputGroup)' == 'ContentFilesProjectOutputGroup' and '%(ProjectName)' == '$(ProjectName)'" />
    27             <_LayoutFile Include="@(PackagingOutputs)" Condition="'%(OutputGroup)' == 'CustomOutputGroupForPackaging' and '%(ProjectName)' == '$(ProjectName)'" />
    28         </ItemGroup>
    29 
    30         <DXGeneratePriConfigurationFiles
    31             LayoutResfilesPath="$(_LayoutResfilesPath)"
    32             ResourcesResfilesPath="$(_ResourcesResfilesPath)"
    33             PriResfilesPath="$(_PriResfilesPath)"
    34             LayoutFiles="@(_LayoutFile)"
    35             PRIResourceFiles="@(PRIResource)"
    36             PriFiles="@(_PriFile)"
    37             IntermediateExtension="$(AppxIntermediateExtension)"
    38             />
    39 
    40         <CreatePriConfigXmlForFullIndex
    41             PriConfigXmlPath="$(_PriConfigXmlPath)"
    42             LayoutResfilesPath="$(_LayoutResfilesPath)"
    43             ResourcesResfilesPath="$(_ResourcesResfilesPath)"
    44             PriResfilesPath="$(_PriResfilesPath)"
    45             PriInitialPath="$(AppxPriInitialPath)"
    46             DefaultResourceLanguage="$(DefaultResourceLanguage)"
    47             DefaultResourceQualifiers="$(AppxDefaultResourceQualifiers)"
    48             IntermediateExtension="$(AppxIntermediateExtension)"
    49             PriConfigXmlDefaultSnippetPath="$(AppxPriConfigXmlDefaultSnippetPath)"
    50             TargetPlatformIdentifier="$(TargetPlatformIdentifier)"
    51             TargetPlatformVersion="$(TargetPlatformVersion)"
    52             />
    53 
    54         <Message Text="$(MSBuildProjectName) -> $(_PriConfigXmlPath)" />
    55         <Message Text="$(MSBuildProjectName) -> $(_LayoutResfilesPath)" />
    56         <Message Text="$(MSBuildProjectName) -> $(_ResourcesResfilesPath)" />
    57         <Message Text="$(MSBuildProjectName) -> $(_PriResfilesPath)" />
    58 
    59     </Target>
    60 </Project>
  • 相关阅读:
    jenkins配置QQ邮箱自动发送RF测试构建结果通知邮件
    扩展RF,实现失败用例自动再执行
    python-函数-非固定参数
    robot framework 中对于有滚动条的页面中元素的处理
    selenium(python)下定位单个元素的常用方法
    selenium(python)close与quit的区别
    Robot FrameWork UI自动化脚本稳定性与原生关键字
    深copy和浅copy(python)
    尚硅谷MySQL高级_笔记(2018年10月5日22:55:39)
    云知梦css学习笔记(2018年4月1日16:18:17)
  • 原文地址:https://www.cnblogs.com/endv/p/4604507.html
Copyright © 2011-2022 走看看