Skip to content

Commit f5087c5

Browse files
deps: Bump YesSql.Core and YesSql.Provider.Sqlite
Bumps YesSql.Core from 5.4.7 to 1758646704.0.0 Bumps YesSql.Provider.Sqlite from 5.4.7 to 1758646704.0.0 --- updated-dependencies: - dependency-name: YesSql.Core dependency-version: 1758646704.0.0 dependency-type: direct:production update-type: version-update:semver-major - dependency-name: YesSql.Provider.Sqlite dependency-version: 1758646704.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ae4adfa commit f5087c5

1 file changed

Lines changed: 132 additions & 132 deletions

File tree

Lines changed: 132 additions & 132 deletions
Original file line numberDiff line numberDiff line change
@@ -1,132 +1,132 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFrameworks>net10.0</TargetFrameworks>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
<RootNamespace>SharpCoreDB.Provider.YesSql</RootNamespace>
8-
9-
<!-- NuGet Package Properties -->
10-
<PackageId>SharpCoreDB.Provider.YesSql</PackageId>
11-
<Version>1.4.1</Version>
12-
<Authors>MPCoreDeveloper</Authors>
13-
<Company>SharpCoreDB</Company>
14-
<Product>SharpCoreDB.Provider.YesSql</Product>
15-
<Description>YesSql provider for SharpCoreDB encrypted database engine. Built for .NET 10 with C# 14. Supports Windows, Linux, macOS, Android, iOS, and IoT/embedded devices with platform-specific optimizations.</Description>
16-
<Copyright>Copyright (c) 2026 MPCoreDeveloper</Copyright>
17-
<PackageReleaseNotes>v1.4.1: Inherit metadata improvements from SharpCoreDB v1.4.1 (reopen bug fix, Brotli compression). YesSql provider integration with enterprise features.</PackageReleaseNotes>
18-
<PackageTags>sharpcoredb;yessql;database;orm;net10;csharp14;android;ios;mobile;iot;arm64;x64</PackageTags>
19-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
20-
<PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl>
21-
<RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</RepositoryUrl>
22-
<RepositoryType>git</RepositoryType>
23-
<PackageReadmeFile>NuGet.README.md</PackageReadmeFile>
24-
<PackageIcon>SharpCoreDB.jpg</PackageIcon>
25-
<IncludeSymbols>true</IncludeSymbols>
26-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
27-
28-
<!-- Visual Studio: Enable "Pack" command to create multi-RID package -->
29-
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
30-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
31-
32-
<!-- Platform-specific optimizations -->
33-
<Optimize>true</Optimize>
34-
<PlatformTarget>AnyCPU</PlatformTarget>
35-
<Prefer32Bit>false</Prefer32Bit>
36-
37-
<!-- Multi-targeting: Build for multiple RIDs when packing -->
38-
<RuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
39-
</PropertyGroup>
40-
41-
<ItemGroup>
42-
<!-- YesSql Core for abstractions -->
43-
<PackageReference Include="YesSql.Core" Version="5.4.7" />
44-
45-
<!-- Use Sqlite provider as base (most compatible with SharpCoreDB) -->
46-
<PackageReference Include="YesSql.Provider.Sqlite" Version="5.4.7" />
47-
48-
<!-- DI for OrchardCore integration -->
49-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" Condition="'$(TargetFramework)' == 'net10.0'" />
50-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" Condition="'$(TargetFramework)' == 'net8.0'" />
51-
52-
<!-- SharpCoreDB dependencies -->
53-
<PackageReference Include="SharpCoreDB" Version="1.4.1" Condition="'$(UseSharpCoreDBPackage)' == 'true'" />
54-
<PackageReference Include="SharpCoreDB.Extensions" Version="1.4.1" Condition="'$(UseSharpCoreDBPackage)' == 'true'" />
55-
<PackageReference Include="SharpCoreDB.Data.Provider" Version="1.4.1" Condition="'$(UseSharpCoreDBPackage)' == 'true'" />
56-
</ItemGroup>
57-
58-
<ItemGroup Condition="'$(UseSharpCoreDBPackage)' != 'true'">
59-
<!-- Reference to SharpCoreDB core (for IDatabase) -->
60-
<ProjectReference Include="..\SharpCoreDB.Extensions\SharpCoreDB.Extensions.csproj" />
61-
<ProjectReference Include="..\SharpCoreDB\SharpCoreDB.csproj" />
62-
63-
<!-- Reference to ADO.NET provider -->
64-
<ProjectReference Include="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" />
65-
</ItemGroup>
66-
67-
<ItemGroup>
68-
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.103" />
69-
</ItemGroup>
70-
71-
<ItemGroup>
72-
<None Include="README.md" Pack="true" PackagePath="/" />
73-
<None Include="..\SharpCoreDB\SharpCoreDB.jpg" Pack="true" PackagePath="/" Link="SharpCoreDB.jpg" />
74-
</ItemGroup>
75-
76-
<ItemGroup>
77-
<None Include="NuGet.README.md" Pack="true" PackagePath="/" />
78-
<None Include="SharpCoreDB.jpg" Pack="true" PackagePath="/" />
79-
</ItemGroup>
80-
81-
<!-- Build all RIDs automatically when packing -->
82-
<Target Name="BuildAllRuntimesForPack" BeforeTargets="Pack">
83-
<Message Text="Building platform-specific assemblies for SharpCoreDB.Provider.YesSql NuGet package..." Importance="high" />
84-
85-
<!-- Build dependencies first for each runtime identifier -->
86-
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=win-x64;Configuration=$(Configuration)" />
87-
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=win-x64;Configuration=$(Configuration)" />
88-
89-
<!-- Build for each runtime identifier -->
90-
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=win-x64;Configuration=$(Configuration)" />
91-
92-
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=win-arm64;Configuration=$(Configuration)" />
93-
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=win-arm64;Configuration=$(Configuration)" />
94-
95-
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=win-arm64;Configuration=$(Configuration)" />
96-
97-
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=linux-x64;Configuration=$(Configuration)" />
98-
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=linux-x64;Configuration=$(Configuration)" />
99-
100-
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=linux-x64;Configuration=$(Configuration)" />
101-
102-
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=linux-arm64;Configuration=$(Configuration)" />
103-
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=linux-arm64;Configuration=$(Configuration)" />
104-
105-
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=linux-arm64;Configuration=$(Configuration)" />
106-
107-
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=osx-x64;Configuration=$(Configuration)" />
108-
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=osx-x64;Configuration=$(Configuration)" />
109-
110-
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=osx-x64;Configuration=$(Configuration)" />
111-
112-
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=osx-arm64;Configuration=$(Configuration)" />
113-
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=osx-arm64;Configuration=$(Configuration)" />
114-
115-
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=osx-arm64;Configuration=$(Configuration)" />
116-
</Target>
117-
118-
<!-- Include runtime-specific assemblies in the package -->
119-
<ItemGroup>
120-
<None Include="bin\$(Configuration)\$(TargetFramework)\win-x64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\win-x64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\win-x64\SharpCoreDB.Provider.YesSql.dll')" />
121-
122-
<None Include="bin\$(Configuration)\$(TargetFramework)\win-arm64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\win-arm64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\win-arm64\SharpCoreDB.Provider.YesSql.dll')" />
123-
124-
<None Include="bin\$(Configuration)\$(TargetFramework)\linux-x64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\linux-x64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\linux-x64\SharpCoreDB.Provider.YesSql.dll')" />
125-
126-
<None Include="bin\$(Configuration)\$(TargetFramework)\linux-arm64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\linux-arm64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\linux-arm64\SharpCoreDB.Provider.YesSql.dll')" />
127-
128-
<None Include="bin\$(Configuration)\$(TargetFramework)\osx-x64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\osx-x64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\osx-x64\SharpCoreDB.Provider.YesSql.dll')" />
129-
130-
<None Include="bin\$(Configuration)\$(TargetFramework)\osx-arm64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\osx-arm64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\osx-arm64\SharpCoreDB.Provider.YesSql.dll')" />
131-
</ItemGroup>
132-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net10.0</TargetFrameworks>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<RootNamespace>SharpCoreDB.Provider.YesSql</RootNamespace>
8+
9+
<!-- NuGet Package Properties -->
10+
<PackageId>SharpCoreDB.Provider.YesSql</PackageId>
11+
<Version>1.4.1</Version>
12+
<Authors>MPCoreDeveloper</Authors>
13+
<Company>SharpCoreDB</Company>
14+
<Product>SharpCoreDB.Provider.YesSql</Product>
15+
<Description>YesSql provider for SharpCoreDB encrypted database engine. Built for .NET 10 with C# 14. Supports Windows, Linux, macOS, Android, iOS, and IoT/embedded devices with platform-specific optimizations.</Description>
16+
<Copyright>Copyright (c) 2026 MPCoreDeveloper</Copyright>
17+
<PackageReleaseNotes>v1.4.1: Inherit metadata improvements from SharpCoreDB v1.4.1 (reopen bug fix, Brotli compression). YesSql provider integration with enterprise features.</PackageReleaseNotes>
18+
<PackageTags>sharpcoredb;yessql;database;orm;net10;csharp14;android;ios;mobile;iot;arm64;x64</PackageTags>
19+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
20+
<PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl>
21+
<RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</RepositoryUrl>
22+
<RepositoryType>git</RepositoryType>
23+
<PackageReadmeFile>NuGet.README.md</PackageReadmeFile>
24+
<PackageIcon>SharpCoreDB.jpg</PackageIcon>
25+
<IncludeSymbols>true</IncludeSymbols>
26+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
27+
28+
<!-- Visual Studio: Enable "Pack" command to create multi-RID package -->
29+
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
30+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
31+
32+
<!-- Platform-specific optimizations -->
33+
<Optimize>true</Optimize>
34+
<PlatformTarget>AnyCPU</PlatformTarget>
35+
<Prefer32Bit>false</Prefer32Bit>
36+
37+
<!-- Multi-targeting: Build for multiple RIDs when packing -->
38+
<RuntimeIdentifiers>win-x64;win-arm64;linux-x64;linux-arm64;osx-x64;osx-arm64</RuntimeIdentifiers>
39+
</PropertyGroup>
40+
41+
<ItemGroup>
42+
<!-- YesSql Core for abstractions -->
43+
<PackageReference Include="YesSql.Core" Version="1758646704.0.0" />
44+
45+
<!-- Use Sqlite provider as base (most compatible with SharpCoreDB) -->
46+
<PackageReference Include="YesSql.Provider.Sqlite" Version="1758646704.0.0" />
47+
48+
<!-- DI for OrchardCore integration -->
49+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3" Condition="'$(TargetFramework)' == 'net10.0'" />
50+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" Condition="'$(TargetFramework)' == 'net8.0'" />
51+
52+
<!-- SharpCoreDB dependencies -->
53+
<PackageReference Include="SharpCoreDB" Version="1.4.1" Condition="'$(UseSharpCoreDBPackage)' == 'true'" />
54+
<PackageReference Include="SharpCoreDB.Extensions" Version="1.4.1" Condition="'$(UseSharpCoreDBPackage)' == 'true'" />
55+
<PackageReference Include="SharpCoreDB.Data.Provider" Version="1.4.1" Condition="'$(UseSharpCoreDBPackage)' == 'true'" />
56+
</ItemGroup>
57+
58+
<ItemGroup Condition="'$(UseSharpCoreDBPackage)' != 'true'">
59+
<!-- Reference to SharpCoreDB core (for IDatabase) -->
60+
<ProjectReference Include="..\SharpCoreDB.Extensions\SharpCoreDB.Extensions.csproj" />
61+
<ProjectReference Include="..\SharpCoreDB\SharpCoreDB.csproj" />
62+
63+
<!-- Reference to ADO.NET provider -->
64+
<ProjectReference Include="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" />
65+
</ItemGroup>
66+
67+
<ItemGroup>
68+
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.103" />
69+
</ItemGroup>
70+
71+
<ItemGroup>
72+
<None Include="README.md" Pack="true" PackagePath="/" />
73+
<None Include="..\SharpCoreDB\SharpCoreDB.jpg" Pack="true" PackagePath="/" Link="SharpCoreDB.jpg" />
74+
</ItemGroup>
75+
76+
<ItemGroup>
77+
<None Include="NuGet.README.md" Pack="true" PackagePath="/" />
78+
<None Include="SharpCoreDB.jpg" Pack="true" PackagePath="/" />
79+
</ItemGroup>
80+
81+
<!-- Build all RIDs automatically when packing -->
82+
<Target Name="BuildAllRuntimesForPack" BeforeTargets="Pack">
83+
<Message Text="Building platform-specific assemblies for SharpCoreDB.Provider.YesSql NuGet package..." Importance="high" />
84+
85+
<!-- Build dependencies first for each runtime identifier -->
86+
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=win-x64;Configuration=$(Configuration)" />
87+
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=win-x64;Configuration=$(Configuration)" />
88+
89+
<!-- Build for each runtime identifier -->
90+
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=win-x64;Configuration=$(Configuration)" />
91+
92+
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=win-arm64;Configuration=$(Configuration)" />
93+
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=win-arm64;Configuration=$(Configuration)" />
94+
95+
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=win-arm64;Configuration=$(Configuration)" />
96+
97+
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=linux-x64;Configuration=$(Configuration)" />
98+
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=linux-x64;Configuration=$(Configuration)" />
99+
100+
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=linux-x64;Configuration=$(Configuration)" />
101+
102+
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=linux-arm64;Configuration=$(Configuration)" />
103+
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=linux-arm64;Configuration=$(Configuration)" />
104+
105+
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=linux-arm64;Configuration=$(Configuration)" />
106+
107+
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=osx-x64;Configuration=$(Configuration)" />
108+
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=osx-x64;Configuration=$(Configuration)" />
109+
110+
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=osx-x64;Configuration=$(Configuration)" />
111+
112+
<MSBuild Projects="..\SharpCoreDB\SharpCoreDB.csproj" Targets="Build" Properties="RuntimeIdentifier=osx-arm64;Configuration=$(Configuration)" />
113+
<MSBuild Projects="..\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" Targets="Build" Properties="RuntimeIdentifier=osx-arm64;Configuration=$(Configuration)" />
114+
115+
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Build" Properties="RuntimeIdentifier=osx-arm64;Configuration=$(Configuration)" />
116+
</Target>
117+
118+
<!-- Include runtime-specific assemblies in the package -->
119+
<ItemGroup>
120+
<None Include="bin\$(Configuration)\$(TargetFramework)\win-x64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\win-x64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\win-x64\SharpCoreDB.Provider.YesSql.dll')" />
121+
122+
<None Include="bin\$(Configuration)\$(TargetFramework)\win-arm64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\win-arm64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\win-arm64\SharpCoreDB.Provider.YesSql.dll')" />
123+
124+
<None Include="bin\$(Configuration)\$(TargetFramework)\linux-x64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\linux-x64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\linux-x64\SharpCoreDB.Provider.YesSql.dll')" />
125+
126+
<None Include="bin\$(Configuration)\$(TargetFramework)\linux-arm64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\linux-arm64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\linux-arm64\SharpCoreDB.Provider.YesSql.dll')" />
127+
128+
<None Include="bin\$(Configuration)\$(TargetFramework)\osx-x64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\osx-x64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\osx-x64\SharpCoreDB.Provider.YesSql.dll')" />
129+
130+
<None Include="bin\$(Configuration)\$(TargetFramework)\osx-arm64\SharpCoreDB.Provider.YesSql.dll" Pack="true" PackagePath="runtimes\osx-arm64\lib\$(TargetFramework)\" Condition="Exists('bin\$(Configuration)\$(TargetFramework)\osx-arm64\SharpCoreDB.Provider.YesSql.dll')" />
131+
</ItemGroup>
132+
</Project>

0 commit comments

Comments
 (0)