Skip to content

Commit 991c253

Browse files
author
Travis Illig
committed
Updated project configuration settings.
1 parent b64331a commit 991c253

6 files changed

Lines changed: 138 additions & 66 deletions

File tree

.editorconfig

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
; EditorConfig to support per-solution formatting.
2+
; Use the EditorConfig VS add-in to make this work.
3+
; http://editorconfig.org/
4+
5+
; This is the default for the codeline.
6+
root = true
7+
8+
[*]
9+
end_of_line = CRLF
10+
11+
[*.{config,cs,xml}]
12+
indent_style = space
13+
indent_size = 4
14+
trim_trailing_whitespace = true
15+
16+
[*.{proj,props,sln,targets}]
17+
indent_style = tab
18+
trim_trailing_whitespace = true
19+
20+
[*.{kproj,csproj,json,ps1,psd1,psm1,resx,rst}]
21+
indent_style = space
22+
indent_size = 2
23+
trim_trailing_whitespace = true
24+
25+
[NuGet.Config]
26+
indent_style = space
27+
indent_size = 2
28+
trim_trailing_whitespace = true

.gitattributes

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
*.doc diff=astextplain
2+
*.DOC diff=astextplain
3+
*.docx diff=astextplain
4+
*.DOCX diff=astextplain
5+
*.dot diff=astextplain
6+
*.DOT diff=astextplain
7+
*.pdf diff=astextplain
8+
*.PDF diff=astextplain
9+
*.rtf diff=astextplain
10+
*.RTF diff=astextplain
11+
12+
*.jpg binary
13+
*.png binary
14+
*.gif binary
15+
16+
*.cs text=auto diff=csharp
17+
*.vb text=auto
18+
*.resx text=auto
19+
*.c text=auto
20+
*.cpp text=auto
21+
*.cxx text=auto
22+
*.h text=auto
23+
*.hxx text=auto
24+
*.py text=auto
25+
*.rb text=auto
26+
*.java text=auto
27+
*.html text=auto
28+
*.htm text=auto
29+
*.css text=auto
30+
*.scss text=auto
31+
*.sass text=auto
32+
*.less text=auto
33+
*.js text=auto
34+
*.lisp text=auto
35+
*.clj text=auto
36+
*.sql text=auto
37+
*.php text=auto
38+
*.lua text=auto
39+
*.m text=auto
40+
*.asm text=auto
41+
*.erl text=auto
42+
*.fs text=auto
43+
*.fsx text=auto
44+
*.hs text=auto
45+
46+
*.csproj text=auto
47+
*.vbproj text=auto
48+
*.fsproj text=auto
49+
*.dbproj text=auto
50+
*.sln text=auto eol=crlf

.gitignore

Lines changed: 43 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,39 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
33

4+
# Project specific files
5+
artifacts/
6+
47
# User-specific files
58
*.suo
69
*.user
710
*.sln.docstates
11+
*.ide
12+
Index.dat
13+
Storage.dat
814

915
# Build results
1016
[Dd]ebug/
11-
[Dd]ebugPublic/
1217
[Rr]elease/
13-
[Rr]eleases/
1418
x64/
15-
x86/
16-
build/
17-
bld/
1819
[Bb]in/
1920
[Oo]bj/
2021

21-
# Roslyn cache directories
22-
*.ide/
22+
# Visual Studio 2015 cache/options directory
23+
.dotnet/
24+
.vs/
25+
.vscode/
26+
27+
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
28+
!packages/*/build/
2329

2430
# MSTest test Results
2531
[Tt]est[Rr]esult*/
2632
[Bb]uild[Ll]og.*
27-
28-
#NUNIT
29-
*.VisualState.xml
30-
TestResult.xml
31-
32-
# Build Results of an ATL Project
33-
[Dd]ebugPS/
34-
[Rr]eleasePS/
35-
dlldata.c
33+
*.TestResults.xml
3634

3735
*_i.c
3836
*_p.c
39-
*_i.h
4037
*.ilk
4138
*.meta
4239
*.obj
@@ -56,12 +53,9 @@ dlldata.c
5653
*.vssscc
5754
.builds
5855
*.pidb
59-
*.svclog
56+
*.log
6057
*.scc
6158

62-
# Chutzpah Test files
63-
_Chutzpah*
64-
6559
# Visual C++ cache files
6660
ipch/
6761
*.aps
@@ -75,19 +69,12 @@ ipch/
7569
*.vsp
7670
*.vspx
7771

78-
# TFS 2012 Local Workspace
79-
$tf/
80-
8172
# Guidance Automation Toolkit
8273
*.gpState
8374

8475
# ReSharper is a .NET coding add-in
8576
_ReSharper*/
8677
*.[Rr]e[Ss]harper
87-
*.DotSettings.user
88-
89-
# JustCode is a .NET coding addin-in
90-
.JustCode
9178

9279
# TeamCity is a build add-in
9380
_TeamCity*
@@ -96,16 +83,9 @@ _TeamCity*
9683
*.dotCover
9784

9885
# NCrunch
99-
_NCrunch_*
86+
*.ncrunch*
10087
.*crunch*.local.xml
10188

102-
# MightyMoose
103-
*.mm.*
104-
AutoTest.Net/
105-
106-
# Web workbench (sass)
107-
.sass-cache/
108-
10989
# Installshield output folder
11090
[Ee]xpress/
11191

@@ -124,23 +104,14 @@ publish/
124104

125105
# Publish Web Output
126106
*.[Pp]ublish.xml
127-
*.azurePubxml
128-
# TODO: Comment the next line if you want to checkin your web deploy settings
129-
# but database connection strings (with potential passwords) will be unencrypted
130107
*.pubxml
131-
*.publishproj
132108

133-
# NuGet Packages
134-
*.nupkg
135-
# The packages folder can be ignored because of Package Restore
136-
/packages/*
137-
# except build/, which is used as an MSBuild target.
138-
!**/packages/build/
139-
# If using the old MSBuild-Integrated Package Restore, uncomment this:
140-
#!**/packages/repositories.config
109+
# NuGet Packages Directory
110+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
111+
packages/
141112

142113
# Windows Azure Build Output
143-
csx/
114+
csx
144115
*.build.csdef
145116

146117
# Windows Store app package directory
@@ -151,33 +122,44 @@ sql/
151122
*.Cache
152123
ClientBin/
153124
[Ss]tyle[Cc]op.*
125+
!stylecop.json
154126
~$*
155127
*~
156128
*.dbmdl
157-
*.dbproj.schemaview
158129
*.pfx
159130
*.publishsettings
160131
node_modules/
132+
bower_components/
133+
wwwroot/
134+
project.lock.json
161135

162136
# RIA/Silverlight projects
163137
Generated_Code/
164138

165-
# Backup & report files from converting an old project file
166-
# to a newer Visual Studio version. Backup files are not needed,
167-
# because we have git ;-)
139+
# Backup & report files from converting an old project file to a newer
140+
# Visual Studio version. Backup files are not needed, because we have git ;-)
168141
_UpgradeReport_Files/
169142
Backup*/
170143
UpgradeLog*.XML
171144
UpgradeLog*.htm
172145

173146
# SQL Server files
174-
*.mdf
175-
*.ldf
147+
App_Data/*.mdf
148+
App_Data/*.ldf
149+
150+
# =========================
151+
# Windows detritus
152+
# =========================
153+
154+
# Windows image file caches
155+
Thumbs.db
156+
ehthumbs.db
157+
158+
# Folder config file
159+
Desktop.ini
176160

177-
# Business Intelligence projects
178-
*.rdl.data
179-
*.bim.layout
180-
*.bim_*.settings
161+
# Recycle Bin used on file shares
162+
$RECYCLE.BIN/
181163

182-
# Microsoft Fakes
183-
FakesAssemblies/
164+
# Mac crap
165+
.DS_Store

NuGet.Config

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<clear/>
5+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
6+
<add key="Xunit MyGet" value="https://myget.org/F/xunit/api/v3/index.json" />
7+
</packageSources>
8+
<disabledPackageSources>
9+
<add key="Microsoft and .NET" value="true" />
10+
</disabledPackageSources>
11+
</configuration>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ FakeItEasy auto mocking integration for [Autofac](http://autofac.org).
66

77
Please file issues and pull requests for this package in this repository rather than in the Autofac core repo.
88

9-
- [Documentation](http://autofac.readthedocs.org/en/latest/integration/fakeiteasy.html)
9+
- [Documentation](http://autofac.readthedocs.io/en/latest/integration/fakeiteasy.html)
1010
- [NuGet](https://www.nuget.org/packages/Autofac.Extras.FakeItEasy)
11-
- [Contributing](http://autofac.readthedocs.org/en/latest/contributors.html)
11+
- [Contributing](http://autofac.readthedocs.io/en/latest/contributors.html)

appveyor.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ assembly_info:
1313

1414
configuration: Release
1515

16-
before_build: nuget restore
16+
before_build:
17+
- nuget restore
1718

1819
build:
1920
verbosity: minimal
@@ -22,7 +23,7 @@ build:
2223

2324
deploy:
2425
- provider: NuGet
25-
server: https://www.myget.org/F/autofac/
26+
server: https://www.myget.org/F/autofac/api/v2/package
2627
api_key:
2728
secure: rCUEY75fXN0wxtMy6QL4jCrLdaYbxIBzIXWeN+wEu/XDpyqimzreOc5AH5jMd5ah
28-
symbol_server: https://nuget.symbolsource.org/MyGet/autofac
29+
symbol_server: https://www.myget.org/F/autofac/symbols/api/v2/package

0 commit comments

Comments
 (0)