Skip to content

Commit b3bdaa2

Browse files
authored
Cleanup csharp project (#137)
* Clean csharp projects * Fix relative path to README
1 parent 4acd9d0 commit b3bdaa2

10 files changed

Lines changed: 305 additions & 58 deletions

sdk/cs/.gitignore

Lines changed: 295 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,295 @@
1+
# Custom
2+
.dotnet/
3+
artifacts/
4+
.build/
5+
.vscode/
6+
7+
## Ignore Visual Studio temporary files, build results, and
8+
## files generated by popular Visual Studio add-ons.
9+
##
10+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
11+
12+
# User-specific files
13+
*.suo
14+
*.user
15+
*.userosscache
16+
*.sln.docstates
17+
18+
# User-specific files (MonoDevelop/Xamarin Studio)
19+
*.userprefs
20+
21+
# Build results
22+
[Dd]ebug/
23+
[Dd]ebugPublic/
24+
[Rr]elease/
25+
[Rr]eleases/
26+
x64/
27+
x86/
28+
bld/
29+
[Bb]in/
30+
[Oo]bj/
31+
[Ll]og/
32+
33+
# Visual Studio 2015 cache/options directory
34+
.vs/
35+
# Uncomment if you have tasks that create the project's static files in wwwroot
36+
#wwwroot/
37+
38+
# MSTest test Results
39+
[Tt]est[Rr]esult*/
40+
[Bb]uild[Ll]og.*
41+
42+
# NUNIT
43+
*.VisualState.xml
44+
TestResult.xml
45+
46+
# Build Results of an ATL Project
47+
[Dd]ebugPS/
48+
[Rr]eleasePS/
49+
dlldata.c
50+
51+
# .NET Core
52+
project.lock.json
53+
project.fragment.lock.json
54+
artifacts/
55+
**/Properties/launchSettings.json
56+
57+
*_i.c
58+
*_p.c
59+
*_i.h
60+
*.ilk
61+
*.meta
62+
*.obj
63+
*.pch
64+
*.pdb
65+
*.pgc
66+
*.pgd
67+
*.rsp
68+
*.sbr
69+
*.tlb
70+
*.tli
71+
*.tlh
72+
*.tmp
73+
*.tmp_proj
74+
*.log
75+
*.vspscc
76+
*.vssscc
77+
.builds
78+
*.pidb
79+
*.svclog
80+
*.scc
81+
82+
# Chutzpah Test files
83+
_Chutzpah*
84+
85+
# Visual C++ cache files
86+
ipch/
87+
*.aps
88+
*.ncb
89+
*.opendb
90+
*.opensdf
91+
*.sdf
92+
*.cachefile
93+
*.VC.db
94+
*.VC.VC.opendb
95+
96+
# Visual Studio profiler
97+
*.psess
98+
*.vsp
99+
*.vspx
100+
*.sap
101+
102+
# TFS 2012 Local Workspace
103+
$tf/
104+
105+
# Guidance Automation Toolkit
106+
*.gpState
107+
108+
# ReSharper is a .NET coding add-in
109+
_ReSharper*/
110+
*.[Rr]e[Ss]harper
111+
*.DotSettings.user
112+
113+
# JustCode is a .NET coding add-in
114+
.JustCode
115+
116+
# TeamCity is a build add-in
117+
_TeamCity*
118+
119+
# DotCover is a Code Coverage Tool
120+
*.dotCover
121+
122+
# Visual Studio code coverage results
123+
*.coverage
124+
*.coveragexml
125+
126+
# NCrunch
127+
_NCrunch_*
128+
.*crunch*.local.xml
129+
nCrunchTemp_*
130+
131+
# MightyMoose
132+
*.mm.*
133+
AutoTest.Net/
134+
135+
# Web workbench (sass)
136+
.sass-cache/
137+
138+
# Installshield output folder
139+
[Ee]xpress/
140+
141+
# DocProject is a documentation generator add-in
142+
DocProject/buildhelp/
143+
DocProject/Help/*.HxT
144+
DocProject/Help/*.HxC
145+
DocProject/Help/*.hhc
146+
DocProject/Help/*.hhk
147+
DocProject/Help/*.hhp
148+
DocProject/Help/Html2
149+
DocProject/Help/html
150+
151+
# Click-Once directory
152+
publish/
153+
154+
# Publish Web Output
155+
*.[Pp]ublish.xml
156+
*.azurePubxml
157+
# TODO: Comment the next line if you want to checkin your web deploy settings
158+
# but database connection strings (with potential passwords) will be unencrypted
159+
*.pubxml
160+
*.publishproj
161+
162+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
163+
# checkin your Azure Web App publish settings, but sensitive information contained
164+
# in these scripts will be unencrypted
165+
PublishScripts/
166+
167+
# NuGet Packages
168+
*.nupkg
169+
# The packages folder can be ignored because of Package Restore
170+
**/packages/*
171+
# except build/, which is used as an MSBuild target.
172+
!**/packages/build/
173+
# Uncomment if necessary however generally it will be regenerated when needed
174+
#!**/packages/repositories.config
175+
# NuGet v3's project.json files produces more ignorable files
176+
*.nuget.props
177+
*.nuget.targets
178+
179+
# Microsoft Azure Build Output
180+
csx/
181+
*.build.csdef
182+
183+
# Microsoft Azure Emulator
184+
ecf/
185+
rcf/
186+
187+
# Windows Store app package directories and files
188+
AppPackages/
189+
BundleArtifacts/
190+
Package.StoreAssociation.xml
191+
_pkginfo.txt
192+
193+
# Visual Studio cache files
194+
# files ending in .cache can be ignored
195+
*.[Cc]ache
196+
# but keep track of directories ending in .cache
197+
!*.[Cc]ache/
198+
199+
# Others
200+
ClientBin/
201+
~$*
202+
*~
203+
*.dbmdl
204+
*.dbproj.schemaview
205+
*.jfm
206+
*.pfx
207+
*.publishsettings
208+
orleans.codegen.cs
209+
210+
# Since there are multiple workflows, uncomment next line to ignore bower_components
211+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
212+
#bower_components/
213+
214+
# RIA/Silverlight projects
215+
Generated_Code/
216+
217+
# Backup & report files from converting an old project file
218+
# to a newer Visual Studio version. Backup files are not needed,
219+
# because we have git ;-)
220+
_UpgradeReport_Files/
221+
Backup*/
222+
UpgradeLog*.XML
223+
UpgradeLog*.htm
224+
225+
# SQL Server files
226+
*.mdf
227+
*.ldf
228+
229+
# Business Intelligence projects
230+
*.rdl.data
231+
*.bim.layout
232+
*.bim_*.settings
233+
234+
# Microsoft Fakes
235+
FakesAssemblies/
236+
237+
# GhostDoc plugin setting file
238+
*.GhostDoc.xml
239+
240+
# Node.js Tools for Visual Studio
241+
.ntvs_analysis.dat
242+
node_modules/
243+
244+
# Typescript v1 declaration files
245+
typings/
246+
247+
# Visual Studio 6 build log
248+
*.plg
249+
250+
# Visual Studio 6 workspace options file
251+
*.opt
252+
253+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
254+
*.vbw
255+
256+
# Visual Studio LightSwitch build output
257+
**/*.HTMLClient/GeneratedArtifacts
258+
**/*.DesktopClient/GeneratedArtifacts
259+
**/*.DesktopClient/ModelManifest.xml
260+
**/*.Server/GeneratedArtifacts
261+
**/*.Server/ModelManifest.xml
262+
_Pvt_Extensions
263+
264+
# Paket dependency manager
265+
.paket/paket.exe
266+
paket-files/
267+
268+
# FAKE - F# Make
269+
.fake/
270+
271+
# JetBrains Rider
272+
.idea/
273+
*.sln.iml
274+
275+
# CodeRush
276+
.cr/
277+
278+
# Python Tools for Visual Studio (PTVS)
279+
__pycache__/
280+
*.pyc
281+
282+
# Cake - Uncomment if you are using it
283+
# tools/**
284+
# !tools/packages.config
285+
286+
# Perfview trace
287+
*.etl.zip
288+
*.orig
289+
/src/BenchmarksDriver/results.md
290+
*.trace.zip
291+
/src/BenchmarksDriver/*.zip
292+
eventpipe.netperf
293+
*.netperf
294+
*.bench.json
295+
BenchmarkDotNet.Artifacts/

sdk/cs/FoundryLocal.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AI.Foundry.Local", "src\Microsoft.AI.Foundry.Local.csproj", "{247537D6-CBBA-C748-B91D-AA7B236563B4}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApp", "samples\ConsoleClient\TestApp.csproj", "{91680EDB-3D1D-47D2-BF32-58C3544EDEEC}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApp", "samples\TestApp\TestApp.csproj", "{91680EDB-3D1D-47D2-BF32-58C3544EDEEC}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{0C88DD14-F956-CE84-757C-A364CCF449FC}"
1111
EndProject

sdk/cs/FoundryLocal.slnLaunch.user

Lines changed: 0 additions & 17 deletions
This file was deleted.

sdk/cs/samples/ConsoleClient/ConsoleClient.csproj

Lines changed: 0 additions & 14 deletions
This file was deleted.

sdk/cs/samples/ConsoleClient/TestApp.csproj.user

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)