Skip to content

Commit e94352a

Browse files
committed
chore(Compare Comply V1): Add examples
1 parent 7745997 commit e94352a

File tree

6 files changed

+479
-0
lines changed

6 files changed

+479
-0
lines changed

IBM.Watson.sln

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IBM.Watson.NaturalLanguageU
9595
EndProject
9696
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IBM.Watson.ToneAnalyzer.v3.UnitTests", "test\ToneAnalyzer.v3.UnitTests\IBM.Watson.ToneAnalyzer.v3.UnitTests.csproj", "{28F5A68C-CF5B-4691-A5E5-9135C99470A0}"
9797
EndProject
98+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IBM.Watson.CompareComply.v1.Examples", "examples\IBM.Watson.CompareComply.v1.Examples\IBM.Watson.CompareComply.v1.Examples.csproj", "{58A819F6-2F99-4A79-95ED-2DED2F9D5DB4}"
99+
EndProject
98100
Global
99101
GlobalSection(SolutionConfigurationPlatforms) = preSolution
100102
Debug|Any CPU = Debug|Any CPU
@@ -233,6 +235,10 @@ Global
233235
{28F5A68C-CF5B-4691-A5E5-9135C99470A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
234236
{28F5A68C-CF5B-4691-A5E5-9135C99470A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
235237
{28F5A68C-CF5B-4691-A5E5-9135C99470A0}.Release|Any CPU.Build.0 = Release|Any CPU
238+
{58A819F6-2F99-4A79-95ED-2DED2F9D5DB4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
239+
{58A819F6-2F99-4A79-95ED-2DED2F9D5DB4}.Debug|Any CPU.Build.0 = Debug|Any CPU
240+
{58A819F6-2F99-4A79-95ED-2DED2F9D5DB4}.Release|Any CPU.ActiveCfg = Release|Any CPU
241+
{58A819F6-2F99-4A79-95ED-2DED2F9D5DB4}.Release|Any CPU.Build.0 = Release|Any CPU
236242
EndGlobalSection
237243
GlobalSection(SolutionProperties) = preSolution
238244
HideSolutionNode = FALSE
@@ -270,6 +276,7 @@ Global
270276
{57C7F28F-822A-4C52-909A-F9DB6A0CFA51} = {65D78D49-E54F-4952-A1D4-7C8D0EDAA1B3}
271277
{415AADD4-CC05-4B77-8E57-C1B079421875} = {89D715BF-7464-45FB-8DA0-9D7B46AB8C7F}
272278
{28F5A68C-CF5B-4691-A5E5-9135C99470A0} = {C7873F44-7188-49BE-84C5-532BE4E07147}
279+
{58A819F6-2F99-4A79-95ED-2DED2F9D5DB4} = {B368DCF7-FB57-4302-8467-4EB142394A29}
273280
EndGlobalSection
274281
GlobalSection(ExtensibilityGlobals) = postSolution
275282
SolutionGuid = {B9D9D17B-1C17-402F-B701-DC671528690A}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp2.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="IBM.Cloud.SDK.Core" Version="0.7.1" />
10+
</ItemGroup>
11+
12+
<ItemGroup>
13+
<ProjectReference Include="..\..\src\IBM.Watson.CompareComply.v1\IBM.Watson.CompareComply.v1.csproj" />
14+
</ItemGroup>
15+
16+
<ItemGroup>
17+
<None Update=".\CompareComplyTestData\**\*;appsettings.json">
18+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
19+
</None>
20+
</ItemGroup>
21+
22+
</Project>

0 commit comments

Comments
 (0)