summaryrefslogtreecommitdiff
path: root/src/binder/binder.targets
diff options
context:
space:
mode:
Diffstat (limited to 'src/binder/binder.targets')
-rw-r--r--src/binder/binder.targets50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/binder/binder.targets b/src/binder/binder.targets
new file mode 100644
index 0000000000..01b35e2315
--- /dev/null
+++ b/src/binder/binder.targets
@@ -0,0 +1,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>