Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6076341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:35:47+00:00 2026-05-23T10:35:47+00:00

I have some trouble with loading a System.Data.SQLite source solution . The System.Data.SQLite.2010 project

  • 0

I have some trouble with loading a System.Data.SQLite source solution. The System.Data.SQLite.2010 project seems to be empty, it is, indeed, does not contain references to files. However project file contains strings like these:

<Import Project="$(MSBuildProjectDirectory)\System.Data.SQLite.References.targets" />
<Import Project="$(MSBuildProjectDirectory)\System.Data.SQLite.Properties.targets" />
<Import Project="$(MSBuildProjectDirectory)\System.Data.SQLite.Files.targets" />

which, actually, contain references to files. But it’s looks like this Import Project instructions are ignored by my VS. Is there is something I miss to do? Or maybe I need some plugin to install? Solution is builded successfully from VS, I just want to see files so I can navigate more easily on source.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T10:35:47+00:00Added an answer on May 23, 2026 at 10:35 am

    You’re not missing any plugins, nor is VS ignoring the Import directives. The import directives are used when build the project.

    If you build the project, it builds fine and has all the classes that can be found in System.Data.SQLite*.cs.

    I guess one of the reasons why this was done to protect ‘core’ framework files from accidental modification.

    If you would like to see those files in your solution folder –

    1. Open up System.Data.SQLite.Files.targets and System.Data.SQLite.2010.csproj in notepad or your favorite editor
    2. Copy both ItemGroup nodes and paste them in System.Data.SQLite.2010.csproj
    3. Comment out <Import Project="$(MSBuildProjectDirectory)\System.Data.SQLite.Files.targets" /> and save the csproj file.
    4. Open up the solution file again or if already opened, reload the project to see the files.

    Here’s what my csproj looks after above modification:

    <?xml version="1.0" encoding="utf-8"?>
    <!--
     *
     * System.Data.SQLite.2010.csproj -
     *
     * Written by Joe Mistachkin.
     * Released to the public domain, use at your own risk!
     *
    -->
    <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
      <PropertyGroup>
        <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
        <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
        <ProductVersion>10.0.30319</ProductVersion>
        <SchemaVersion>2.0</SchemaVersion>
        <ProjectGuid>{AC139952-261A-4463-B6FA-AEBC25283A66}</ProjectGuid>
        <OutputType>Library</OutputType>
        <AppDesignerFolder>Properties</AppDesignerFolder>
        <RootNamespace>System.Data.SQLite</RootNamespace>
        <AssemblyName>System.Data.SQLite</AssemblyName>
        <OldToolsVersion>3.5</OldToolsVersion>
        <SQLiteNetDir>$(MSBuildProjectDirectory)\..</SQLiteNetDir>
        <ConfigurationYear>2010</ConfigurationYear>
      </PropertyGroup>
      <Import Project="$(SQLiteNetDir)\SQLite.NET.Settings.targets" />
      <PropertyGroup Condition="'$(BinaryOutputPath)' != ''">
        <OutputPath>$(BinaryOutputPath)</OutputPath>
        <DocumentationFile>$(BinaryOutputPath)System.Data.SQLite.xml</DocumentationFile>
      </PropertyGroup>
      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
        <DebugSymbols>true</DebugSymbols>
        <DebugType>full</DebugType>
        <Optimize>false</Optimize>
        <DefineConstants>DEBUG;TRACE</DefineConstants>
        <ErrorReport>prompt</ErrorReport>
      </PropertyGroup>
      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
        <DebugType>pdbonly</DebugType>
        <Optimize>true</Optimize>
        <DefineConstants>TRACE</DefineConstants>
        <ErrorReport>prompt</ErrorReport>
      </PropertyGroup>
      <Import Project="$(MSBuildProjectDirectory)\System.Data.SQLite.References.targets" />
      <Import Project="$(MSBuildProjectDirectory)\System.Data.SQLite.Properties.targets" />
      <!--<Import Project="$(MSBuildProjectDirectory)\System.Data.SQLite.Files.targets" />-->
      <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
      <ItemGroup>
        <Compile Include="AssemblyInfo.cs" />
        <Compile Include="SQLite3.cs" />
        <Compile Include="SQLite3_UTF16.cs" />
        <Compile Include="SQLiteBase.cs" />
        <Compile Include="SQLiteCommand.cs">
          <SubType>Component</SubType>
        </Compile>
        <Compile Include="SQLiteCommandBuilder.cs">
          <SubType>Component</SubType>
        </Compile>
        <Compile Include="SQLiteConnection.cs">
          <SubType>Component</SubType>
        </Compile>
        <Compile Include="SQLiteConnectionPool.cs" />
        <Compile Include="SQLiteConnectionStringBuilder.cs" />
        <Compile Include="SQLiteConvert.cs" />
        <Compile Include="SQLiteDataAdapter.cs">
          <SubType>Component</SubType>
        </Compile>
        <Compile Include="SQLiteDataReader.cs" />
        <Compile Include="SQLiteException.cs" />
        <Compile Include="SQLiteFactory.cs" />
        <Compile Include="SQLiteFunction.cs" />
        <Compile Include="SQLiteFunctionAttribute.cs" />
        <Compile Include="SQLiteKeyReader.cs" />
        <Compile Include="SQLiteMetaDataCollectionNames.cs" />
        <Compile Include="SQLiteParameter.cs" />
        <Compile Include="SQLiteParameterCollection.cs" />
        <Compile Include="SQLiteStatement.cs" />
        <Compile Include="SQLiteTransaction.cs" />
        <Compile Include="SR.Designer.cs">
          <DependentUpon>SR.resx</DependentUpon>
          <AutoGen>True</AutoGen>
          <DesignTime>True</DesignTime>
        </Compile>
        <Compile Include="UnsafeNativeMethods.cs" />
        <EmbeddedResource Include="SR.resx">
          <SubType>Designer</SubType>
          <Generator>ResXFileCodeGenerator</Generator>
          <LastGenOutput>SR.Designer.cs</LastGenOutput>
        </EmbeddedResource>
      </ItemGroup>
        <ItemGroup Condition="'$(IsCompactFramework)' == 'false'">
        <Compile Include="SQLiteEnlistment.cs" />
        <Compile Include="LINQ\SQLiteConnection_Linq.cs">
          <SubType>Component</SubType>
        </Compile>
        <Compile Include="LINQ\SQLiteFactory_Linq.cs">
          <SubType>Code</SubType>
        </Compile>
        <EmbeddedResource Include="SQLiteCommand.bmp" />
        <EmbeddedResource Include="SQLiteConnection.bmp" />
        <EmbeddedResource Include="SQLiteDataAdapter.bmp" />
      </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">
      </Target>
      <Target Name="AfterBuild">
      </Target>
      -->
    </Project>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently working on project with Haskell, and have found myself some trouble. I'm
I'm having some trouble understanding how codeigniters loading works. Well first you have the
I have some trouble with my trac installation (version 11.4). What should I do
I have some trouble with jquery ui-events: In my application, there are some sliders.
I have some trouble achieving adequate real-time performance from my application and wondering if
I'm have some trouble with the fulltext CONTAINS operator. Here's a quick script to
I am mlearning javascript and have some trouble creating an onject via prototype. I
I'm migrating to Nhibernate 2.0 GA but have some trouble with setting cache expirations
Good Morning, i have some Trouble with the Zend Framework and Zend_DB_Select, i want
I am developing a small windows app, but have some trouble deciding whether to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.