Add Tizen.CSharp.GBS.targets
[platform/core/dotnet/build-tools.git] / targets / Tizen.CSharp.GBS.targets
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
4   <PropertyGroup>
5     <AdditionalLibPaths>$(CoreFxPath);$(DotnetAssemblyPath)</AdditionalLibPaths>
6   </PropertyGroup>
7
8   <ItemGroup Condition=" '$(CoreFxPath)' != '' ">
9     <CoreFXDir Include="$(CoreFxPath)" Condition="Exists('$(CoreFxPath)')" />
10     <CoreFXAssemblies Include="@(CoreFXDir->'%(FullPath)/*.dll')" Exclude="@(CoreFXDir->'%(FullPath)/mscorlib.dll')" />
11     <ReferencePath Include="@(CoreFXAssemblies->'%(Filename).dll')" />
12   </ItemGroup>
13
14   <ItemGroup Condition=" '$(DotnetAssemblyPath)' != '' ">
15     <DotnetAssemblyDir Include="$(DotnetAssemblyPath)" Condition="Exists('$(DotnetAssemblyPath)')"/>
16     <DotnetAssemblies Include="@(DotnetAssemblyDir->'%(FullPath)/*.dll')"/>
17     <ReferencePath Include="@(DotnetAssemblies->'%(Filename).dll')"/>
18   </ItemGroup>
19
20 </Project>