Skip to content

Commit 9524687

Browse files
committed
initial commit
1 parent 9c6d5c9 commit 9524687

31 files changed

+1489
-282
lines changed

.gitattributes

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
5+
# Custom for Visual Studio
6+
*.cs diff=csharp
7+
*.sln merge=union
8+
*.csproj merge=union
9+
*.vbproj merge=union
10+
*.fsproj merge=union
11+
*.dbproj merge=union
12+
13+
# Standard to msysgit
14+
*.doc diff=astextplain
15+
*.DOC diff=astextplain
16+
*.docx diff=astextplain
17+
*.DOCX diff=astextplain
18+
*.dot diff=astextplain
19+
*.DOT diff=astextplain
20+
*.pdf diff=astextplain
21+
*.PDF diff=astextplain
22+
*.rtf diff=astextplain
23+
*.RTF diff=astextplain
24+
25+
# Needed for Mono build shell script
26+
*.sh -text eol=lf
27+
28+
# Needed for API Approvals
29+
*.txt text eol=crlf
30+
31+
build.sh eol=lf

.gitignore

Lines changed: 39 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1+
# Custom
2+
tools/
3+
build/
4+
.nuget/
5+
.dotnet/
6+
.idea/
7+
.[Dd][Ss]_[Ss]tore
8+
9+
## NBench output
10+
[Pp]erf[Rr]esult*/
11+
112
## Ignore Visual Studio temporary files, build results, and
213
## files generated by popular Visual Studio add-ons.
314
##
415
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
516

617
# User-specific files
7-
*.rsuser
818
*.suo
919
*.user
1020
*.userosscache
@@ -13,68 +23,57 @@
1323
# User-specific files (MonoDevelop/Xamarin Studio)
1424
*.userprefs
1525

16-
# Mono auto generated files
17-
mono_crash.*
18-
1926
# Build results
2027
[Dd]ebug/
2128
[Dd]ebugPublic/
2229
[Rr]elease/
2330
[Rr]eleases/
2431
x64/
2532
x86/
26-
[Aa][Rr][Mm]/
27-
[Aa][Rr][Mm]64/
2833
bld/
2934
[Bb]in/
3035
[Oo]bj/
3136
[Ll]og/
32-
[Ll]ogs/
3337

34-
# Visual Studio 2015/2017 cache/options directory
38+
#FAKE
39+
.fake
40+
tools/
41+
42+
#DocFx output
43+
_site/
44+
45+
# Visual Studio 2015 cache/options directory
3546
.vs/
3647
# Uncomment if you have tasks that create the project's static files in wwwroot
3748
#wwwroot/
3849

39-
# Visual Studio 2017 auto generated files
40-
Generated\ Files/
41-
4250
# MSTest test Results
4351
[Tt]est[Rr]esult*/
4452
[Bb]uild[Ll]og.*
4553

46-
# NUnit
54+
# NUNIT
4755
*.VisualState.xml
4856
TestResult.xml
49-
nunit-*.xml
5057

5158
# Build Results of an ATL Project
5259
[Dd]ebugPS/
5360
[Rr]eleasePS/
5461
dlldata.c
5562

56-
# Benchmark Results
57-
BenchmarkDotNet.Artifacts/
58-
5963
# .NET Core
6064
project.lock.json
6165
project.fragment.lock.json
6266
artifacts/
67+
**/Properties/launchSettings.json
6368

64-
# StyleCop
65-
StyleCopReport.xml
66-
67-
# Files built by Visual Studio
6869
*_i.c
6970
*_p.c
70-
*_h.h
71+
*_i.h
7172
*.ilk
7273
*.meta
7374
*.obj
74-
*.iobj
7575
*.pch
7676
*.pdb
77-
*.ipdb
7877
*.pgc
7978
*.pgd
8079
*.rsp
@@ -84,7 +83,6 @@ StyleCopReport.xml
8483
*.tlh
8584
*.tmp
8685
*.tmp_proj
87-
*_wpftmp.csproj
8886
*.log
8987
*.vspscc
9088
*.vssscc
@@ -113,9 +111,6 @@ ipch/
113111
*.vspx
114112
*.sap
115113

116-
# Visual Studio Trace Files
117-
*.e2e
118-
119114
# TFS 2012 Local Workspace
120115
$tf/
121116

@@ -127,16 +122,15 @@ _ReSharper*/
127122
*.[Rr]e[Ss]harper
128123
*.DotSettings.user
129124

125+
# JustCode is a .NET coding add-in
126+
.JustCode
127+
130128
# TeamCity is a build add-in
131129
_TeamCity*
132130

133131
# DotCover is a Code Coverage Tool
134132
*.dotCover
135133

136-
# AxoCover is a Code Coverage Tool
137-
.axoCover/*
138-
!.axoCover/settings.json
139-
140134
# Visual Studio code coverage results
141135
*.coverage
142136
*.coveragexml
@@ -172,7 +166,7 @@ publish/
172166
# Publish Web Output
173167
*.[Pp]ublish.xml
174168
*.azurePubxml
175-
# Note: Comment the next line if you want to checkin your web deploy settings,
169+
# TODO: Comment the next line if you want to checkin your web deploy settings
176170
# but database connection strings (with potential passwords) will be unencrypted
177171
*.pubxml
178172
*.publishproj
@@ -184,14 +178,12 @@ PublishScripts/
184178

185179
# NuGet Packages
186180
*.nupkg
187-
# NuGet Symbol Packages
188-
*.snupkg
189181
# The packages folder can be ignored because of Package Restore
190-
**/[Pp]ackages/*
182+
**/packages/*
191183
# except build/, which is used as an MSBuild target.
192-
!**/[Pp]ackages/build/
184+
!**/packages/build/
193185
# Uncomment if necessary however generally it will be regenerated when needed
194-
#!**/[Pp]ackages/repositories.config
186+
#!**/packages/repositories.config
195187
# NuGet v3's project.json files produces more ignorable files
196188
*.nuget.props
197189
*.nuget.targets
@@ -209,15 +201,12 @@ AppPackages/
209201
BundleArtifacts/
210202
Package.StoreAssociation.xml
211203
_pkginfo.txt
212-
*.appx
213-
*.appxbundle
214-
*.appxupload
215204

216205
# Visual Studio cache files
217206
# files ending in .cache can be ignored
218207
*.[Cc]ache
219208
# but keep track of directories ending in .cache
220-
!?*.[Cc]ache/
209+
!*.[Cc]ache/
221210

222211
# Others
223212
ClientBin/
@@ -230,10 +219,6 @@ ClientBin/
230219
*.publishsettings
231220
orleans.codegen.cs
232221

233-
# Including strong name files can present a security risk
234-
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
235-
#*.snk
236-
237222
# Since there are multiple workflows, uncomment next line to ignore bower_components
238223
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
239224
#bower_components/
@@ -248,8 +233,6 @@ _UpgradeReport_Files/
248233
Backup*/
249234
UpgradeLog*.XML
250235
UpgradeLog*.htm
251-
ServiceFabricBackup/
252-
*.rptproj.bak
253236

254237
# SQL Server files
255238
*.mdf
@@ -260,10 +243,6 @@ ServiceFabricBackup/
260243
*.rdl.data
261244
*.bim.layout
262245
*.bim_*.settings
263-
*.rptproj.rsuser
264-
*- [Bb]ackup.rdl
265-
*- [Bb]ackup ([0-9]).rdl
266-
*- [Bb]ackup ([0-9][0-9]).rdl
267246

268247
# Microsoft Fakes
269248
FakesAssemblies/
@@ -275,6 +254,9 @@ FakesAssemblies/
275254
.ntvs_analysis.dat
276255
node_modules/
277256

257+
# Typescript v1 declaration files
258+
typings/
259+
278260
# Visual Studio 6 build log
279261
*.plg
280262

@@ -299,8 +281,12 @@ paket-files/
299281
# FAKE - F# Make
300282
.fake/
301283

302-
# CodeRush personal settings
303-
.cr/personal
284+
# JetBrains Rider
285+
.idea/
286+
*.sln.iml
287+
288+
# CodeRush
289+
.cr/
304290

305291
# Python Tools for Visual Studio (PTVS)
306292
__pycache__/
@@ -310,9 +296,6 @@ __pycache__/
310296
# tools/**
311297
# !tools/packages.config
312298

313-
# Tabs Studio
314-
*.tss
315-
316299
# Telerik's JustMock configuration file
317300
*.jmconfig
318301

@@ -321,30 +304,3 @@ __pycache__/
321304
*.btm.cs
322305
*.odx.cs
323306
*.xsd.cs
324-
325-
# OpenCover UI analysis results
326-
OpenCover/
327-
328-
# Azure Stream Analytics local run output
329-
ASALocalRun/
330-
331-
# MSBuild Binary and Structured Log
332-
*.binlog
333-
334-
# NVidia Nsight GPU debugger configuration file
335-
*.nvuser
336-
337-
# MFractors (Xamarin productivity tool) working folder
338-
.mfractor/
339-
340-
# Local History for Visual Studio
341-
.localhistory/
342-
343-
# BeatPulse healthcheck temp database
344-
healthchecksdb
345-
346-
# Backup folder for Package Reference Convert tool in Visual Studio 2017
347-
MigrationBackup/
348-
349-
# Ionide (cross platform F# VS Code tools) working folder
350-
.ionide/

Akka.MultiNodeTestRunner.sln

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29230.47
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Akka.MultiNodeTestRunner", "src\Akka.MultiNodeTestRunner\Akka.MultiNodeTestRunner.csproj", "{E945AABA-2779-41E8-9B43-8898FFD64F22}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Akka.MultiNodeTestRunner.Tests", "src\Akka.MultiNodeTestRunner.Tests\Akka.MultiNodeTestRunner.Tests.csproj", "{0F9B9BC6-9F86-40E8-BA9B-D27BF3AC7970}"
9+
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{79D71264-186B-4F62-8930-35DD9ECCAF3B}"
11+
ProjectSection(SolutionItems) = preProject
12+
build.cmd = build.cmd
13+
build.fsx = build.fsx
14+
build.ps1 = build.ps1
15+
build.sh = build.sh
16+
EndProjectSection
17+
EndProject
18+
Global
19+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
20+
Debug|Any CPU = Debug|Any CPU
21+
Release|Any CPU = Release|Any CPU
22+
EndGlobalSection
23+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
24+
{E945AABA-2779-41E8-9B43-8898FFD64F22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
25+
{E945AABA-2779-41E8-9B43-8898FFD64F22}.Debug|Any CPU.Build.0 = Debug|Any CPU
26+
{E945AABA-2779-41E8-9B43-8898FFD64F22}.Release|Any CPU.ActiveCfg = Release|Any CPU
27+
{E945AABA-2779-41E8-9B43-8898FFD64F22}.Release|Any CPU.Build.0 = Release|Any CPU
28+
{0F9B9BC6-9F86-40E8-BA9B-D27BF3AC7970}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
29+
{0F9B9BC6-9F86-40E8-BA9B-D27BF3AC7970}.Debug|Any CPU.Build.0 = Debug|Any CPU
30+
{0F9B9BC6-9F86-40E8-BA9B-D27BF3AC7970}.Release|Any CPU.ActiveCfg = Release|Any CPU
31+
{0F9B9BC6-9F86-40E8-BA9B-D27BF3AC7970}.Release|Any CPU.Build.0 = Release|Any CPU
32+
EndGlobalSection
33+
GlobalSection(SolutionProperties) = preSolution
34+
HideSolutionNode = FALSE
35+
EndGlobalSection
36+
GlobalSection(ExtensibilityGlobals) = postSolution
37+
SolutionGuid = {B99E6BB8-642A-4A68-86DF-69567CBA700A}
38+
EndGlobalSection
39+
EndGlobal

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.
2+
For more information, see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).

0 commit comments

Comments
 (0)