sharpdevelop.build.msil.targets

来自「SharpDevelop2.0.0 c#开发免费工具」· TARGETS 代码 · 共 42 行

TARGETS
42
字号
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <UsingTask TaskName="ICSharpCode.Build.Tasks.ILAsm" AssemblyFile="$(SharpDevelopBinPath)\ICSharpCode.Build.Tasks.dll"/>
    
    <PropertyGroup>
        <MSBuildAllProjects>$(MSBuildAllProjects);$(SharpDevelopBinPath)\SharpDevelop.Build.MSIL.targets</MSBuildAllProjects>
        <DefaultLanguageSourceExtension>.il</DefaultLanguageSourceExtension>
        <Language>ILAsm</Language>
    </PropertyGroup>
    
    <Target
        Name="CoreCompile"
        Inputs="$(MSBuildAllProjects);
                @(Compile);
                @(ManifestResourceWithNoCulture);
                $(ApplicationIcon);
                $(AssemblyOriginatorKeyFile);
                @(ManifestNonResxWithNoCultureOnDisk);
                @(ReferencePath);
                @(CompiledLicenseFile)"
        Outputs="@(DocFileItem);
                 @(IntermediateAssembly);
                 $(NonExistentFile)"
        DependsOnTargets="$(CoreCompileDependsOn)"
    >

        <IlAsm
              DebugType="$(DebugType)"
              EmitDebugInformation="$(DebugSymbols)"
              FileAlignment="$(FileAlignment)"
              KeyContainer="$(KeyContainerName)"
              KeyFile="$(KeyOriginatorFile)"
              Optimize="$(Optimize)"
              OutputAssembly="@(IntermediateAssembly)"
              Resources="@(ManifestResourceWithNoCulture);@(ManifestNonResxWithNoCultureOnDisk);@(CompiledLicenseFile)"
              Sources="@(Compile)"
              TargetType="$(OutputType)"
              />
    </Target>
    
    <Import Project="$(SharpDevelopBinPath)\SharpDevelop.Build.Common.targets" />
</Project>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?