You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.9 KiB
36 lines
1.9 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<Nullable>enable</Nullable> |
|
<IsPackable>false</IsPackable> |
|
<UserSecretsId>6570f288-5c2c-47ad-8978-f3da255079c2</UserSecretsId> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" /> |
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> |
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" /> |
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> |
|
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" Version="8.6.0" /> |
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNetTestSdkVersion)" /> |
|
<PackageReference Include="xunit" Version="$(XUnitVersion)" /> |
|
<PackageReference Include="xunit.runner.visualstudio" Version="$(XUnitRunnerVisualStudioVersion)"> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
<PrivateAssets>all</PrivateAssets> |
|
</PackageReference> |
|
<PackageReference Include="coverlet.collector" Version="$(CoverletCollectorVersion)"> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
<PrivateAssets>all</PrivateAssets> |
|
</PackageReference> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\..\src\Infrastructure.Dapper\Infrastructure.Dapper.csproj" /> |
|
<ProjectReference Include="..\..\src\Infrastructure.EntityFramework\Infrastructure.EntityFramework.csproj" /> |
|
<ProjectReference Include="..\..\util\Migrator\Migrator.csproj" /> |
|
<ProjectReference Include="..\..\util\MySqlMigrations\MySqlMigrations.csproj" /> |
|
<ProjectReference Include="..\..\util\PostgresMigrations\PostgresMigrations.csproj" /> |
|
<ProjectReference Include="..\..\util\SqliteMigrations\SqliteMigrations.csproj" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|