Add Tizen.CSharp.GBS.targets
authorWonYoung Choi <wy80.choi@samsung.com>
Fri, 2 Sep 2016 04:39:23 +0000 (13:39 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Fri, 2 Sep 2016 04:39:23 +0000 (13:39 +0900)
Change-Id: I41766f6b79cbfb82c72f1e6e280d85b76a52d50f

targets/Tizen.CSharp.GBS.targets [new file with mode: 0644]

diff --git a/targets/Tizen.CSharp.GBS.targets b/targets/Tizen.CSharp.GBS.targets
new file mode 100644 (file)
index 0000000..a1cfada
--- /dev/null
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+
+  <PropertyGroup>
+    <AdditionalLibPaths>$(CoreFxPath);$(DotnetAssemblyPath)</AdditionalLibPaths>
+  </PropertyGroup>
+
+  <ItemGroup Condition=" '$(CoreFxPath)' != '' ">
+    <CoreFXDir Include="$(CoreFxPath)" Condition="Exists('$(CoreFxPath)')" />
+    <CoreFXAssemblies Include="@(CoreFXDir->'%(FullPath)/*.dll')" Exclude="@(CoreFXDir->'%(FullPath)/mscorlib.dll')" />
+    <ReferencePath Include="@(CoreFXAssemblies->'%(Filename).dll')" />
+  </ItemGroup>
+
+  <ItemGroup Condition=" '$(DotnetAssemblyPath)' != '' ">
+    <DotnetAssemblyDir Include="$(DotnetAssemblyPath)" Condition="Exists('$(DotnetAssemblyPath)')"/>
+    <DotnetAssemblies Include="@(DotnetAssemblyDir->'%(FullPath)/*.dll')"/>
+    <ReferencePath Include="@(DotnetAssemblies->'%(Filename).dll')"/>
+  </ItemGroup>
+
+</Project>
\ No newline at end of file