Skip to content

Commit d0f1366

Browse files
committed
Add sample code for using the noark5 client
1 parent 27017e1 commit d0f1366

File tree

5 files changed

+689
-0
lines changed

5 files changed

+689
-0
lines changed

.gitignore

Lines changed: 206 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,206 @@
1+
# Created by https://www.gitignore.io
2+
3+
### VisualStudio ###
4+
## Ignore Visual Studio temporary files, build results, and
5+
## files generated by popular Visual Studio add-ons.
6+
7+
# User-specific files
8+
*.suo
9+
*.user
10+
*.userosscache
11+
*.sln.docstates
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
15+
16+
# Build results
17+
[Dd]ebug/
18+
[Dd]ebugPublic/
19+
[Rr]elease/
20+
[Rr]eleases/
21+
x64/
22+
x86/
23+
build/
24+
bld/
25+
[Bb]in/
26+
[Oo]bj/
27+
28+
# Visual Studo cache/options directory
29+
.vs/
30+
*/.vs/
31+
32+
# MSTest test Results
33+
[Tt]est[Rr]esult*/
34+
[Bb]uild[Ll]og.*
35+
36+
# NUNIT
37+
*.VisualState.xml
38+
TestResult.xml
39+
40+
# Build Results of an ATL Project
41+
[Dd]ebugPS/
42+
[Rr]eleasePS/
43+
dlldata.c
44+
45+
*_i.c
46+
*_p.c
47+
*_i.h
48+
*.ilk
49+
*.meta
50+
*.obj
51+
*.pch
52+
*.pdb
53+
*.pgc
54+
*.pgd
55+
*.rsp
56+
*.sbr
57+
*.tlb
58+
*.tli
59+
*.tlh
60+
*.tmp
61+
*.tmp_proj
62+
*.log
63+
*.vspscc
64+
*.vssscc
65+
.builds
66+
*.pidb
67+
*.svclog
68+
*.scc
69+
70+
# Chutzpah Test files
71+
_Chutzpah*
72+
73+
# Visual C++ cache files
74+
ipch/
75+
*.aps
76+
*.ncb
77+
*.opensdf
78+
*.sdf
79+
*.cachefile
80+
81+
# Visual Studio profiler
82+
*.psess
83+
*.vsp
84+
*.vspx
85+
86+
# TFS 2012 Local Workspace
87+
$tf/
88+
89+
# Guidance Automation Toolkit
90+
*.gpState
91+
92+
# ReSharper is a .NET coding add-in
93+
_ReSharper*/
94+
*.[Rr]e[Ss]harper
95+
*.DotSettings.user
96+
97+
# JustCode is a .NET coding addin-in
98+
.JustCode
99+
100+
# TeamCity is a build add-in
101+
_TeamCity*
102+
103+
# DotCover is a Code Coverage Tool
104+
*.dotCover
105+
106+
# NCrunch
107+
_NCrunch_*
108+
.*crunch*.local.xml
109+
110+
# MightyMoose
111+
*.mm.*
112+
AutoTest.Net/
113+
114+
# Web workbench (sass)
115+
.sass-cache/
116+
117+
# Installshield output folder
118+
[Ee]xpress/
119+
120+
# DocProject is a documentation generator add-in
121+
DocProject/buildhelp/
122+
DocProject/Help/*.HxT
123+
DocProject/Help/*.HxC
124+
DocProject/Help/*.hhc
125+
DocProject/Help/*.hhk
126+
DocProject/Help/*.hhp
127+
DocProject/Help/Html2
128+
DocProject/Help/html
129+
130+
# Click-Once directory
131+
publish/
132+
133+
# Publish Web Output
134+
*.[Pp]ublish.xml
135+
*.azurePubxml
136+
# TODO: Comment the next line if you want to checkin your web deploy settings
137+
# but database connection strings (with potential passwords) will be unencrypted
138+
*.pubxml
139+
*.publishproj
140+
141+
# The packages folder can be ignored because of Package Restore
142+
**/packages/*
143+
# except build/, which is used as an MSBuild target.
144+
!**/packages/build/
145+
# Uncomment if necessary however generally it will be regenerated when needed
146+
#!**/packages/repositories.config
147+
148+
# Windows Azure Build Output
149+
csx/
150+
*.build.csdef
151+
152+
# Windows Store app package directory
153+
AppPackages/
154+
155+
# Others
156+
*.[Cc]ache
157+
ClientBin/
158+
[Ss]tyle[Cc]op.*
159+
*.[Ss]tyle[Cc]op
160+
~$*
161+
*~
162+
*.dbmdl
163+
*.dbproj.schemaview
164+
*.pfx
165+
*.publishsettings
166+
node_modules/
167+
bower_components/
168+
169+
# RIA/Silverlight projects
170+
Generated_Code/
171+
172+
# Backup & report files from converting an old project file
173+
# to a newer Visual Studio version. Backup files are not needed,
174+
# because we have git ;-)
175+
_UpgradeReport_Files/
176+
Backup*/
177+
UpgradeLog*.XML
178+
UpgradeLog*.htm
179+
180+
# SQL Server files
181+
*.mdf
182+
*.ldf
183+
184+
# Business Intelligence projects
185+
*.rdl.data
186+
*.bim.layout
187+
*.bim_*.settings
188+
189+
# Microsoft Fakes
190+
FakesAssemblies/
191+
192+
# Node.js Tools for Visual Studio
193+
.ntvs_analysis.dat
194+
195+
# Visual Studio 6 build log
196+
*.plg
197+
198+
# Visual Studio 6 workspace options file
199+
*.opt
200+
201+
# Advanced Installer temp files
202+
DocumasterOfficeAddin/Installer/msoffice-addin-install-cache/
203+
# Installer artifacts
204+
DocumasterOfficeAddin/artifacts
205+
# Generated (from template) test configuration
206+
DocumasterOfficeAddinTests/Resources/test-config.xml
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27428.2027
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoarkWsClientSample", "NoarkWsClientSample\NoarkWsClientSample.csproj", "{2C4262F9-4830-4D4B-9D55-5680DCA291F4}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{2C4262F9-4830-4D4B-9D55-5680DCA291F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{2C4262F9-4830-4D4B-9D55-5680DCA291F4}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{2C4262F9-4830-4D4B-9D55-5680DCA291F4}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{2C4262F9-4830-4D4B-9D55-5680DCA291F4}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {1F0EB4F5-C453-43A5-973C-7938B5B34E2D}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net47</TargetFramework>
5+
<OutputType>Exe</OutputType>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="Newtonsoft.Json" Version="11.0.2">
10+
<IncludeAssets>all</IncludeAssets>
11+
</PackageReference>
12+
<PackageReference Include="CommandLineParser" Version="2.2.1">
13+
<IncludeAssets>all</IncludeAssets>
14+
</PackageReference>
15+
16+
<PackageReference Include="Documaster.WebApi.Client.Noark5" Version="0.4.0">
17+
<IncludeAssets>all</IncludeAssets>
18+
</PackageReference>
19+
<PackageReference Include="Documaster.WebApi.Client.IDP" Version="0.3.0">
20+
<IncludeAssets>all</IncludeAssets>
21+
</PackageReference>
22+
</ItemGroup>
23+
24+
</Project>

0 commit comments

Comments
 (0)