|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>net10.0</TargetFramework> |
5 | | - <LangVersion>14.0</LangVersion> |
6 | | - <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <Nullable>enable</Nullable> |
8 | | - <IsTestProject>true</IsTestProject> |
9 | | - |
10 | | - <!-- Test Configuration --> |
11 | | - <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
12 | | - <GenerateDocumentationFile>false</GenerateDocumentationFile> |
13 | | - |
14 | | - <!-- Test project, not a NuGet package --> |
15 | | - <IsPackable>false</IsPackable> |
16 | | - </PropertyGroup> |
17 | | - |
18 | | - <ItemGroup> |
19 | | - <!-- Testing frameworks --> |
20 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" /> |
21 | | - <PackageReference Include="xunit.v3" Version="3.2.2" /> |
22 | | - <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5"> |
23 | | - <PrivateAssets>all</PrivateAssets> |
24 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
25 | | - </PackageReference> |
26 | | - <PackageReference Include="coverlet.collector" Version="8.0.0"> |
27 | | - <PrivateAssets>all</PrivateAssets> |
28 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
29 | | - </PackageReference> |
30 | | - |
31 | | - <!-- Assertions & Mocking --> |
32 | | - <PackageReference Include="FluentAssertions" Version="8.8.0" /> |
33 | | - <PackageReference Include="Moq" Version="4.20.72" /> |
34 | | - |
35 | | - <!-- Sync Dependencies --> |
36 | | - <PackageReference Include="Dotmim.Sync.Core" Version="1.3.0" /> |
37 | | - <PackageReference Include="Dotmim.Sync.Sqlite" Version="1.3.0" /> |
38 | | - <PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" /> |
39 | | - |
40 | | - <PackageReference Include="SharpCoreDB" Version="1.3.5" Condition="'$(UseSharpCoreDBPackage)' == 'true'" /> |
41 | | - <PackageReference Include="SharpCoreDB.Data.Provider" Version="1.3.5" Condition="'$(UseSharpCoreDBPackage)' == 'true'" /> |
42 | | - </ItemGroup> |
43 | | - |
44 | | - <!-- Reference local SharpCoreDB when not using NuGet packages --> |
45 | | - <ItemGroup Condition="'$(UseSharpCoreDBPackage)' != 'true'"> |
46 | | - <ProjectReference Include="..\..\src\SharpCoreDB\SharpCoreDB.csproj" /> |
47 | | - <ProjectReference Include="..\..\src\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" /> |
48 | | - <ProjectReference Include="..\..\src\SharpCoreDB.Provider.Sync\SharpCoreDB.Provider.Sync.csproj" /> |
49 | | - </ItemGroup> |
50 | | - |
51 | | - <!-- Reference provider project --> |
52 | | - <ItemGroup Condition="'$(UseSharpCoreDBPackage)' == 'true'"> |
53 | | - <ProjectReference Include="..\..\src\SharpCoreDB.Provider.Sync\SharpCoreDB.Provider.Sync.csproj" /> |
54 | | - </ItemGroup> |
55 | | - <ItemGroup> |
56 | | - <PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.201" /> |
57 | | - </ItemGroup> |
58 | | - |
59 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net10.0</TargetFramework> |
| 5 | + <LangVersion>14.0</LangVersion> |
| 6 | + <ImplicitUsings>enable</ImplicitUsings> |
| 7 | + <Nullable>enable</Nullable> |
| 8 | + <IsTestProject>true</IsTestProject> |
| 9 | + |
| 10 | + <!-- Test Configuration --> |
| 11 | + <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
| 12 | + <GenerateDocumentationFile>false</GenerateDocumentationFile> |
| 13 | + |
| 14 | + <!-- Test project, not a NuGet package --> |
| 15 | + <IsPackable>false</IsPackable> |
| 16 | + </PropertyGroup> |
| 17 | + |
| 18 | + <ItemGroup> |
| 19 | + <!-- Testing frameworks --> |
| 20 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" /> |
| 21 | + <PackageReference Include="xunit.v3" Version="3.2.2" /> |
| 22 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5"> |
| 23 | + <PrivateAssets>all</PrivateAssets> |
| 24 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 25 | + </PackageReference> |
| 26 | + <PackageReference Include="coverlet.collector" Version="8.0.0"> |
| 27 | + <PrivateAssets>all</PrivateAssets> |
| 28 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 29 | + </PackageReference> |
| 30 | + |
| 31 | + <!-- Assertions & Mocking --> |
| 32 | + <PackageReference Include="FluentAssertions" Version="8.9.0" /> |
| 33 | + <PackageReference Include="Moq" Version="4.20.72" /> |
| 34 | + |
| 35 | + <!-- Sync Dependencies --> |
| 36 | + <PackageReference Include="Dotmim.Sync.Core" Version="1.3.0" /> |
| 37 | + <PackageReference Include="Dotmim.Sync.Sqlite" Version="1.3.0" /> |
| 38 | + <PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" /> |
| 39 | + |
| 40 | + <PackageReference Include="SharpCoreDB" Version="1.3.5" Condition="'$(UseSharpCoreDBPackage)' == 'true'" /> |
| 41 | + <PackageReference Include="SharpCoreDB.Data.Provider" Version="1.3.5" Condition="'$(UseSharpCoreDBPackage)' == 'true'" /> |
| 42 | + </ItemGroup> |
| 43 | + |
| 44 | + <!-- Reference local SharpCoreDB when not using NuGet packages --> |
| 45 | + <ItemGroup Condition="'$(UseSharpCoreDBPackage)' != 'true'"> |
| 46 | + <ProjectReference Include="..\..\src\SharpCoreDB\SharpCoreDB.csproj" /> |
| 47 | + <ProjectReference Include="..\..\src\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" /> |
| 48 | + <ProjectReference Include="..\..\src\SharpCoreDB.Provider.Sync\SharpCoreDB.Provider.Sync.csproj" /> |
| 49 | + </ItemGroup> |
| 50 | + |
| 51 | + <!-- Reference provider project --> |
| 52 | + <ItemGroup Condition="'$(UseSharpCoreDBPackage)' == 'true'"> |
| 53 | + <ProjectReference Include="..\..\src\SharpCoreDB.Provider.Sync\SharpCoreDB.Provider.Sync.csproj" /> |
| 54 | + </ItemGroup> |
| 55 | + <ItemGroup> |
| 56 | + <PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.201" /> |
| 57 | + </ItemGroup> |
| 58 | + |
| 59 | +</Project> |
0 commit comments