|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - |
3 | | - <PropertyGroup> |
4 | | - <TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks> |
5 | | - <IsTestProject>true</IsTestProject> |
6 | | - <IsPackable>false</IsPackable> |
7 | | - </PropertyGroup> |
8 | | - |
9 | | - <ItemGroup> |
10 | | - <PackageReference Include="coverlet.msbuild" Version="8.0.0"> |
11 | | - <PrivateAssets>all</PrivateAssets> |
12 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
13 | | - </PackageReference> |
14 | | - <PackageReference Include="Dapper" Version="2.1.66" /> |
15 | | - <PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.4" /> |
16 | | - <PackageReference Include="MongoDB.Driver" Version="3.6.0" /> |
17 | | - <PackageReference Include="MSTest" Version="4.1.0" /> |
18 | | - </ItemGroup> |
19 | | - |
20 | | - <ItemGroup Condition="'$(TargetFramework)' != 'net10.0'"> |
21 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.13" /> |
22 | | - </ItemGroup> |
23 | | - |
24 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net10.0'"> |
25 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.3" /> |
26 | | - </ItemGroup> |
27 | | - |
28 | | - <ItemGroup> |
29 | | - <ProjectReference Include="..\..\source\ClearDomain.Identity\ClearDomain.Identity.csproj" /> |
30 | | - <ProjectReference Include="..\..\source\ClearDomain\ClearDomain.csproj" /> |
31 | | - </ItemGroup> |
32 | | - |
33 | | -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks> |
| 5 | + <IsTestProject>true</IsTestProject> |
| 6 | + <IsPackable>false</IsPackable> |
| 7 | + </PropertyGroup> |
| 8 | + |
| 9 | + <ItemGroup> |
| 10 | + <PackageReference Include="coverlet.msbuild" Version="8.0.0"> |
| 11 | + <PrivateAssets>all</PrivateAssets> |
| 12 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 13 | + </PackageReference> |
| 14 | + <PackageReference Include="Dapper" Version="2.1.66" /> |
| 15 | + <PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.1" /> |
| 16 | + <PackageReference Include="MongoDB.Driver" Version="3.6.0" /> |
| 17 | + <PackageReference Include="MSTest" Version="4.1.0" /> |
| 18 | + </ItemGroup> |
| 19 | + |
| 20 | + <ItemGroup Condition="'$(TargetFramework)' != 'net10.0'"> |
| 21 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.13" /> |
| 22 | + </ItemGroup> |
| 23 | + |
| 24 | + <ItemGroup Condition="'$(TargetFramework)' == 'net10.0'"> |
| 25 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.3" /> |
| 26 | + </ItemGroup> |
| 27 | + |
| 28 | + <ItemGroup> |
| 29 | + <ProjectReference Include="..\..\source\ClearDomain.Identity\ClearDomain.Identity.csproj" /> |
| 30 | + <ProjectReference Include="..\..\source\ClearDomain\ClearDomain.csproj" /> |
| 31 | + </ItemGroup> |
| 32 | + |
| 33 | +</Project> |
0 commit comments