Skip to content

Commit 1566ba2

Browse files
authored
Merge pull request #32 from alsami/develop
feat: update to Autofac 5.1.0
2 parents 6fb3c7c + b9ecbd2 commit 1566ba2

File tree

11 files changed

+251
-274
lines changed

11 files changed

+251
-274
lines changed

.gitignore

Lines changed: 170 additions & 167 deletions
Original file line numberDiff line numberDiff line change
@@ -1,167 +1,170 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
3-
4-
# Project specific files
5-
artifacts/
6-
7-
# User-specific files
8-
*.suo
9-
*.user
10-
*.sln.docstates
11-
*.ide
12-
Index.dat
13-
Storage.dat
14-
15-
# Build results
16-
[Dd]ebug/
17-
[Rr]elease/
18-
x64/
19-
[Bb]in/
20-
[Oo]bj/
21-
22-
# Visual Studio 2015 cache/options directory
23-
.dotnet/
24-
.vs/
25-
.vscode/
26-
.cr/
27-
28-
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
29-
!packages/*/build/
30-
31-
# MSTest test Results
32-
[Tt]est[Rr]esult*/
33-
[Bb]uild[Ll]og.*
34-
*.TestResults.xml
35-
results/
36-
37-
*_i.c
38-
*_p.c
39-
*.ilk
40-
*.meta
41-
*.obj
42-
*.pch
43-
*.pdb
44-
*.pgc
45-
*.pgd
46-
*.rsp
47-
*.sbr
48-
*.tlb
49-
*.tli
50-
*.tlh
51-
*.tmp
52-
*.tmp_proj
53-
*.log
54-
*.vspscc
55-
*.vssscc
56-
.builds
57-
*.pidb
58-
*.log
59-
*.scc
60-
61-
# Visual C++ cache files
62-
ipch/
63-
*.aps
64-
*.ncb
65-
*.opensdf
66-
*.sdf
67-
*.cachefile
68-
69-
# Visual Studio profiler
70-
*.psess
71-
*.vsp
72-
*.vspx
73-
74-
# Guidance Automation Toolkit
75-
*.gpState
76-
77-
# ReSharper is a .NET coding add-in
78-
_ReSharper*/
79-
*.[Rr]e[Ss]harper
80-
81-
# TeamCity is a build add-in
82-
_TeamCity*
83-
84-
# DotCover is a Code Coverage Tool
85-
*.dotCover
86-
87-
# NCrunch
88-
*.ncrunch*
89-
.*crunch*.local.xml
90-
91-
# Installshield output folder
92-
[Ee]xpress/
93-
94-
# DocProject is a documentation generator add-in
95-
DocProject/buildhelp/
96-
DocProject/Help/*.HxT
97-
DocProject/Help/*.HxC
98-
DocProject/Help/*.hhc
99-
DocProject/Help/*.hhk
100-
DocProject/Help/*.hhp
101-
DocProject/Help/Html2
102-
DocProject/Help/html
103-
104-
# Click-Once directory
105-
publish/
106-
107-
# Publish Web Output
108-
*.[Pp]ublish.xml
109-
*.pubxml
110-
111-
# NuGet Packages Directory
112-
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
113-
packages/
114-
115-
# Windows Azure Build Output
116-
csx
117-
*.build.csdef
118-
119-
# Windows Store app package directory
120-
AppPackages/
121-
122-
# Others
123-
sql/
124-
*.Cache
125-
ClientBin/
126-
[Ss]tyle[Cc]op.*
127-
!stylecop.json
128-
~$*
129-
*~
130-
*.dbmdl
131-
*.pfx
132-
*.publishsettings
133-
node_modules/
134-
bower_components/
135-
wwwroot/
136-
project.lock.json
137-
138-
# RIA/Silverlight projects
139-
Generated_Code/
140-
141-
# Backup & report files from converting an old project file to a newer
142-
# Visual Studio version. Backup files are not needed, because we have git ;-)
143-
_UpgradeReport_Files/
144-
Backup*/
145-
UpgradeLog*.XML
146-
UpgradeLog*.htm
147-
148-
# SQL Server files
149-
App_Data/*.mdf
150-
App_Data/*.ldf
151-
152-
# =========================
153-
# Windows detritus
154-
# =========================
155-
156-
# Windows image file caches
157-
Thumbs.db
158-
ehthumbs.db
159-
160-
# Folder config file
161-
Desktop.ini
162-
163-
# Recycle Bin used on file shares
164-
$RECYCLE.BIN/
165-
166-
# Mac crap
167-
.DS_Store
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# Project specific files
5+
artifacts/
6+
7+
# User-specific files
8+
*.suo
9+
*.user
10+
*.sln.docstates
11+
*.ide
12+
Index.dat
13+
Storage.dat
14+
15+
# Build results
16+
[Dd]ebug/
17+
[Rr]elease/
18+
x64/
19+
[Bb]in/
20+
[Oo]bj/
21+
22+
# Visual Studio 2015 cache/options directory
23+
.dotnet/
24+
.vs/
25+
.vscode/
26+
.cr/
27+
28+
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
29+
!packages/*/build/
30+
31+
# MSTest test Results
32+
[Tt]est[Rr]esult*/
33+
[Bb]uild[Ll]og.*
34+
*.TestResults.xml
35+
results/
36+
37+
*_i.c
38+
*_p.c
39+
*.ilk
40+
*.meta
41+
*.obj
42+
*.pch
43+
*.pdb
44+
*.pgc
45+
*.pgd
46+
*.rsp
47+
*.sbr
48+
*.tlb
49+
*.tli
50+
*.tlh
51+
*.tmp
52+
*.tmp_proj
53+
*.log
54+
*.vspscc
55+
*.vssscc
56+
.builds
57+
*.pidb
58+
*.log
59+
*.scc
60+
61+
# Visual C++ cache files
62+
ipch/
63+
*.aps
64+
*.ncb
65+
*.opensdf
66+
*.sdf
67+
*.cachefile
68+
69+
# Visual Studio profiler
70+
*.psess
71+
*.vsp
72+
*.vspx
73+
74+
# Guidance Automation Toolkit
75+
*.gpState
76+
77+
# ReSharper is a .NET coding add-in
78+
_ReSharper*/
79+
*.[Rr]e[Ss]harper
80+
81+
# TeamCity is a build add-in
82+
_TeamCity*
83+
84+
# DotCover is a Code Coverage Tool
85+
*.dotCover
86+
87+
# NCrunch
88+
*.ncrunch*
89+
.*crunch*.local.xml
90+
91+
# Installshield output folder
92+
[Ee]xpress/
93+
94+
# DocProject is a documentation generator add-in
95+
DocProject/buildhelp/
96+
DocProject/Help/*.HxT
97+
DocProject/Help/*.HxC
98+
DocProject/Help/*.hhc
99+
DocProject/Help/*.hhk
100+
DocProject/Help/*.hhp
101+
DocProject/Help/Html2
102+
DocProject/Help/html
103+
104+
# Click-Once directory
105+
publish/
106+
107+
# Publish Web Output
108+
*.[Pp]ublish.xml
109+
*.pubxml
110+
111+
# NuGet Packages Directory
112+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
113+
packages/
114+
115+
# Windows Azure Build Output
116+
csx
117+
*.build.csdef
118+
119+
# Windows Store app package directory
120+
AppPackages/
121+
122+
# Others
123+
sql/
124+
*.Cache
125+
ClientBin/
126+
[Ss]tyle[Cc]op.*
127+
!stylecop.json
128+
~$*
129+
*~
130+
*.dbmdl
131+
*.pfx
132+
*.publishsettings
133+
node_modules/
134+
bower_components/
135+
wwwroot/
136+
project.lock.json
137+
138+
# RIA/Silverlight projects
139+
Generated_Code/
140+
141+
# Backup & report files from converting an old project file to a newer
142+
# Visual Studio version. Backup files are not needed, because we have git ;-)
143+
_UpgradeReport_Files/
144+
Backup*/
145+
UpgradeLog*.XML
146+
UpgradeLog*.htm
147+
148+
# SQL Server files
149+
App_Data/*.mdf
150+
App_Data/*.ldf
151+
152+
# =========================
153+
# Windows detritus
154+
# =========================
155+
156+
# Windows image file caches
157+
Thumbs.db
158+
ehthumbs.db
159+
160+
# Folder config file
161+
Desktop.ini
162+
163+
# Recycle Bin used on file shares
164+
$RECYCLE.BIN/
165+
166+
# Mac crap
167+
.DS_Store
168+
169+
# JetBrains Rider
170+
.idea

Autofac.Extras.DynamicProxy.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1515
build.ps1 = build.ps1
1616
global.json = global.json
1717
NuGet.Config = NuGet.Config
18+
.gitignore = .gitignore
1819
EndProjectSection
1920
EndProject
2021
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Autofac.Extras.DynamicProxy.Benchmarks", "bench\Autofac.Extras.DynamicProxy.Benchmarks\Autofac.Extras.DynamicProxy.Benchmarks.csproj", "{5F022611-2C3D-49C8-A6CE-8B4EEA93D4F9}"

NuGet.Config

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +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" protocolVersion="3" />
7-
</packageSources>
8-
<disabledPackageSources>
9-
<add key="Microsoft and .NET" value="true" />
10-
</disabledPackageSources>
11-
</configuration>
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="autofac-myget" value="https://www.myget.org/F/autofac/api/v3/index.json" protocolVersion="3" />
7+
</packageSources>
8+
<disabledPackageSources>
9+
<add key="Microsoft and .NET" value="true" />
10+
</disabledPackageSources>
11+
</configuration>

0 commit comments

Comments
 (0)