mirror of
https://github.com/bitwarden/server.git
synced 2026-06-01 01:55:55 -05:00
* [deps] Tools: Pin dependencies * [PM-24840] updated dependencies that are required with Net 10 switch --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Alex Dragovich <adragovich@bitwarden.com> Co-authored-by: Alex Dragovich <46065570+itsadrago@users.noreply.github.com> Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RootNamespace>Bit.Seeder</RootNamespace>
|
|
<UserSecretsId>Bit.Seeder</UserSecretsId>
|
|
<Description>Core library for generating and managing test data for Bitwarden</Description>
|
|
<OutputType>library</OutputType>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Core\Core.csproj" />
|
|
<ProjectReference Include="..\..\src\Infrastructure.EntityFramework\Infrastructure.EntityFramework.csproj" />
|
|
<ProjectReference Include="..\..\src\SharedWeb\SharedWeb.csproj" />
|
|
<ProjectReference Include="..\RustSdk\RustSdk.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Bogus" Version="[35.6.5]" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="..\..\Program.cs" />
|
|
</ItemGroup>
|
|
|
|
<!-- Embed seed data JSON files as assembly resources -->
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Seeds\fixtures\**\*.json" />
|
|
</ItemGroup>
|
|
|
|
<!-- Allow integration tests to access internal seeders for validation -->
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="SeederApi.IntegrationTest" />
|
|
</ItemGroup>
|
|
</Project>
|