1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-08 13:12:16 -05:00
bitwarden/util/Seeder/Seeder.csproj
2025-05-01 14:14:26 +02:00

30 lines
920 B
XML

<?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>
<Folder Include="Settings\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Core\Core.csproj" />
<ProjectReference Include="..\..\src\Infrastructure.EntityFramework\Infrastructure.EntityFramework.csproj" />
<ProjectReference Include="..\..\src\SharedWeb\SharedWeb.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="..\..\Program.cs" />
</ItemGroup>
</Project>