Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6
System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64
User : User ( 0)
PHP Version : 7.4.6
Disable Function : NONE
Directory :  C:/Windows/Microsoft.NET/Framework/v3.5/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : C:/Windows/Microsoft.NET/Framework/v3.5/SqlServer.targets
<!--
***********************************************************************************************
SQLServer.targets

WARNING:  DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
          created a backup copy.  Incorrect changes to this file will make it
          impossible to load or build your projects from the command-line or the IDE.

Copyright (C) Microsoft Corporation. All rights reserved.
***********************************************************************************************
-->

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <PropertyGroup>
        <ResolveAssemblyReferencesDependsOn>$(ResolveAssemblyReferencesDependsOn);ResolveSQLCLRReferences</ResolveAssemblyReferencesDependsOn>
        <LoadTimeSensitiveTargets>
            $(LoadTimeSensitiveTargets);
            ResolveSQLCLRReferences;
        </LoadTimeSensitiveTargets>
    </PropertyGroup>

    <!--  Target ResolveSQLCLRReferences
        Resolves SQL CLR assembly references to full paths.
            [IN]
            @(Reference) - The list of references to resolve.
            [OUT]
            @(ReferencePath) - The list of paths that those references resolved to.
        The SearchPaths property is set to find assemblies in the hintpath only
    -->
    <Target
        Name="ResolveSQLCLRReferences"
        Condition="'@(Reference)'!=''"
        DependsOnTargets="$(ResolveSQLCLRReferencesDependsOn)"
        >

        <CreateItem
              Include="@(Reference)"
              AdditionalMetadata="SubType="
              Condition="'%(Reference.SubType)'=='SQLCLR'"
              >

            <Output TaskParameter="Include" ItemName="SqlReference"/>
        </CreateItem>


        <ResolveAssemblyReference
              Assemblies="@(SqlReference)"
              SearchPaths="{HintPathFromItem}"
              >

            <Output TaskParameter="ResolvedFiles" ItemName="ReferencePath"/>
        </ResolveAssemblyReference>
    </Target>

    <!--
    Flavor is the project flavor. For example, Client, Smart Devices, SQL Server, etc.
    -->
    <PropertyGroup>
        <ProjectFlavor>SQL Server</ProjectFlavor>
    </PropertyGroup>

</Project>