summaryrefslogtreecommitdiff
path: root/src/binder/binder.targets
blob: 01b35e2315833344f0cbd859ca66766bbcfdd6ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="dogfood">
  <PropertyGroup Label="Globals">
    <SccProjectName>SAK</SccProjectName>
    <SccAuxPath>SAK</SccAuxPath>
    <SccLocalPath>SAK</SccLocalPath>
    <SccProvider>SAK</SccProvider>
  </PropertyGroup>
  <!--Leaf project Properties-->
  <PropertyGroup>
    <TargetType>LIBRARY</TargetType>
    <OutputPath>$(ClrLibDest)</OutputPath>
    <ClAdditionalOptions>$(ClAdditionalOptions) -DUNICODE -D_UNICODE </ClAdditionalOptions>
    <LinkAdditionalOptions>$(LinkAdditionalOptions) /VERBOSE</LinkAdditionalOptions>    
    <BinderPath>$(Clrbase)\src\binder</BinderPath>
    <UserIncludes>
      $(UserIncludes);
      $(BinderPath); 
      $(BinderPath)\inc; 
      $(Clrbase)\src\inc; 
      $(Clrbase)\src\vm; 
      $(Clrbase)\src\vm\$(TargetCpu); 
      $(Clrbase)\src\strongname\inc; 
      $(SdkIncPath); 
    </UserIncludes>
  </PropertyGroup>
  <!--Leaf Project Items-->
  <ItemGroup>
    <CppCompile Include="..\Variables.cpp" />
    <CppCompile Include="..\Utils.cpp" />
    <CppCompile Include="..\AssemblyName.cpp" />
    <CppCompile Include="..\PropertyMap.cpp" />
    <CppCompile Include="..\ApplicationContext.cpp" />
    <CppCompile Include="..\Assembly.cpp" />
    <CppCompile Include="..\FailureCache.cpp" />
    <CppCompile Include="..\AssemblyBinder.cpp" />
    <CppCompile Include="..\StringLexer.cpp" />
    <CppCompile Include="..\CLRPrivBinderCoreCLR.cpp" />
    <CppCompile Include="..\BinderInterface.cpp" />
    <CppCompile Include="..\DebugLog.cpp" />
    <CppCompile Include="..\BindingLog.cpp" />
    <CppCompile Include="..\CDebugLog.cpp" />
    <CppCompile Include="..\TextualIdentityParser.cpp" />
    <CppCompile Include="..\AssemblyIdentityCache.cpp" />
    <CppCompile Include="..\CLRPrivBinderAssemblyLoadContext.cpp" Condition="'$(FeatureHostAssemblyResolver)' == 'true'"/>
    <CppCompile Include="..\CoreCLRBinderCommon.cpp"/>
    <CppCompile Include="..\FusionAssemblyName.cpp"/>
    <CppCompile Include="..\FusionHelpers.cpp"/>
  </ItemGroup>
</Project>