-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathNLU.DevOps.CommandLine.Tests.csproj
More file actions
48 lines (47 loc) · 2.2 KB
/
NLU.DevOps.CommandLine.Tests.csproj
File metadata and controls
48 lines (47 loc) · 2.2 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\CodeAnalysis.props" />
<Import Project="..\CodeCoverage.props" />
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<Target Name="PublishProviders"
BeforeTargets="CoreBuild">
<ItemGroup>
<PluginProject Include="..\NLU.DevOps.Luis\NLU.DevOps.Luis.csproj" />
<PluginProject Include="..\NLU.DevOps.LuisV3\NLU.DevOps.LuisV3.csproj" />
<PluginProject Include="..\NLU.DevOps.Lex\NLU.DevOps.Lex.csproj" />
<PluginProject Include="..\NLU.DevOps.Dialogflow\NLU.DevOps.Dialogflow.csproj" />
</ItemGroup>
<MSBuild Projects="@(PluginProject)"
Targets="Publish"
Properties="Configuration=$(Configuration);PublishDir=$(TargetDir)providers\%(FileName)\" />
</Target>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.5.3" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.2.0" />
<PackageReference Include="Moq" Version="4.12.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="nunit" Version="3.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.11.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NLU.DevOps.CommandLine\NLU.DevOps.CommandLine.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="testdata\settings.luis.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="testdata\tests.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="testdata\utterances.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>