Skip to content

Commit 1970e2f

Browse files
CopilotJoeRobich
andcommitted
Update SQLitePCLRaw package IDs for 3.0.2
Co-authored-by: JoeRobich <611219+JoeRobich@users.noreply.github.com>
1 parent 200b31c commit 1970e2f

File tree

6 files changed

+10
-13
lines changed

6 files changed

+10
-13
lines changed

eng/Packages.props

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
<MicrosoftNetCoreAppRuntimePackagesVersion>10.0.1</MicrosoftNetCoreAppRuntimePackagesVersion>
1818
<MicrosoftWindowsDesktopAppRuntimePackagesVersion>10.0.1</MicrosoftWindowsDesktopAppRuntimePackagesVersion>
1919
<_xunitVersion>2.9.2</_xunitVersion>
20-
<SqliteVersion>2.1.6</SqliteVersion>
20+
<SqliteVersion>3.0.2</SqliteVersion>
21+
<SqliteNativeVersion>3.50.3</SqliteNativeVersion>
2122
<!-- HumanizerVersion is referenced from the Text.Analyzers.Package.csproj -->
2223
<HumanizerVersion>2.14.1</HumanizerVersion>
2324
</PropertyGroup>
@@ -227,13 +228,10 @@
227228
<PackageVersion Include="Microsoft.IO.Redist" Version="$(MicrosoftIORedistVersion)" />
228229

229230
<PackageVersion Include="SQLitePCLRaw.core" Version="$(SqliteVersion)" />
230-
<PackageVersion Include="SQLitePCLRaw.bundle_green" Version="$(SqliteVersion)" />
231-
<PackageVersion Include="SQLitePCLRaw.lib.e_sqlite3" Version="$(SqliteVersion)" />
231+
<PackageVersion Include="SQLitePCLRaw.bundle_e_sqlite3" Version="$(SqliteVersion)" />
232+
<PackageVersion Include="SQLitePCLRaw.lib.e_sqlite3" Version="$(SqliteNativeVersion)" />
232233
<PackageVersion Include="SQLitePCLRaw.provider.dynamic_cdecl" Version="$(SqliteVersion)" />
233-
<PackageVersion Include="SQLitePCLRaw.lib.e_sqlite3.linux" Version="$(SqliteVersion)" />
234-
<PackageVersion Include="SQLitePCLRaw.lib.e_sqlite3.osx" Version="$(SqliteVersion)" />
235-
<PackageVersion Include="SQLitePCLRaw.lib.e_sqlite3.v110_xp" Version="$(SqliteVersion)" />
236-
<PackageVersion Include="SQLitePCLRaw.provider.e_sqlite3.net45" Version="$(SqliteVersion)" />
234+
<PackageVersion Include="SQLitePCLRaw.provider.e_sqlite3" Version="$(SqliteVersion)" />
237235

238236
<PackageVersion Include="Humanizer.Core" Version="$(HumanizerVersion)" />
239237
<PackageVersion Include="ICSharpCode.Decompiler" Version="9.1.0.7988" />

src/LanguageServer/Microsoft.CodeAnalysis.LanguageServer/Microsoft.CodeAnalysis.LanguageServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
Ensure we include the sqlite assemblies and their native dependencies in our package to enable persistent storage.
103103
-->
104104
<PackageReference Include="SQLitePCLRaw.core" />
105-
<PackageReference Include="SQLitePCLRaw.bundle_green" />
105+
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" />
106106
<PackageReference Include="SQLitePCLRaw.provider.dynamic_cdecl" />
107107
</ItemGroup>
108108

src/VisualStudio/Setup.ServiceHub/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</Content>
3737
</ItemGroup>
3838
<ItemGroup>
39-
<PackageReference Include="SQLitePCLRaw.bundle_green" />
39+
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" />
4040
<PackageReference Include="SQLitePCLRaw.lib.e_sqlite3" GeneratePathProperty="true" ExcludeAssets="all" PrivateAssets="all" />
4141
</ItemGroup>
4242
</Project>

src/VisualStudio/Setup/Roslyn.VisualStudio.Setup.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@
351351
<PackageReference Include="Microsoft.CodeAnalysis.Elfie" ForceIncludeInVsix="true" PkgDefEntry="BindingRedirect" />
352352
<PackageReference Include="Microsoft.DiaSymReader.PortablePdb" />
353353
<PackageReference Include="SQLitePCLRaw.core" ForceIncludeInVsix="true" PkgDefEntry="CodeBase" />
354-
<PackageReference Include="SQLitePCLRaw.bundle_green" ForceIncludeInVsix="true" PkgDefEntry="CodeBase" />
354+
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" ForceIncludeInVsix="true" PkgDefEntry="CodeBase" />
355355
<PackageReference Include="SQLitePCLRaw.provider.dynamic_cdecl" ForceIncludeInVsix="true" PkgDefEntry="CodeBase" />
356356
<PackageReference Include="SQLitePCLRaw.lib.e_sqlite3" GeneratePathProperty="true" ExcludeAssets="all" PrivateAssets="all" />
357357
<PackageReference Include="Microsoft.VisualStudio.Copilot.Roslyn.SemanticSearch" ForceIncludeInVsix="true" />

src/Workspaces/Core/Portable/Microsoft.CodeAnalysis.Workspaces.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</ItemGroup>
2424
<ItemGroup>
2525
<PackageReference Include="Humanizer.Core" PrivateAssets="compile" />
26-
<PackageReference Include="SQLitePCLRaw.bundle_green" PrivateAssets="all" Condition="'$(DotNetBuildSourceOnly)' != 'true'" />
26+
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" PrivateAssets="all" Condition="'$(DotNetBuildSourceOnly)' != 'true'" />
2727
<PackageReference Include="System.Composition" />
2828
<!-- We only need to reference Microsoft.Bcl.AsyncInterfaces for netstandard2.0 builds; referencing it for regular .NET builds can cause problems
2929
since it's now automatic, and Source Build will ensure we get a proper one automatically if we do nothing; if we reference the older version

src/Workspaces/Remote/ServiceHub.CoreComponents/CoreComponents.Shared.targets

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<ItemGroup>
2929
<!-- These references need to be deployed to the vsix subfolder containing servicehub bits for .Net Core -->
3030
<PackageReference Include="Microsoft.VisualStudio.Telemetry" />
31-
<PackageReference Include="SQLitePCLRaw.bundle_green" />
31+
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" />
3232
<!--
3333
Following packages are being referenced to:
3434
- exclude BCL library from the dependencies we need to deploy as part of Roslyn vsix.
@@ -243,4 +243,3 @@
243243

244244
<Target Name="PublishVsixItems" DependsOnTargets="Publish;PublishedProjectOutputGroup;CompileReadyToRun" Returns="@(_VsixItem)" />
245245
</Project>
246-

0 commit comments

Comments
 (0)