我在互联网上搜索它,但我不确定该怎么做。我发现我需要在我的 Program.csproj 文件中包含一些代码。
当我打开 Program.csproj 它说
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectView>ShowAllFiles</ProjectView>
</PropertyGroup>
</Project>
这是我需要包含的代码:
<Reference
Include="System, Version=1.0.66.0, Culture=neutral, processorArchitecture=MSIL"
Condition=" '$(Platform)' == 'AnyCPU' ">
<SpecificVersion>False</SpecificVersion>
<HintPath>library\sqlite\x32\System.Data.SQLite.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference
Include="System, Version=1.0.66.0, processorArchitecture=MSIL"
Condition=" '$(Platform)' == 'x64' ">
<SpecificVersion>False</SpecificVersion>
<HintPath>library\sqlite\x64\System.Data.SQLite.DLL</HintPath>
</Reference>
但我不太确定这是否正确,因为我的程序正在从它的根目录中获取所有 dll,而不是从“library\sqlite\” 有人可以帮我正确地做吗?我只是无法正确