xamarin-macios/tests/bindings-framework-test/bindings-framework-test.csproj

89 строки
4.2 KiB
XML
Исходник Обычный вид История

<?xml version="1.0" encoding="utf-8"?>
2016-04-27 00:48:51 +03:00
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{E40B0B77-3467-4891-9117-7AF8F248E306}</ProjectGuid>
<ProjectTypeGuids>{8FFB629D-F513-41CE-95D2-7ECE97B6EEEC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
2016-04-27 00:48:51 +03:00
<OutputType>Library</OutputType>
<RootNamespace>bindingstest</RootNamespace>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AssemblyName>bindings-framework-test</AssemblyName>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\product.snk</AssemblyOriginatorKeyFile>
<TargetFrameworkIdentifier>Xamarin.iOS</TargetFrameworkIdentifier>
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)-unified</IntermediateOutputPath>
<DefineConstants>XAMCORE_2_0</DefineConstants>
2016-04-27 00:48:51 +03:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' Or '$(Configuration)' == 'Debug32' Or '$(Configuration)' == 'Debug64' ">
2016-04-27 00:48:51 +03:00
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Any CPU\$(Configuration)-unified</OutputPath>
<DefineConstants>DEBUG;FRAMEWORK_TEST;;$(DefineConstants)</DefineConstants>
2016-04-27 00:48:51 +03:00
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' Or '$(Configuration)' == 'Release32' Or '$(Configuration)' == 'Release64' Or '$(Configuration)' == 'Release-bitcode' ">
2016-04-27 00:48:51 +03:00
<DebugType>none</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Any CPU\$(Configuration)-unified</OutputPath>
<DefineConstants>DO_NOT_REMOVE;FRAMEWORK_TEST;$(DefineConstants)</DefineConstants>
2016-04-27 00:48:51 +03:00
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Xamarin.iOS" />
2016-04-27 00:48:51 +03:00
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<ItemGroup>
<ObjcBindingApiDefinition Include="ApiDefinition.cs" />
</ItemGroup>
<ItemGroup>
<ObjcBindingCoreSource Include="StructsAndEnums.cs" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.ObjCBinding.CSharp.targets" />
2016-04-27 00:48:51 +03:00
<ItemGroup>
<ObjcBindingNativeFramework Include="..\..\tests\test-libraries\.libs\ios\XTest.framework">
2016-04-27 00:48:51 +03:00
<Link>XTest.framework</Link>
</ObjcBindingNativeFramework>
<ObjcBindingNativeFramework Include="..\..\tests\test-libraries\.libs\ios\XStaticObjectTest.framework">
2016-04-27 00:48:51 +03:00
<Link>XStaticObjectTest.framework</Link>
</ObjcBindingNativeFramework>
<ObjcBindingNativeFramework Include="..\..\tests\test-libraries\.libs\ios\XStaticArTest.framework">
2016-04-27 00:48:51 +03:00
<Link>XStaticArTest.framework</Link>
</ObjcBindingNativeFramework>
</ItemGroup>
<ItemGroup>
<Compile Include="XTest.framework.linkwith.cs">
<DependentUpon>XTest.framework</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="..\..\tests\test-libraries\libframework.m">
2016-04-27 00:48:51 +03:00
<Link>libframework.m</Link>
</None>
<None Include="..\..\tests\test-libraries\libframework.h">
2016-04-27 00:48:51 +03:00
<Link>libframework.h</Link>
</None>
</ItemGroup>
<ItemGroup>
<TestLibrariesInput Include="..\..\tests\test-libraries\libframework.m" />
<TestLibrariesOutput Include="..\..\tests\test-libraries\.libs\ios\XTest.framework" />
<TestLibrariesOutput Include="..\..\tests\test-libraries\.libs\ios\XSharedObjectTest.framework" />
<TestLibrariesOutput Include="..\..\tests\test-libraries\.libs\ios\XSharedARTest.framework" />
</ItemGroup>
<PropertyGroup>
<TestLibrariesDirectory>..\..\tests\test-libraries</TestLibrariesDirectory>
</PropertyGroup>
<Target Name="BeforeBuild" Inputs="@(TestLibrariesInput)" Outputs="@(TestLibrariesOutput)">
<Exec Command="make -j8 -C $(TestLibrariesDirectory)" />
2016-04-27 00:48:51 +03:00
</Target>
</Project>