2025-05-09 15:00:26 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<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" />
|
2025-10-21 23:46:37 +02:00
|
|
|
<ProjectReference Include="..\RustSdk\RustSdk.csproj" />
|
2025-05-09 15:00:26 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2026-01-30 13:53:24 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Bogus" Version="35.*" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-05-09 15:00:26 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Remove="..\..\Program.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|