• 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>
  • 相关阅读:
    工厂设计模式
    二分查找(java实现)
    集合
    JS中,根据div数值判断弹出窗口
    用JS,打印正立三角形
    用JS,打印99乘法表
    用JS,求斐波那契数列第n项的值
    用JS 循环做一个表格
    JS中,如何判断一个被转换的数是否是NaN
    用JS写一个简单的程序,算出100中7的倍数的最大值
  • 原文地址:https://www.cnblogs.com/endv/p/4604507.html
Copyright © 2020-2023  润新知