Skip to content

Commit db80f68

Browse files
Initial commit
0 parents  commit db80f68

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+6743
-0
lines changed

.circleci/config.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2.0
2+
jobs:
3+
build:
4+
working_directory: ~/pslambda
5+
docker:
6+
- image: microsoft/powershell@sha256:c0bd0f7ad40bcc76130cb5e772515546e3d200f8a416a273b2605a942d9775f5
7+
steps:
8+
- checkout
9+
- run:
10+
name: Run build script
11+
command: 'pwsh -File ./tools/InvokeCircleCI.ps1'
12+
- store_artifacts:
13+
path: ./testresults/pester.xml
14+
prefix: tests

.gitattributes

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain

.gitignore

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

.vscode/extensions.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"ms-vscode.csharp",
6+
"ms-vscode.powershell",
7+
"DavidAnson.vscode-markdownlint",
8+
],
9+
}

0 commit comments

Comments
 (0)