嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
使用spring.net实现依赖注入
在C#控制台程序中使用spring.net框架实现依赖注入,并分别演示了构造函数注入和属性注入两种方式。
.
├── SpringDemo
│ ├── App.config
│ ├── Container.cs
│ ├── Dao
│ │ ├── IUserDao.cs
│ │ └── UserDao.cs
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Service
│ │ ├── IUserService.cs
│ │ ├── UserBLL.cs
│ │ └── UserService.cs
│ ├── SpringDemo.csproj
│ ├── SpringDemo.csproj.user
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Common.Logging.Core.dll
│ │ │ ├── Common.Logging.Core.pdb
│ │ │ ├── Common.Logging.Core.xml
│ │ │ ├── Common.Logging.dll
│ │ │ ├── Common.Logging.pdb
│ │ │ ├── Common.Logging.xml
│ │ │ ├── Microsoft.Bcl.HashCode.dll
│ │ │ ├── Microsoft.Bcl.HashCode.xml
│ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ ├── Microsoft.Win32.Registry.xml
│ │ │ ├── Spring.Core.dll
│ │ │ ├── SpringDemo.exe
│ │ │ ├── SpringDemo.exe.config
│ │ │ ├── SpringDemo.pdb
│ │ │ ├── System.CodeDom.dll
│ │ │ ├── System.CodeDom.xml
│ │ │ ├── System.Configuration.ConfigurationManager.dll
│ │ │ ├── System.Configuration.ConfigurationManager.xml
│ │ │ ├── System.Security.AccessControl.dll
│ │ │ ├── System.Security.AccessControl.xml
│ │ │ ├── System.Security.Permissions.dll
│ │ │ ├── System.Security.Permissions.xml
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ └── Release
│ ├── obj
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── SpringDemo.csproj.CopyComplete
│ │ ├── SpringDemo.csproj.CoreCompileInputs.cache
│ │ ├── SpringDemo.csproj.FileListAbsolute.txt
│ │ ├── SpringDemo.csprojAssemblyReference.cache
│ │ ├── SpringDemo.exe
│ │ ├── SpringDemo.pdb
│ │ ├── TempPE
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ └── packages.config
├── SpringDemo.sln
├── packages
│ ├── Common.Logging.3.4.1
│ │ ├── Common.Logging.3.4.1.nupkg
│ │ └── lib
│ │ ├── net35
│ │ │ ├── Common.Logging.dll
│ │ │ ├── Common.Logging.pdb
│ │ │ └── Common.Logging.xml
│ │ ├── net40
│ │ │ ├── Common.Logging.dll
│ │ │ ├── Common.Logging.pdb
│ │ │ └── Common.Logging.xml
│ │ └── netstandard1.3
│ │ ├── Common.Logging.dll
│ │ ├── Common.Logging.pdb
│ │ └── Common.Logging.xml
│ ├── Common.Logging.Core.3.4.1
│ │ ├── Common.Logging.Core.3.4.1.nupkg
│ │ └── lib
│ │ ├── net40
│ │ │ ├── Common.Logging.Core.XML
│ │ │ ├── Common.Logging.Core.dll
│ │ │ └── Common.Logging.Core.pdb
│ │ ├── netstandard1.0
│ │ │ ├── Common.Logging.Core.dll
│ │ │ ├── Common.Logging.Core.pdb
│ │ │ └── Common.Logging.Core.xml
│ │ └── portable-win net40 sl40 wp7 wpa81
│ │ ├── Common.Logging.Core.XML
│ │ ├── Common.Logging.Core.dll
│ │ └── Common.Logging.Core.pdb
│ ├── Microsoft.Bcl.HashCode.1.1.1
│ │ ├── Icon.png
│ │ ├── LICENSE.TXT
│ │ ├── Microsoft.Bcl.HashCode.1.1.1.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── lib
│ │ │ ├── net461
│ │ │ │ ├── Microsoft.Bcl.HashCode.dll
│ │ │ │ └── Microsoft.Bcl.HashCode.xml
│ │ │ ├── netcoreapp2.1
│ │ │ │ ├── Microsoft.Bcl.HashCode.dll
│ │ │ │ └── Microsoft.Bcl.HashCode.xml
│ │ │ ├── netstandard2.0
│ │ │ │ ├── Microsoft.Bcl.HashCode.dll
│ │ │ │ └── Microsoft.Bcl.HashCode.xml
│ │ │ └── netstandard2.1
│ │ │ ├── Microsoft.Bcl.HashCode.dll
│ │ │ └── Microsoft.Bcl.HashCode.xml
│ │ ├── ref
│ │ │ ├── net461
│ │ │ │ └── Microsoft.Bcl.HashCode.dll
│ │ │ ├── netcoreapp2.1
│ │ │ │ └── Microsoft.Bcl.HashCode.dll
│ │ │ ├── netstandard2.0
│ │ │ │ └── Microsoft.Bcl.HashCode.dll
│ │ │ └── netstandard2.1
│ │ │ └── Microsoft.Bcl.HashCode.dll
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── Microsoft.CSharp.4.7.0
│ │ ├── LICENSE.TXT
│ │ ├── Microsoft.CSharp.4.7.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── netcore50
│ │ │ │ └── Microsoft.CSharp.dll
│ │ │ ├── netcoreapp2.0
│ │ │ │ └── _._
│ │ │ ├── netstandard1.3
│ │ │ │ └── Microsoft.CSharp.dll
│ │ │ ├── netstandard2.0
│ │ │ │ ├── Microsoft.CSharp.dll
│ │ │ │ └── Microsoft.CSharp.xml
│ │ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ │ └── _._
│ │ │ ├── uap10.0.16299
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── netcore50
│ │ │ │ ├── Microsoft.CSharp.dll
│ │ │ │ ├── Microsoft.CSharp.xml
│ │ │ │ ├── de
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── es
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── it
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── Microsoft.CSharp.xml
│ │ │ ├── netcoreapp2.0
│ │ │ │ └── _._
│ │ │ ├── netstandard1.0
│ │ │ │ ├── Microsoft.CSharp.dll
│ │ │ │ ├── Microsoft.CSharp.xml
│ │ │ │ ├── de
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── es
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── it
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── Microsoft.CSharp.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── Microsoft.CSharp.xml
│ │ │ ├── netstandard2.0
│ │ │ │ ├── Microsoft.CSharp.dll
│ │ │ │ └── Microsoft.CSharp.xml
│ │ │ ├── portable-net45 win8 wp8 wpa81
│ │ │ │ └── _._
│ │ │ ├── uap10.0.16299
│ │ │ │ └── _._
│ │ │ ├── win8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── wpa81
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── Microsoft.Win32.Registry.4.7.0
│ │ ├── LICENSE.TXT
│ │ ├── Microsoft.Win32.Registry.4.7.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── lib
│ │ │ ├── net46
│ │ │ │ └── Microsoft.Win32.Registry.dll
│ │ │ ├── net461
│ │ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ ├── netstandard1.3
│ │ │ │ └── Microsoft.Win32.Registry.dll
│ │ │ └── netstandard2.0
│ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ └── Microsoft.Win32.Registry.xml
│ │ ├── ref
│ │ │ ├── net46
│ │ │ │ └── Microsoft.Win32.Registry.dll
│ │ │ ├── net461
│ │ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ ├── net472
│ │ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ ├── netstandard1.3
│ │ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ │ ├── Microsoft.Win32.Registry.xml
│ │ │ │ ├── de
│ │ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ │ ├── es
│ │ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ │ ├── it
│ │ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ └── netstandard2.0
│ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ └── Microsoft.Win32.Registry.xml
│ │ ├── runtimes
│ │ │ ├── unix
│ │ │ │ └── lib
│ │ │ │ └── netstandard2.0
│ │ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ └── win
│ │ │ └── lib
│ │ │ ├── net46
│ │ │ │ └── Microsoft.Win32.Registry.dll
│ │ │ ├── net461
│ │ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ │ └── Microsoft.Win32.Registry.xml
│ │ │ ├── netstandard1.3
│ │ │ │ └── Microsoft.Win32.Registry.dll
│ │ │ └── netstandard2.0
│ │ │ ├── Microsoft.Win32.Registry.dll
│ │ │ └── Microsoft.Win32.Registry.xml
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── Spring.Core.3.0.0
│ │ ├── Spring.Core.3.0.0.nupkg
│ │ ├── SpringSource_Leaves32x32.png
│ │ └── lib
│ │ ├── net461
│ │ │ └── Spring.Core.dll
│ │ └── netstandard2.0
│ │ └── Spring.Core.dll
│ ├── System.CodeDom.4.7.0
│ │ ├── LICENSE.TXT
│ │ ├── System.CodeDom.4.7.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── lib
│ │ │ ├── net461
│ │ │ │ ├── System.CodeDom.dll
│ │ │ │ └── System.CodeDom.xml
│ │ │ └── netstandard2.0
│ │ │ ├── System.CodeDom.dll
│ │ │ └── System.CodeDom.xml
│ │ ├── ref
│ │ │ ├── net461
│ │ │ │ ├── System.CodeDom.dll
│ │ │ │ └── System.CodeDom.xml
│ │ │ └── netstandard2.0
│ │ │ ├── System.CodeDom.dll
│ │ │ └── System.CodeDom.xml
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── System.Configuration.ConfigurationManager.4.7.0
│ │ ├── LICENSE.TXT
│ │ ├── System.Configuration.ConfigurationManager.4.7.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── lib
│ │ │ ├── net461
│ │ │ │ ├── System.Configuration.ConfigurationManager.dll
│ │ │ │ └── System.Configuration.ConfigurationManager.xml
│ │ │ └── netstandard2.0
│ │ │ ├── System.Configuration.ConfigurationManager.dll
│ │ │ └── System.Configuration.ConfigurationManager.xml
│ │ ├── ref
│ │ │ ├── net461
│ │ │ │ ├── System.Configuration.ConfigurationManager.dll
│ │ │ │ └── System.Configuration.ConfigurationManager.xml
│ │ │ └── netstandard2.0
│ │ │ ├── System.Configuration.ConfigurationManager.dll
│ │ │ └── System.Configuration.ConfigurationManager.xml
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── System.Reflection.Emit.4.7.0
│ │ ├── LICENSE.TXT
│ │ ├── System.Reflection.Emit.4.7.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── netcore50
│ │ │ │ └── System.Reflection.Emit.dll
│ │ │ ├── netcoreapp2.0
│ │ │ │ └── _._
│ │ │ ├── netstandard1.1
│ │ │ │ ├── System.Reflection.Emit.dll
│ │ │ │ └── System.Reflection.Emit.xml
│ │ │ ├── netstandard1.3
│ │ │ │ └── System.Reflection.Emit.dll
│ │ │ ├── netstandard2.0
│ │ │ │ ├── System.Reflection.Emit.dll
│ │ │ │ └── System.Reflection.Emit.xml
│ │ │ ├── netstandard2.1
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── netcoreapp2.0
│ │ │ │ └── _._
│ │ │ ├── netstandard1.1
│ │ │ │ ├── System.Reflection.Emit.dll
│ │ │ │ ├── System.Reflection.Emit.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Reflection.Emit.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Reflection.Emit.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Reflection.Emit.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Reflection.Emit.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Reflection.Emit.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Reflection.Emit.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Reflection.Emit.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Reflection.Emit.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Reflection.Emit.xml
│ │ │ ├── netstandard2.0
│ │ │ │ ├── System.Reflection.Emit.dll
│ │ │ │ └── System.Reflection.Emit.xml
│ │ │ ├── netstandard2.1
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── runtimes
│ │ │ └── aot
│ │ │ └── lib
│ │ │ └── netcore50
│ │ │ ├── System.Reflection.Emit.dll
│ │ │ └── System.Reflection.Emit.xml
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── System.Reflection.Emit.Lightweight.4.7.0
│ │ ├── LICENSE.TXT
│ │ ├── System.Reflection.Emit.Lightweight.4.7.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── lib
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── netcore50
│ │ │ │ └── System.Reflection.Emit.Lightweight.dll
│ │ │ ├── netcoreapp2.0
│ │ │ │ └── _._
│ │ │ ├── netstandard1.0
│ │ │ │ ├── System.Reflection.Emit.Lightweight.dll
│ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ ├── netstandard1.3
│ │ │ │ └── System.Reflection.Emit.Lightweight.dll
│ │ │ ├── netstandard2.0
│ │ │ │ ├── System.Reflection.Emit.Lightweight.dll
│ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ ├── netstandard2.1
│ │ │ │ └── _._
│ │ │ ├── portable-net45 wp8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── MonoAndroid10
│ │ │ │ └── _._
│ │ │ ├── MonoTouch10
│ │ │ │ └── _._
│ │ │ ├── net45
│ │ │ │ └── _._
│ │ │ ├── netcoreapp2.0
│ │ │ │ └── _._
│ │ │ ├── netstandard1.0
│ │ │ │ ├── System.Reflection.Emit.Lightweight.dll
│ │ │ │ ├── System.Reflection.Emit.Lightweight.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ ├── netstandard2.0
│ │ │ │ ├── System.Reflection.Emit.Lightweight.dll
│ │ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ │ ├── netstandard2.1
│ │ │ │ └── _._
│ │ │ ├── portable-net45 wp8
│ │ │ │ └── _._
│ │ │ ├── wp80
│ │ │ │ └── _._
│ │ │ ├── xamarinios10
│ │ │ │ └── _._
│ │ │ ├── xamarinmac20
│ │ │ │ └── _._
│ │ │ ├── xamarintvos10
│ │ │ │ └── _._
│ │ │ └── xamarinwatchos10
│ │ │ └── _._
│ │ ├── runtimes
│ │ │ └── aot
│ │ │ └── lib
│ │ │ └── netcore50
│ │ │ ├── System.Reflection.Emit.Lightweight.dll
│ │ │ └── System.Reflection.Emit.Lightweight.xml
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── System.Security.AccessControl.4.7.0
│ │ ├── LICENSE.TXT
│ │ ├── System.Security.AccessControl.4.7.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── lib
│ │ │ ├── net46
│ │ │ │ └── System.Security.AccessControl.dll
│ │ │ ├── net461
│ │ │ │ ├── System.Security.AccessControl.dll
│ │ │ │ └── System.Security.AccessControl.xml
│ │ │ ├── netstandard1.3
│ │ │ │ └── System.Security.AccessControl.dll
│ │ │ ├── netstandard2.0
│ │ │ │ ├── System.Security.AccessControl.dll
│ │ │ │ └── System.Security.AccessControl.xml
│ │ │ └── uap10.0.16299
│ │ │ └── _._
│ │ ├── ref
│ │ │ ├── net46
│ │ │ │ └── System.Security.AccessControl.dll
│ │ │ ├── net461
│ │ │ │ ├── System.Security.AccessControl.dll
│ │ │ │ └── System.Security.AccessControl.xml
│ │ │ ├── netstandard1.3
│ │ │ │ ├── System.Security.AccessControl.dll
│ │ │ │ ├── System.Security.AccessControl.xml
│ │ │ │ ├── de
│ │ │ │ │ └── System.Security.AccessControl.xml
│ │ │ │ ├── es
│ │ │ │ │ └── System.Security.AccessControl.xml
│ │ │ │ ├── fr
│ │ │ │ │ └── System.Security.AccessControl.xml
│ │ │ │ ├── it
│ │ │ │ │ └── System.Security.AccessControl.xml
│ │ │ │ ├── ja
│ │ │ │ │ └── System.Security.AccessControl.xml
│ │ │ │ ├── ko
│ │ │ │ │ └── System.Security.AccessControl.xml
│ │ │ │ ├── ru
│ │ │ │ │ └── System.Security.AccessControl.xml
│ │ │ │ ├── zh-hans
│ │ │ │ │ └── System.Security.AccessControl.xml
│ │ │ │ └── zh-hant
│ │ │ │ └── System.Security.AccessControl.xml
│ │ │ ├── netstandard2.0
│ │ │ │ ├── System.Security.AccessControl.dll
│ │ │ │ └── System.Security.AccessControl.xml
│ │ │ └── uap10.0.16299
│ │ │ └── _._
│ │ ├── runtimes
│ │ │ └── win
│ │ │ └── lib
│ │ │ ├── net46
│ │ │ │ └── System.Security.AccessControl.dll
│ │ │ ├── net461
│ │ │ │ ├── System.Security.AccessControl.dll
│ │ │ │ └── System.Security.AccessControl.xml
│ │ │ ├── netcoreapp2.0
│ │ │ │ ├── System.Security.AccessControl.dll
│ │ │ │ └── System.Security.AccessControl.xml
│ │ │ ├── netstandard1.3
│ │ │ │ └── System.Security.AccessControl.dll
│ │ │ └── uap10.0.16299
│ │ │ └── _._
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ ├── System.Security.Permissions.4.7.0
│ │ ├── LICENSE.TXT
│ │ ├── System.Security.Permissions.4.7.0.nupkg
│ │ ├── THIRD-PARTY-NOTICES.TXT
│ │ ├── lib
│ │ │ ├── net461
│ │ │ │ ├── System.Security.Permissions.dll
│ │ │ │ └── System.Security.Permissions.xml
│ │ │ ├── netcoreapp3.0
│ │ │ │ ├── System.Security.Permissions.dll
│ │ │ │ └── System.Security.Permissions.xml
│ │ │ └── netstandard2.0
│ │ │ ├── System.Security.Permissions.dll
│ │ │ └── System.Security.Permissions.xml
│ │ ├── ref
│ │ │ ├── net461
│ │ │ │ ├── System.Security.Permissions.dll
│ │ │ │ └── System.Security.Permissions.xml
│ │ │ ├── netcoreapp3.0
│ │ │ │ ├── System.Security.Permissions.dll
│ │ │ │ └── System.Security.Permissions.xml
│ │ │ └── netstandard2.0
│ │ │ ├── System.Security.Permissions.dll
│ │ │ └── System.Security.Permissions.xml
│ │ ├── useSharedDesignerContext.txt
│ │ └── version.txt
│ └── System.Security.Principal.Windows.4.7.0
│ ├── LICENSE.TXT
│ ├── System.Security.Principal.Windows.4.7.0.nupkg
│ ├── THIRD-PARTY-NOTICES.TXT
│ ├── lib
│ │ ├── net46
│ │ │ └── System.Security.Principal.Windows.dll
│ │ ├── net461
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ ├── netstandard1.3
│ │ │ └── System.Security.Principal.Windows.dll
│ │ ├── netstandard2.0
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ └── uap10.0.16299
│ │ └── _._
│ ├── ref
│ │ ├── net46
│ │ │ └── System.Security.Principal.Windows.dll
│ │ ├── net461
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ ├── netcoreapp3.0
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ ├── netstandard1.3
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ ├── System.Security.Principal.Windows.xml
│ │ │ ├── de
│ │ │ │ └── System.Security.Principal.Windows.xml
│ │ │ ├── es
│ │ │ │ └── System.Security.Principal.Windows.xml
│ │ │ ├── fr
│ │ │ │ └── System.Security.Principal.Windows.xml
│ │ │ ├── it
│ │ │ │ └── System.Security.Principal.Windows.xml
│ │ │ ├── ja
│ │ │ │ └── System.Security.Principal.Windows.xml
│ │ │ ├── ko
│ │ │ │ └── System.Security.Principal.Windows.xml
│ │ │ ├── ru
│ │ │ │ └── System.Security.Principal.Windows.xml
│ │ │ ├── zh-hans
│ │ │ │ └── System.Security.Principal.Windows.xml
│ │ │ └── zh-hant
│ │ │ └── System.Security.Principal.Windows.xml
│ │ ├── netstandard2.0
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ └── uap10.0.16299
│ │ └── _._
│ ├── runtimes
│ │ ├── unix
│ │ │ └── lib
│ │ │ ├── netcoreapp2.0
│ │ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ │ └── System.Security.Principal.Windows.xml
│ │ │ └── netcoreapp2.1
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ └── win
│ │ └── lib
│ │ ├── net46
│ │ │ └── System.Security.Principal.Windows.dll
│ │ ├── net461
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ ├── netcoreapp2.0
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ ├── netcoreapp2.1
│ │ │ ├── System.Security.Principal.Windows.dll
│ │ │ └── System.Security.Principal.Windows.xml
│ │ ├── netstandard1.3
│ │ │ └── System.Security.Principal.Windows.dll
│ │ └── uap10.0.16299
│ │ └── _._
│ ├── useSharedDesignerContext.txt
│ └── version.txt
└── 好例子网_SpringDemo.rar
293 directories, 401 files