mirror of
https://github.com/bitwarden/server.git
synced 2026-04-12 11:43:51 -05:00
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>Setup.Test</RootNamespace>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<!--
|
|
This template uses native xUnit.net command line options when using 'dotnet run' and
|
|
VSTest by default when using 'dotnet test'. For more information on how to enable support
|
|
for Microsoft Testing Platform, please visit:
|
|
https://xunit.net/docs/getting-started/v3/microsoft-testing-platform
|
|
-->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
|
|
<PackageReference Include="xunit.v3" Version="3.2.1" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
|
|
<PackageReference Include="NSubstitute" Version="$(NSubstituteVersion)" />
|
|
<PackageReference Include="Kralizek.AutoFixture.Extensions.MockHttp" Version="2.2.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\util\Setup\Setup.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|