-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathNLU.DevOps.Dialogflow.Tests.csproj
More file actions
31 lines (27 loc) · 1.14 KB
/
NLU.DevOps.Dialogflow.Tests.csproj
File metadata and controls
31 lines (27 loc) · 1.14 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
30
31
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\CodeAnalysis.props" />
<Import Project="..\CodeCoverage.props" />
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="FluentAssertions" Version="5.7.0" />
<PackageReference Include="FluentAssertions.Json" Version="5.0.0" />
<PackageReference Include="Moq" Version="4.12.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NLU.DevOps.Dialogflow\NLU.DevOps.Dialogflow.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Assets\test.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>