-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathBicep.Types.UnitTests.csproj
More file actions
29 lines (24 loc) · 1.15 KB
/
Bicep.Types.UnitTests.csproj
File metadata and controls
29 lines (24 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Remove="../bicep-types/test/integration/baselines/**/*.*" />
<EmbeddedResource Include="../bicep-types/test/integration/baselines/**/*.*" LogicalName="$([System.String]::new('baselines/%(RecursiveDir)%(Filename)%(Extension)').Replace('\', '/'))" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="8.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.7.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.8.2" />
<PackageReference Include="System.Memory.Data" Version="9.0.3" />
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../Bicep.Types/Bicep.Types.csproj" />
</ItemGroup>
</Project>