Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2013-02-07 19:33:49 +0400
committerMarek Safar <marek.safar@gmail.com>2013-02-07 19:34:23 +0400
commit78318771d52403e6b0588eb04dd8f74afa7f43f8 (patch)
tree348729d49b56c64b5974cb5465a862cb921f734a /mcs/class/Mono.Data.Sqlite
parent425d8ff70911438c1600912e5dfed0a0c7437491 (diff)
Update csproj files
Diffstat (limited to 'mcs/class/Mono.Data.Sqlite')
-rw-r--r--mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_2_0.csproj168
-rw-r--r--mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_0.csproj168
-rw-r--r--mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_5.csproj168
-rw-r--r--mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_2_0.csproj126
-rw-r--r--mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_0.csproj126
-rw-r--r--mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_5.csproj126
6 files changed, 447 insertions, 435 deletions
diff --git a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_2_0.csproj b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_2_0.csproj
index 902ec28721b..de39d2f370b 100644
--- a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_2_0.csproj
+++ b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_2_0.csproj
@@ -5,22 +5,21 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{155AEF28-C81F-405D-9072-9D52780E3E70}</ProjectGuid>
+ <ProjectGuid>{DB78E822-7746-4FAB-8ADB-8A5285EDF6F6}</ProjectGuid>
<OutputType>Library</OutputType>
<NoWarn>1699</NoWarn>
- <OutputPath>./../../class/lib/net_2_0</OutputPath>
- <NoStdLib>true</NoStdLib>
+ <OutputPath>bin\Debug\Mono.Data.Sqlite-net_2_0</OutputPath>
+ <NoStdLib>True</NoStdLib>
+ <NoConfig>True</NoConfig>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace></RootNamespace>
+ <RootNamespace>
+ </RootNamespace>
<AssemblyName>Mono.Data.Sqlite</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
- <!-- Filter out System.Core added by: Microsoft.NETFramework.props -->
- <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<NoWarn>1699</NoWarn>
@@ -28,54 +27,55 @@
<DefineConstants>DEBUG;TRACE;NET_1_1;NET_2_0;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_2_0</AdditionalLibPaths>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<NoWarn>1699</NoWarn>
<Optimize>true</Optimize>
<DefineConstants>NET_1_1;NET_2_0;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_2_0</AdditionalLibPaths>
+ </PropertyGroup>
+ <!-- Set AddAdditionalExplicitAssemblyReferences to false, otherwise if targetting .NET4.0,
+ Microsoft.NETFramework.props will force a dependency on the assembly System.Core. This
+ is a problem to compile the Mono mscorlib.dll -->
+ <PropertyGroup>
+ <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
- <Compile Include="Assembly\AssemblyInfo.cs" />
- <Compile Include="..\..\build\common\Consts.cs" />
- <Compile Include="..\..\build\common\Locale.cs" />
- <Compile Include="..\..\build\common\MonoTODOAttribute.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\MonoPInvokeCallbackAttribute.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLite3.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLite3_UTF16.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteBase.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommandBuilder.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommand.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnection.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteConnection_Linq.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionPool.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionStringBuilder.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConvert.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataAdapter.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataReader.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SqliteDataSourceEnumerator.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteEnlistment.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteException.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFactory.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteFactory_Linq.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunctionAttribute.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunction.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteKeyReader.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteMetaDataCollectionNames.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameterCollection.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameter.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteStatement.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteTransaction.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SR.Designer.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\UnsafeNativeMethods.cs" />
-
- </ItemGroup>
+ <Compile Include="..\..\build\common\Consts.cs" />
+ <Compile Include="..\..\build\common\Locale.cs" />
+ <Compile Include="..\..\build\common\MonoTODOAttribute.cs" />
+ <Compile Include="Assembly\AssemblyInfo.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteConnection_Linq.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteFactory_Linq.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\MonoPInvokeCallbackAttribute.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLite3.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLite3_UTF16.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteBase.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommand.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommandBuilder.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnection.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionPool.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionStringBuilder.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConvert.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataAdapter.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataReader.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SqliteDataSourceEnumerator.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteEnlistment.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteException.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFactory.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunction.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunctionAttribute.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteKeyReader.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteMetaDataCollectionNames.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameter.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameterCollection.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteStatement.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteTransaction.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SR.Designer.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\UnsafeNativeMethods.cs" /> </ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
@@ -84,48 +84,50 @@
</Target>
-->
<PropertyGroup>
- <PreBuildEvent></PreBuildEvent>
+ <PreBuildEvent>
+
+ </PreBuildEvent>
+ <PostBuildEvent>
+ xcopy $(TargetName).* $(ProjectDir)..\lib\net_2_0\ /Y /R /D
+ </PostBuildEvent>
</PropertyGroup>
<ItemGroup>
- <Reference Include="mscorlib.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>mscorlib.dll</HintPath>
- </Reference>
- <Reference Include="System.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.dll</HintPath>
- </Reference>
- <Reference Include="System.Data.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Data.dll</HintPath>
- </Reference>
- <Reference Include="System.Transactions.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Transactions.dll</HintPath>
- </Reference>
- <Reference Include="System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Xml.dll</HintPath>
- </Reference>
-
+ <ProjectReference Include="..\corlib\corlib-net_2_0.csproj">
+ <Project>{537E3E02-B5DA-4E11-A9F9-5A54C99759B9}</Project>
+ <Name>corlib\corlib-net_2_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System\System-net_2_0-2.csproj">
+ <Project>{08A2FAB2-A213-451E-AD93-19B409BF1B5A}</Project>
+ <Name>System\System-net_2_0-2</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Data\System.Data-net_2_0.csproj">
+ <Project>{0997C3B6-4B4C-4195-BBB6-DC61091676A3}</Project>
+ <Name>System.Data\System.Data-net_2_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Transactions\System.Transactions-net_2_0.csproj">
+ <Project>{74F9004B-7AC4-460C-8661-E67E546405CA}</Project>
+ <Name>System.Transactions\System.Transactions-net_2_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.XML\System.Xml-net_2_0-1.csproj">
+ <Project>{A892207C-64E0-4FCA-8541-A3C71099AA13}</Project>
+ <Name>System.XML\System.Xml-net_2_0-1</Name>
+ </ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="resources/SR.resources">
- <LogicalName>SR.resources</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteCommand.bmp">
- <LogicalName>SQLiteCommand.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteConnection.bmp">
- <LogicalName>SQLiteConnection.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
- <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
-
-</Project>
-
+ <ItemGroup>
+ <EmbeddedResource Include="resources/SR.resources">
+ <LogicalName>SR.resources</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteCommand.bmp">
+ <LogicalName>SQLiteCommand.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteConnection.bmp">
+ <LogicalName>SQLiteConnection.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
+ <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
+ </EmbeddedResource>
+ </ItemGroup>
+</Project>
diff --git a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_0.csproj b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_0.csproj
index 8397daab3d4..8cf6b83c4fb 100644
--- a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_0.csproj
+++ b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_0.csproj
@@ -5,22 +5,21 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{155AEF28-C81F-405D-9072-9D52780E3E70}</ProjectGuid>
+ <ProjectGuid>{14B0F3BC-C878-4EF5-8233-8CDC2927C7FE}</ProjectGuid>
<OutputType>Library</OutputType>
<NoWarn>1699</NoWarn>
- <OutputPath>./../../class/lib/net_4_0</OutputPath>
- <NoStdLib>true</NoStdLib>
+ <OutputPath>bin\Debug\Mono.Data.Sqlite-net_4_0</OutputPath>
+ <NoStdLib>True</NoStdLib>
+ <NoConfig>True</NoConfig>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace></RootNamespace>
+ <RootNamespace>
+ </RootNamespace>
<AssemblyName>Mono.Data.Sqlite</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
- <!-- Filter out System.Core added by: Microsoft.NETFramework.props -->
- <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<NoWarn>1699</NoWarn>
@@ -28,54 +27,55 @@
<DefineConstants>DEBUG;TRACE;NET_1_1;NET_2_0;NET_3_0;NET_3_5;NET_4_0;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_4_0</AdditionalLibPaths>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<NoWarn>1699</NoWarn>
<Optimize>true</Optimize>
<DefineConstants>NET_1_1;NET_2_0;NET_3_0;NET_3_5;NET_4_0;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_4_0</AdditionalLibPaths>
+ </PropertyGroup>
+ <!-- Set AddAdditionalExplicitAssemblyReferences to false, otherwise if targetting .NET4.0,
+ Microsoft.NETFramework.props will force a dependency on the assembly System.Core. This
+ is a problem to compile the Mono mscorlib.dll -->
+ <PropertyGroup>
+ <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
- <Compile Include="Assembly\AssemblyInfo.cs" />
- <Compile Include="..\..\build\common\Consts.cs" />
- <Compile Include="..\..\build\common\Locale.cs" />
- <Compile Include="..\..\build\common\MonoTODOAttribute.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\MonoPInvokeCallbackAttribute.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLite3.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLite3_UTF16.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteBase.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommandBuilder.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommand.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnection.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteConnection_Linq.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionPool.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionStringBuilder.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConvert.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataAdapter.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataReader.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SqliteDataSourceEnumerator.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteEnlistment.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteException.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFactory.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteFactory_Linq.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunctionAttribute.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunction.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteKeyReader.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteMetaDataCollectionNames.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameterCollection.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameter.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteStatement.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteTransaction.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SR.Designer.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\UnsafeNativeMethods.cs" />
-
- </ItemGroup>
+ <Compile Include="..\..\build\common\Consts.cs" />
+ <Compile Include="..\..\build\common\Locale.cs" />
+ <Compile Include="..\..\build\common\MonoTODOAttribute.cs" />
+ <Compile Include="Assembly\AssemblyInfo.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteConnection_Linq.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteFactory_Linq.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\MonoPInvokeCallbackAttribute.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLite3.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLite3_UTF16.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteBase.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommand.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommandBuilder.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnection.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionPool.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionStringBuilder.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConvert.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataAdapter.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataReader.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SqliteDataSourceEnumerator.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteEnlistment.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteException.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFactory.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunction.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunctionAttribute.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteKeyReader.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteMetaDataCollectionNames.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameter.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameterCollection.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteStatement.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteTransaction.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SR.Designer.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\UnsafeNativeMethods.cs" /> </ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
@@ -84,48 +84,50 @@
</Target>
-->
<PropertyGroup>
- <PreBuildEvent></PreBuildEvent>
+ <PreBuildEvent>
+
+ </PreBuildEvent>
+ <PostBuildEvent>
+ xcopy $(TargetName).* $(ProjectDir)..\lib\net_4_0\ /Y /R /D
+ </PostBuildEvent>
</PropertyGroup>
<ItemGroup>
- <Reference Include="mscorlib.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>mscorlib.dll</HintPath>
- </Reference>
- <Reference Include="System.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.dll</HintPath>
- </Reference>
- <Reference Include="System.Data.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Data.dll</HintPath>
- </Reference>
- <Reference Include="System.Transactions.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Transactions.dll</HintPath>
- </Reference>
- <Reference Include="System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Xml.dll</HintPath>
- </Reference>
-
+ <ProjectReference Include="..\corlib\corlib-net_4_0.csproj">
+ <Project>{280E1B59-BAAA-4E02-99CA-8070BCB2C72E}</Project>
+ <Name>corlib\corlib-net_4_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System\System-net_4_0-2.csproj">
+ <Project>{C0648621-9C6E-4584-9CF6-70EBB2D60489}</Project>
+ <Name>System\System-net_4_0-2</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Data\System.Data-net_4_0.csproj">
+ <Project>{E49EEDDE-15CB-4200-9E7E-281199089670}</Project>
+ <Name>System.Data\System.Data-net_4_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Transactions\System.Transactions-net_4_0.csproj">
+ <Project>{925BE01F-45EE-4744-9164-34EEBD065800}</Project>
+ <Name>System.Transactions\System.Transactions-net_4_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.XML\System.Xml-net_4_0-1.csproj">
+ <Project>{A1A09F77-428E-4B5F-9C0C-3B07F55909A6}</Project>
+ <Name>System.XML\System.Xml-net_4_0-1</Name>
+ </ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="resources/SR.resources">
- <LogicalName>SR.resources</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteCommand.bmp">
- <LogicalName>SQLiteCommand.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteConnection.bmp">
- <LogicalName>SQLiteConnection.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
- <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
-
-</Project>
-
+ <ItemGroup>
+ <EmbeddedResource Include="resources/SR.resources">
+ <LogicalName>SR.resources</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteCommand.bmp">
+ <LogicalName>SQLiteCommand.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteConnection.bmp">
+ <LogicalName>SQLiteConnection.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
+ <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
+ </EmbeddedResource>
+ </ItemGroup>
+</Project>
diff --git a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_5.csproj b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_5.csproj
index c4313dd73fa..6fb3a7c063a 100644
--- a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_5.csproj
+++ b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-net_4_5.csproj
@@ -5,22 +5,21 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{155AEF28-C81F-405D-9072-9D52780E3E70}</ProjectGuid>
+ <ProjectGuid>{D7E5FBA0-6012-496F-802C-E99E460A5965}</ProjectGuid>
<OutputType>Library</OutputType>
<NoWarn>1699</NoWarn>
- <OutputPath>./../../class/lib/net_4_5</OutputPath>
- <NoStdLib>true</NoStdLib>
+ <OutputPath>bin\Debug\Mono.Data.Sqlite-net_4_5</OutputPath>
+ <NoStdLib>True</NoStdLib>
+ <NoConfig>True</NoConfig>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace></RootNamespace>
+ <RootNamespace>
+ </RootNamespace>
<AssemblyName>Mono.Data.Sqlite</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
- <!-- Filter out System.Core added by: Microsoft.NETFramework.props -->
- <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<NoWarn>1699</NoWarn>
@@ -28,54 +27,55 @@
<DefineConstants>DEBUG;TRACE;NET_1_1;NET_2_0;NET_3_0;NET_3_5;NET_4_0;NET_4_5;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_4_5</AdditionalLibPaths>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<NoWarn>1699</NoWarn>
<Optimize>true</Optimize>
<DefineConstants>NET_1_1;NET_2_0;NET_3_0;NET_3_5;NET_4_0;NET_4_5;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_4_5</AdditionalLibPaths>
+ </PropertyGroup>
+ <!-- Set AddAdditionalExplicitAssemblyReferences to false, otherwise if targetting .NET4.0,
+ Microsoft.NETFramework.props will force a dependency on the assembly System.Core. This
+ is a problem to compile the Mono mscorlib.dll -->
+ <PropertyGroup>
+ <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
- <Compile Include="Assembly\AssemblyInfo.cs" />
- <Compile Include="..\..\build\common\Consts.cs" />
- <Compile Include="..\..\build\common\Locale.cs" />
- <Compile Include="..\..\build\common\MonoTODOAttribute.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\MonoPInvokeCallbackAttribute.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLite3.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLite3_UTF16.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteBase.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommandBuilder.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommand.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnection.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteConnection_Linq.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionPool.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionStringBuilder.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConvert.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataAdapter.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataReader.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SqliteDataSourceEnumerator.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteEnlistment.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteException.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFactory.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteFactory_Linq.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunctionAttribute.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunction.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteKeyReader.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteMetaDataCollectionNames.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameterCollection.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameter.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteStatement.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SQLiteTransaction.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\SR.Designer.cs" />
- <Compile Include="Mono.Data.Sqlite_2.0\UnsafeNativeMethods.cs" />
-
- </ItemGroup>
+ <Compile Include="..\..\build\common\Consts.cs" />
+ <Compile Include="..\..\build\common\Locale.cs" />
+ <Compile Include="..\..\build\common\MonoTODOAttribute.cs" />
+ <Compile Include="Assembly\AssemblyInfo.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteConnection_Linq.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\LINQ\SQLiteFactory_Linq.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\MonoPInvokeCallbackAttribute.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLite3.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLite3_UTF16.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteBase.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommand.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteCommandBuilder.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnection.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionPool.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConnectionStringBuilder.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteConvert.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataAdapter.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteDataReader.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SqliteDataSourceEnumerator.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteEnlistment.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteException.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFactory.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunction.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteFunctionAttribute.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteKeyReader.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteMetaDataCollectionNames.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameter.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteParameterCollection.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteStatement.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SQLiteTransaction.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\SR.Designer.cs" />
+ <Compile Include="Mono.Data.Sqlite_2.0\UnsafeNativeMethods.cs" /> </ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
@@ -84,48 +84,50 @@
</Target>
-->
<PropertyGroup>
- <PreBuildEvent></PreBuildEvent>
+ <PreBuildEvent>
+
+ </PreBuildEvent>
+ <PostBuildEvent>
+ xcopy $(TargetName).* $(ProjectDir)..\lib\net_4_5\ /Y /R /D
+ </PostBuildEvent>
</PropertyGroup>
<ItemGroup>
- <Reference Include="mscorlib.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>mscorlib.dll</HintPath>
- </Reference>
- <Reference Include="System.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.dll</HintPath>
- </Reference>
- <Reference Include="System.Data.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Data.dll</HintPath>
- </Reference>
- <Reference Include="System.Transactions.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Transactions.dll</HintPath>
- </Reference>
- <Reference Include="System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Xml.dll</HintPath>
- </Reference>
-
+ <ProjectReference Include="..\corlib\corlib-net_4_5.csproj">
+ <Project>{B8D763CB-5541-4DA8-832F-3B6B486B2746}</Project>
+ <Name>corlib\corlib-net_4_5</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System\System-net_4_5-2.csproj">
+ <Project>{17388044-BE4B-4CBE-92D8-5C130414AD84}</Project>
+ <Name>System\System-net_4_5-2</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Data\System.Data-net_4_5.csproj">
+ <Project>{AE8FAE27-D070-4533-A135-49EEF160779D}</Project>
+ <Name>System.Data\System.Data-net_4_5</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Transactions\System.Transactions-net_4_5.csproj">
+ <Project>{399C73A2-61A1-4141-A66F-5D52014BAA92}</Project>
+ <Name>System.Transactions\System.Transactions-net_4_5</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.XML\System.Xml-net_4_5-1.csproj">
+ <Project>{AB0D8551-2D53-46F2-A340-789E7B62BF57}</Project>
+ <Name>System.XML\System.Xml-net_4_5-1</Name>
+ </ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="resources/SR.resources">
- <LogicalName>SR.resources</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteCommand.bmp">
- <LogicalName>SQLiteCommand.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteConnection.bmp">
- <LogicalName>SQLiteConnection.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
- <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
-
-</Project>
-
+ <ItemGroup>
+ <EmbeddedResource Include="resources/SR.resources">
+ <LogicalName>SR.resources</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteCommand.bmp">
+ <LogicalName>SQLiteCommand.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteConnection.bmp">
+ <LogicalName>SQLiteConnection.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
+ <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
+ </EmbeddedResource>
+ </ItemGroup>
+</Project>
diff --git a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_2_0.csproj b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_2_0.csproj
index 905fa650d0c..e786953cde8 100644
--- a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_2_0.csproj
+++ b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_2_0.csproj
@@ -5,22 +5,21 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{155AEF28-C81F-405D-9072-9D52780E3E70}</ProjectGuid>
+ <ProjectGuid>{B00AA484-1E60-40E8-8F1F-E9FEE74116C5}</ProjectGuid>
<OutputType>Library</OutputType>
<NoWarn>1699,618</NoWarn>
- <OutputPath>.\</OutputPath>
- <NoStdLib>true</NoStdLib>
+ <OutputPath>bin\Debug\Mono.Data.Sqlite-tests-net_2_0</OutputPath>
+ <NoStdLib>True</NoStdLib>
+ <NoConfig>False</NoConfig>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace></RootNamespace>
+ <RootNamespace>
+ </RootNamespace>
<AssemblyName>Mono.Data.Sqlite_test_net_2_0</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
- <!-- Filter out System.Core added by: Microsoft.NETFramework.props -->
- <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<NoWarn>1699,618</NoWarn>
@@ -28,28 +27,29 @@
<DefineConstants>DEBUG;TRACE;NET_1_1;NET_2_0;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_2_0</AdditionalLibPaths>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<NoWarn>1699,618</NoWarn>
<Optimize>true</Optimize>
<DefineConstants>NET_1_1;NET_2_0;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_2_0</AdditionalLibPaths>
+ </PropertyGroup>
+ <!-- Set AddAdditionalExplicitAssemblyReferences to false, otherwise if targetting .NET4.0,
+ Microsoft.NETFramework.props will force a dependency on the assembly System.Core. This
+ is a problem to compile the Mono mscorlib.dll -->
+ <PropertyGroup>
+ <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
- <Compile Include="Test\SqliteCommandUnitTests.cs" />
- <Compile Include="Test\SqliteConnectionTest.cs" />
- <Compile Include="Test\SqliteDataAdapterUnitTests.cs" />
- <Compile Include="Test\SqliteDataReaderTest.cs" />
- <Compile Include="Test\SqliteExceptionUnitTests.cs" />
- <Compile Include="Test\SqliteParameterUnitTests.cs" />
-
- </ItemGroup>
+ <Compile Include="Test\SqliteCommandUnitTests.cs" />
+ <Compile Include="Test\SqliteConnectionTest.cs" />
+ <Compile Include="Test\SqliteDataAdapterUnitTests.cs" />
+ <Compile Include="Test\SqliteDataReaderTest.cs" />
+ <Compile Include="Test\SqliteExceptionUnitTests.cs" />
+ <Compile Include="Test\SqliteParameterUnitTests.cs" /> </ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
@@ -58,53 +58,55 @@
</Target>
-->
<PropertyGroup>
- <PreBuildEvent></PreBuildEvent>
+ <PreBuildEvent>
+
+ </PreBuildEvent>
+ <PostBuildEvent>
+ xcopy $(TargetName).* $(ProjectDir)..\lib\net_2_0\ /Y /R /D
+ </PostBuildEvent>
</PropertyGroup>
<ItemGroup>
- <Reference Include="mscorlib.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>mscorlib.dll</HintPath>
- </Reference>
- <Reference Include="./../../class/lib/net_2_0/Mono.Data.Sqlite.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../class/lib/net_2_0/Mono.Data.Sqlite.dll</HintPath>
- </Reference>
- <Reference Include="System.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.dll</HintPath>
- </Reference>
- <Reference Include="System.Data.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Data.dll</HintPath>
- </Reference>
- <Reference Include="System.Transactions.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Transactions.dll</HintPath>
- </Reference>
- <Reference Include="System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Xml.dll</HintPath>
- </Reference>
- <Reference Include="nunit.framework" />
-
+ <Reference Include="..\lib\net_2_0\nunit.framework.dll" />
+ <ProjectReference Include="..\corlib\corlib-net_2_0.csproj">
+ <Project>{537E3E02-B5DA-4E11-A9F9-5A54C99759B9}</Project>
+ <Name>corlib\corlib-net_2_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\Mono.Data.Sqlite\Mono.Data.Sqlite-net_2_0.csproj">
+ <Project>{DB78E822-7746-4FAB-8ADB-8A5285EDF6F6}</Project>
+ <Name>Mono.Data.Sqlite\Mono.Data.Sqlite-net_2_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System\System-net_2_0-2.csproj">
+ <Project>{08A2FAB2-A213-451E-AD93-19B409BF1B5A}</Project>
+ <Name>System\System-net_2_0-2</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Data\System.Data-net_2_0.csproj">
+ <Project>{0997C3B6-4B4C-4195-BBB6-DC61091676A3}</Project>
+ <Name>System.Data\System.Data-net_2_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Transactions\System.Transactions-net_2_0.csproj">
+ <Project>{74F9004B-7AC4-460C-8661-E67E546405CA}</Project>
+ <Name>System.Transactions\System.Transactions-net_2_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.XML\System.Xml-net_2_0-1.csproj">
+ <Project>{A892207C-64E0-4FCA-8541-A3C71099AA13}</Project>
+ <Name>System.XML\System.Xml-net_2_0-1</Name>
+ </ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="resources/SR.resources">
- <LogicalName>SR.resources</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteCommand.bmp">
- <LogicalName>SQLiteCommand.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteConnection.bmp">
- <LogicalName>SQLiteConnection.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
- <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
-
-</Project>
-
+ <ItemGroup>
+ <EmbeddedResource Include="resources/SR.resources">
+ <LogicalName>SR.resources</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteCommand.bmp">
+ <LogicalName>SQLiteCommand.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteConnection.bmp">
+ <LogicalName>SQLiteConnection.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
+ <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
+ </EmbeddedResource>
+ </ItemGroup>
+</Project>
diff --git a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_0.csproj b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_0.csproj
index d93deb67e76..fc8d0f5eec7 100644
--- a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_0.csproj
+++ b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_0.csproj
@@ -5,22 +5,21 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{155AEF28-C81F-405D-9072-9D52780E3E70}</ProjectGuid>
+ <ProjectGuid>{48176A1D-5946-4AAF-91E5-2E2942FD2233}</ProjectGuid>
<OutputType>Library</OutputType>
<NoWarn>1699,618</NoWarn>
- <OutputPath>.\</OutputPath>
- <NoStdLib>true</NoStdLib>
+ <OutputPath>bin\Debug\Mono.Data.Sqlite-tests-net_4_0</OutputPath>
+ <NoStdLib>True</NoStdLib>
+ <NoConfig>False</NoConfig>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace></RootNamespace>
+ <RootNamespace>
+ </RootNamespace>
<AssemblyName>Mono.Data.Sqlite_test_net_4_0</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
- <!-- Filter out System.Core added by: Microsoft.NETFramework.props -->
- <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<NoWarn>1699,618</NoWarn>
@@ -28,28 +27,29 @@
<DefineConstants>DEBUG;TRACE;NET_1_1;NET_2_0;NET_3_0;NET_3_5;NET_4_0;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_4_0</AdditionalLibPaths>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<NoWarn>1699,618</NoWarn>
<Optimize>true</Optimize>
<DefineConstants>NET_1_1;NET_2_0;NET_3_0;NET_3_5;NET_4_0;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_4_0</AdditionalLibPaths>
+ </PropertyGroup>
+ <!-- Set AddAdditionalExplicitAssemblyReferences to false, otherwise if targetting .NET4.0,
+ Microsoft.NETFramework.props will force a dependency on the assembly System.Core. This
+ is a problem to compile the Mono mscorlib.dll -->
+ <PropertyGroup>
+ <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
- <Compile Include="Test\SqliteCommandUnitTests.cs" />
- <Compile Include="Test\SqliteConnectionTest.cs" />
- <Compile Include="Test\SqliteDataAdapterUnitTests.cs" />
- <Compile Include="Test\SqliteDataReaderTest.cs" />
- <Compile Include="Test\SqliteExceptionUnitTests.cs" />
- <Compile Include="Test\SqliteParameterUnitTests.cs" />
-
- </ItemGroup>
+ <Compile Include="Test\SqliteCommandUnitTests.cs" />
+ <Compile Include="Test\SqliteConnectionTest.cs" />
+ <Compile Include="Test\SqliteDataAdapterUnitTests.cs" />
+ <Compile Include="Test\SqliteDataReaderTest.cs" />
+ <Compile Include="Test\SqliteExceptionUnitTests.cs" />
+ <Compile Include="Test\SqliteParameterUnitTests.cs" /> </ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
@@ -58,53 +58,55 @@
</Target>
-->
<PropertyGroup>
- <PreBuildEvent></PreBuildEvent>
+ <PreBuildEvent>
+
+ </PreBuildEvent>
+ <PostBuildEvent>
+ xcopy $(TargetName).* $(ProjectDir)..\lib\net_4_0\ /Y /R /D
+ </PostBuildEvent>
</PropertyGroup>
<ItemGroup>
- <Reference Include="mscorlib.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>mscorlib.dll</HintPath>
- </Reference>
- <Reference Include="./../../class/lib/net_4_0/Mono.Data.Sqlite.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../class/lib/net_4_0/Mono.Data.Sqlite.dll</HintPath>
- </Reference>
- <Reference Include="System.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.dll</HintPath>
- </Reference>
- <Reference Include="System.Data.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Data.dll</HintPath>
- </Reference>
- <Reference Include="System.Transactions.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Transactions.dll</HintPath>
- </Reference>
- <Reference Include="System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Xml.dll</HintPath>
- </Reference>
- <Reference Include="nunit.framework" />
-
+ <Reference Include="..\lib\net_4_0\nunit.framework.dll" />
+ <ProjectReference Include="..\corlib\corlib-net_4_0.csproj">
+ <Project>{280E1B59-BAAA-4E02-99CA-8070BCB2C72E}</Project>
+ <Name>corlib\corlib-net_4_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\Mono.Data.Sqlite\Mono.Data.Sqlite-net_4_0.csproj">
+ <Project>{14B0F3BC-C878-4EF5-8233-8CDC2927C7FE}</Project>
+ <Name>Mono.Data.Sqlite\Mono.Data.Sqlite-net_4_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System\System-net_4_0-2.csproj">
+ <Project>{C0648621-9C6E-4584-9CF6-70EBB2D60489}</Project>
+ <Name>System\System-net_4_0-2</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Data\System.Data-net_4_0.csproj">
+ <Project>{E49EEDDE-15CB-4200-9E7E-281199089670}</Project>
+ <Name>System.Data\System.Data-net_4_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Transactions\System.Transactions-net_4_0.csproj">
+ <Project>{925BE01F-45EE-4744-9164-34EEBD065800}</Project>
+ <Name>System.Transactions\System.Transactions-net_4_0</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.XML\System.Xml-net_4_0-1.csproj">
+ <Project>{A1A09F77-428E-4B5F-9C0C-3B07F55909A6}</Project>
+ <Name>System.XML\System.Xml-net_4_0-1</Name>
+ </ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="resources/SR.resources">
- <LogicalName>SR.resources</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteCommand.bmp">
- <LogicalName>SQLiteCommand.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteConnection.bmp">
- <LogicalName>SQLiteConnection.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
- <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
-
-</Project>
-
+ <ItemGroup>
+ <EmbeddedResource Include="resources/SR.resources">
+ <LogicalName>SR.resources</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteCommand.bmp">
+ <LogicalName>SQLiteCommand.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteConnection.bmp">
+ <LogicalName>SQLiteConnection.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
+ <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
+ </EmbeddedResource>
+ </ItemGroup>
+</Project>
diff --git a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_5.csproj b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_5.csproj
index aa3f1e5c87d..adbdf5c5296 100644
--- a/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_5.csproj
+++ b/mcs/class/Mono.Data.Sqlite/Mono.Data.Sqlite-tests-net_4_5.csproj
@@ -5,22 +5,21 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{155AEF28-C81F-405D-9072-9D52780E3E70}</ProjectGuid>
+ <ProjectGuid>{0279F927-8B1C-4666-94D0-15606F53A147}</ProjectGuid>
<OutputType>Library</OutputType>
<NoWarn>1699,618</NoWarn>
- <OutputPath>.\</OutputPath>
- <NoStdLib>true</NoStdLib>
+ <OutputPath>bin\Debug\Mono.Data.Sqlite-tests-net_4_5</OutputPath>
+ <NoStdLib>True</NoStdLib>
+ <NoConfig>False</NoConfig>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace></RootNamespace>
+ <RootNamespace>
+ </RootNamespace>
<AssemblyName>Mono.Data.Sqlite_test_net_4_5</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
- <!-- Filter out System.Core added by: Microsoft.NETFramework.props -->
- <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<NoWarn>1699,618</NoWarn>
@@ -28,28 +27,29 @@
<DefineConstants>DEBUG;TRACE;NET_1_1;NET_2_0;NET_3_0;NET_3_5;NET_4_0;NET_4_5;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_4_5</AdditionalLibPaths>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<NoWarn>1699,618</NoWarn>
<Optimize>true</Optimize>
<DefineConstants>NET_1_1;NET_2_0;NET_3_0;NET_3_5;NET_4_0;NET_4_5;SQLITE_STANDARD</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <AdditionalLibPaths>./../../class/lib/net_4_5</AdditionalLibPaths>
+ </PropertyGroup>
+ <!-- Set AddAdditionalExplicitAssemblyReferences to false, otherwise if targetting .NET4.0,
+ Microsoft.NETFramework.props will force a dependency on the assembly System.Core. This
+ is a problem to compile the Mono mscorlib.dll -->
+ <PropertyGroup>
+ <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<ItemGroup>
- <Compile Include="Test\SqliteCommandUnitTests.cs" />
- <Compile Include="Test\SqliteConnectionTest.cs" />
- <Compile Include="Test\SqliteDataAdapterUnitTests.cs" />
- <Compile Include="Test\SqliteDataReaderTest.cs" />
- <Compile Include="Test\SqliteExceptionUnitTests.cs" />
- <Compile Include="Test\SqliteParameterUnitTests.cs" />
-
- </ItemGroup>
+ <Compile Include="Test\SqliteCommandUnitTests.cs" />
+ <Compile Include="Test\SqliteConnectionTest.cs" />
+ <Compile Include="Test\SqliteDataAdapterUnitTests.cs" />
+ <Compile Include="Test\SqliteDataReaderTest.cs" />
+ <Compile Include="Test\SqliteExceptionUnitTests.cs" />
+ <Compile Include="Test\SqliteParameterUnitTests.cs" /> </ItemGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
@@ -58,53 +58,55 @@
</Target>
-->
<PropertyGroup>
- <PreBuildEvent></PreBuildEvent>
+ <PreBuildEvent>
+
+ </PreBuildEvent>
+ <PostBuildEvent>
+ xcopy $(TargetName).* $(ProjectDir)..\lib\net_4_5\ /Y /R /D
+ </PostBuildEvent>
</PropertyGroup>
<ItemGroup>
- <Reference Include="mscorlib.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>mscorlib.dll</HintPath>
- </Reference>
- <Reference Include="./../../class/lib/net_4_5/Mono.Data.Sqlite.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>./../../class/lib/net_4_5/Mono.Data.Sqlite.dll</HintPath>
- </Reference>
- <Reference Include="System.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.dll</HintPath>
- </Reference>
- <Reference Include="System.Data.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Data.dll</HintPath>
- </Reference>
- <Reference Include="System.Transactions.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Transactions.dll</HintPath>
- </Reference>
- <Reference Include="System.Xml.dll">
- <SpecificVersion>False</SpecificVersion>
- <HintPath>System.Xml.dll</HintPath>
- </Reference>
- <Reference Include="nunit.framework" />
-
+ <Reference Include="..\lib\net_4_5\nunit.framework.dll" />
+ <ProjectReference Include="..\corlib\corlib-net_4_5.csproj">
+ <Project>{B8D763CB-5541-4DA8-832F-3B6B486B2746}</Project>
+ <Name>corlib\corlib-net_4_5</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\Mono.Data.Sqlite\Mono.Data.Sqlite-net_4_5.csproj">
+ <Project>{D7E5FBA0-6012-496F-802C-E99E460A5965}</Project>
+ <Name>Mono.Data.Sqlite\Mono.Data.Sqlite-net_4_5</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System\System-net_4_5-2.csproj">
+ <Project>{17388044-BE4B-4CBE-92D8-5C130414AD84}</Project>
+ <Name>System\System-net_4_5-2</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Data\System.Data-net_4_5.csproj">
+ <Project>{AE8FAE27-D070-4533-A135-49EEF160779D}</Project>
+ <Name>System.Data\System.Data-net_4_5</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.Transactions\System.Transactions-net_4_5.csproj">
+ <Project>{399C73A2-61A1-4141-A66F-5D52014BAA92}</Project>
+ <Name>System.Transactions\System.Transactions-net_4_5</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\System.XML\System.Xml-net_4_5-1.csproj">
+ <Project>{AB0D8551-2D53-46F2-A340-789E7B62BF57}</Project>
+ <Name>System.XML\System.Xml-net_4_5-1</Name>
+ </ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="resources/SR.resources">
- <LogicalName>SR.resources</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteCommand.bmp">
- <LogicalName>SQLiteCommand.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteConnection.bmp">
- <LogicalName>SQLiteConnection.bmp</LogicalName>
- </EmbeddedResource>
- <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
- <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
- </EmbeddedResource>
- </ItemGroup>
-
-</Project>
-
+ <ItemGroup>
+ <EmbeddedResource Include="resources/SR.resources">
+ <LogicalName>SR.resources</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteCommand.bmp">
+ <LogicalName>SQLiteCommand.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteConnection.bmp">
+ <LogicalName>SQLiteConnection.bmp</LogicalName>
+ </EmbeddedResource>
+ <EmbeddedResource Include="resources/SQLiteDataAdapter.bmp">
+ <LogicalName>SQLiteDataAdapter.bmp</LogicalName>
+ </EmbeddedResource>
+ </ItemGroup>
+</Project>