mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
This is a massive overhaul that replaces System.Data.SQLite with Mono.Data.Sqlite. This should make it more compatible with Linux and Mac and has no known downsides for Windows.
16 lines
613 B
XML
16 lines
613 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!-- Windows Phone 8 properties -->
|
|
<PropertyGroup>
|
|
<MonoDataSqlitePortableHardware>wp8</MonoDataSqlitePortableHardware>
|
|
</PropertyGroup>
|
|
|
|
<!-- pre-build error checks -->
|
|
<Target Name="ValidateMonoDataSqlitePreRequisites" BeforeTargets="BeforeBuild">
|
|
<Error Condition=" '$(Platform)' != 'ARM' and '$(Platform)' != 'x86' "
|
|
Text="Mono.Data.Sqlite.Portable for Windows Phone 8 can only be used in builds that target x86 or ARM." />
|
|
</Target>
|
|
|
|
</Project>
|