├── .gitignore ├── ConfigCenter ├── ConfigCenter.Admin │ ├── App_Code │ │ ├── BaseConroller.cs │ │ └── ResponseResult.cs │ ├── App_Start │ │ └── RouteConfig.cs │ ├── ConfigCenter.Admin.csproj │ ├── ConfigCenter.Admin.csproj.user │ ├── Controllers │ │ ├── AppController.cs │ │ └── AppSettingController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Script │ │ ├── jquery-1.7.1.intellisense.js │ │ ├── jquery-1.7.1.js │ │ └── jquery-1.7.1.min.js │ ├── Static │ │ ├── My97DatePicker │ │ │ ├── My97DatePicker.htm │ │ │ ├── WdatePicker.js │ │ │ ├── calendar.js │ │ │ ├── config.js │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── skin │ │ │ │ ├── WdatePicker.css │ │ │ │ ├── datePicker.gif │ │ │ │ ├── default │ │ │ │ │ ├── datepicker.css │ │ │ │ │ └── img.gif │ │ │ │ └── whyGreen │ │ │ │ │ ├── bg.jpg │ │ │ │ │ ├── datepicker.css │ │ │ │ │ └── img.gif │ │ │ └── 开发包 │ │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ │ ├── readme.txt │ │ │ │ └── skin │ │ │ │ ├── WdatePicker.css │ │ │ │ ├── datePicker.gif │ │ │ │ ├── default │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ │ │ └── whyGreen │ │ │ │ ├── bg.jpg │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── asset │ │ │ └── js │ │ │ │ └── esl │ │ │ │ ├── css.js │ │ │ │ ├── echarts.js │ │ │ │ ├── esl.js │ │ │ │ └── js.js │ │ │ ├── bootstrap-pagy.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.1.9.1.min.js │ │ │ └── jquery.tmpl.js │ ├── Views │ │ ├── App │ │ │ ├── Index.cshtml │ │ │ └── _AppTable.cshtml │ │ ├── AppSetting │ │ │ ├── Index.cshtml │ │ │ └── _AppTable.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── bin │ │ ├── AutoMapper.dll │ │ ├── AutoMapper.xml │ │ ├── ConfigCenter.Admin.dll │ │ ├── ConfigCenter.Admin.dll.config │ │ ├── ConfigCenter.Admin.pdb │ │ ├── ConfigCenter.Business.dll │ │ ├── ConfigCenter.Business.pdb │ │ ├── ConfigCenter.Common.dll │ │ ├── ConfigCenter.Common.pdb │ │ ├── ConfigCenter.Dto.dll │ │ ├── ConfigCenter.Dto.pdb │ │ ├── ConfigCenter.Repository.dll │ │ ├── ConfigCenter.Repository.pdb │ │ ├── ServiceStack.Client.dll │ │ ├── ServiceStack.Common.dll │ │ ├── ServiceStack.Interfaces.dll │ │ ├── ServiceStack.Text.dll │ │ ├── ServiceStack.dll │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.Mvc.dll │ │ ├── System.Web.Mvc.xml │ │ ├── System.Web.Razor.dll │ │ ├── System.Web.Razor.xml │ │ ├── System.Web.Webpages.Deployment.dll │ │ ├── System.Web.Webpages.Deployment.xml │ │ ├── System.Web.Webpages.Razor.dll │ │ ├── System.Web.Webpages.Razor.xml │ │ ├── System.Web.Webpages.dll │ │ ├── System.Web.Webpages.xml │ │ ├── Webdiyer.MvcPager.dll │ │ ├── Webdiyer.MvcPager.xml │ │ ├── ZooKeeperNet.dll │ │ ├── log4net.dll │ │ ├── log4net.xml │ │ ├── zh-CHS │ │ │ └── Webdiyer.MvcPager.resources.dll │ │ ├── zh-CHT │ │ │ └── Webdiyer.MvcPager.resources.dll │ │ └── zh-Hans │ │ │ ├── System.Web.Helpers.resources.dll │ │ │ ├── System.Web.Mvc.resources.dll │ │ │ ├── System.Web.Razor.resources.dll │ │ │ ├── System.Web.Webpages.Deployment.resources.dll │ │ │ ├── System.Web.Webpages.Razor.resources.dll │ │ │ └── System.Web.Webpages.resources.dll │ ├── obj │ │ └── Debug │ │ │ ├── ConfigCenter.Admin.csproj.FileListAbsolute.txt │ │ │ ├── ConfigCenter.Admin.csprojResolveAssemblyReference.cache │ │ │ ├── ConfigCenter.Admin.dll │ │ │ ├── ConfigCenter.Admin.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── ConfigCenter.Api │ ├── App_Start │ │ └── AppHost.cs │ ├── ConfigCenter.Api.csproj │ ├── ConfigCenter.Api.csproj.user │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Services │ │ └── ConfigCenterService.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── bin │ │ ├── AutoMapper.dll │ │ ├── AutoMapper.xml │ │ ├── ConfigCenter.Api.dll │ │ ├── ConfigCenter.Api.dll.config │ │ ├── ConfigCenter.Api.pdb │ │ ├── ConfigCenter.Business.dll │ │ ├── ConfigCenter.Business.pdb │ │ ├── ConfigCenter.Common.dll │ │ ├── ConfigCenter.Common.pdb │ │ ├── ConfigCenter.Dto.dll │ │ ├── ConfigCenter.Dto.pdb │ │ ├── ConfigCenter.Repository.dll │ │ ├── ConfigCenter.Repository.pdb │ │ ├── Microsoft.Web.Infrastructure.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── ServiceStack.Client.dll │ │ ├── ServiceStack.Client.xml │ │ ├── ServiceStack.Common.dll │ │ ├── ServiceStack.Common.xml │ │ ├── ServiceStack.Interfaces.dll │ │ ├── ServiceStack.Mvc.dll │ │ ├── ServiceStack.Mvc.xml │ │ ├── ServiceStack.Text.dll │ │ ├── ServiceStack.Text.xml │ │ ├── ServiceStack.dll │ │ ├── ServiceStack.xml │ │ ├── System.Net.Http.Formatting.dll │ │ ├── System.Net.Http.Formatting.xml │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.Http.WebHost.dll │ │ ├── System.Web.Http.WebHost.xml │ │ ├── System.Web.Http.dll │ │ ├── System.Web.Http.xml │ │ ├── System.Web.Mvc.dll │ │ ├── System.Web.Mvc.xml │ │ ├── System.Web.Razor.dll │ │ ├── System.Web.Razor.xml │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── System.Web.WebPages.Deployment.xml │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Web.WebPages.Razor.xml │ │ ├── System.Web.WebPages.dll │ │ ├── System.Web.WebPages.xml │ │ ├── ZooKeeperNet.dll │ │ ├── log4net.dll │ │ ├── log4net.xml │ │ └── zh-Hans │ │ │ ├── System.Net.Http.Formatting.resources.dll │ │ │ ├── System.Web.Http.WebHost.resources.dll │ │ │ └── System.Web.Http.resources.dll │ ├── obj │ │ └── Debug │ │ │ ├── ConfigCenter.Api.csproj.FileListAbsolute.txt │ │ │ ├── ConfigCenter.Api.csprojResolveAssemblyReference.cache │ │ │ ├── ConfigCenter.Api.dll │ │ │ ├── ConfigCenter.Api.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── ConfigCenter.Business │ ├── AppBusiness.cs │ ├── AppSettingBusiness.cs │ ├── ConfigCenter.Business.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.xml │ │ │ ├── ConfigCenter.Business.dll │ │ │ ├── ConfigCenter.Business.pdb │ │ │ ├── ConfigCenter.Common.dll │ │ │ ├── ConfigCenter.Common.pdb │ │ │ ├── ConfigCenter.Dto.dll │ │ │ ├── ConfigCenter.Dto.pdb │ │ │ ├── ConfigCenter.Repository.dll │ │ │ ├── ConfigCenter.Repository.pdb │ │ │ ├── ServiceStack.Interfaces.dll │ │ │ ├── ZooKeeperNet.dll │ │ │ ├── log4net.dll │ │ │ └── log4net.xml │ ├── obj │ │ └── Debug │ │ │ ├── ConfigCenter.Business.csproj.FileListAbsolute.txt │ │ │ ├── ConfigCenter.Business.csprojResolveAssemblyReference.cache │ │ │ ├── ConfigCenter.Business.dll │ │ │ ├── ConfigCenter.Business.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── ConfigCenter.Common │ ├── ConfigCenter.Common.csproj │ ├── ObjectMapping.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ZooKeeperHelper.cs │ ├── bin │ │ └── Debug │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.xml │ │ │ ├── ConfigCenter.Common.dll │ │ │ ├── ConfigCenter.Common.pdb │ │ │ ├── ConfigCenter.Dto.dll │ │ │ ├── ConfigCenter.Dto.pdb │ │ │ ├── ConfigCenter.Repository.dll │ │ │ ├── ConfigCenter.Repository.pdb │ │ │ ├── ServiceStack.Interfaces.dll │ │ │ ├── ZooKeeperNet.dll │ │ │ ├── log4net.dll │ │ │ └── log4net.xml │ ├── obj │ │ └── Debug │ │ │ ├── ConfigCenter.Common.csproj.FileListAbsolute.txt │ │ │ ├── ConfigCenter.Common.csprojResolveAssemblyReference.cache │ │ │ ├── ConfigCenter.Common.dll │ │ │ ├── ConfigCenter.Common.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── ConfigCenter.Dto │ ├── App.cs │ ├── AppSetting.cs │ ├── BaseResponse.cs │ ├── ConfigCenter.Dto.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── ConfigCenter.Dto.dll │ │ │ ├── ConfigCenter.Dto.pdb │ │ │ ├── ServiceStack.Client.dll │ │ │ ├── ServiceStack.Client.xml │ │ │ ├── ServiceStack.Common.dll │ │ │ ├── ServiceStack.Common.xml │ │ │ ├── ServiceStack.Interfaces.dll │ │ │ ├── ServiceStack.Text.dll │ │ │ ├── ServiceStack.Text.xml │ │ │ ├── ServiceStack.dll │ │ │ └── ServiceStack.xml │ ├── obj │ │ └── Debug │ │ │ ├── ConfigCenter.Dto.csproj.FileListAbsolute.txt │ │ │ ├── ConfigCenter.Dto.csprojResolveAssemblyReference.cache │ │ │ ├── ConfigCenter.Dto.dll │ │ │ ├── ConfigCenter.Dto.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── ConfigCenter.Repository │ ├── App.config │ ├── ConfigCenter.Repository.csproj │ ├── Models │ │ ├── Generated │ │ │ ├── Database.cs │ │ │ ├── Database.tt │ │ │ ├── PetaPoco.Core.ttinclude │ │ │ └── PetaPoco.Generator.ttinclude │ │ └── PetaPoco.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── bin │ │ └── Debug │ │ │ ├── ConfigCenter.Repository.dll │ │ │ ├── ConfigCenter.Repository.dll.config │ │ │ └── ConfigCenter.Repository.pdb │ ├── obj │ │ └── Debug │ │ │ ├── ConfigCenter.Repository.csproj.FileListAbsolute.txt │ │ │ ├── ConfigCenter.Repository.dll │ │ │ ├── ConfigCenter.Repository.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TempPE │ │ │ └── Models.Generated.Database.cs.dll │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── ConfigCenter.Test │ ├── App_Start │ │ └── RouteConfig.cs │ ├── Config │ │ └── AppSettings.config │ ├── ConfigCenter.Test.csproj │ ├── ConfigCenter.Test.csproj.user │ ├── Controllers │ │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── bin │ │ ├── ConfigCenter.Dto.dll │ │ ├── ConfigCenter.Dto.pdb │ │ ├── ConfigCenter.Test.dll │ │ ├── ConfigCenter.Test.dll.config │ │ ├── ConfigCenter.Test.pdb │ │ ├── ConfigCenter.dll │ │ ├── ConfigCenter.pdb │ │ ├── ServiceStack.Client.dll │ │ ├── ServiceStack.Client.xml │ │ ├── ServiceStack.Interfaces.dll │ │ ├── ServiceStack.Text.dll │ │ ├── ServiceStack.Text.xml │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.Mvc.dll │ │ ├── System.Web.Mvc.xml │ │ ├── System.Web.Razor.dll │ │ ├── System.Web.Razor.xml │ │ ├── System.Web.Webpages.Deployment.dll │ │ ├── System.Web.Webpages.Deployment.xml │ │ ├── System.Web.Webpages.Razor.dll │ │ ├── System.Web.Webpages.Razor.xml │ │ ├── System.Web.Webpages.dll │ │ ├── System.Web.Webpages.xml │ │ ├── Webdiyer.MvcPager.dll │ │ ├── Webdiyer.MvcPager.xml │ │ ├── ZooKeeperNet.dll │ │ ├── log4net.dll │ │ ├── log4net.xml │ │ ├── zh-CHS │ │ │ └── Webdiyer.MvcPager.resources.dll │ │ ├── zh-CHT │ │ │ └── Webdiyer.MvcPager.resources.dll │ │ └── zh-Hans │ │ │ ├── System.Web.Helpers.resources.dll │ │ │ ├── System.Web.Mvc.resources.dll │ │ │ ├── System.Web.Razor.resources.dll │ │ │ ├── System.Web.Webpages.Deployment.resources.dll │ │ │ ├── System.Web.Webpages.Razor.resources.dll │ │ │ └── System.Web.Webpages.resources.dll │ ├── obj │ │ └── Debug │ │ │ ├── ConfigCenter.Test.csproj.FileListAbsolute.txt │ │ │ ├── ConfigCenter.Test.csprojResolveAssemblyReference.cache │ │ │ ├── ConfigCenter.Test.dll │ │ │ ├── ConfigCenter.Test.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── ConfigCenter.sln ├── ConfigCenter.sln.DotSettings.user ├── ConfigCenter.v12.suo ├── ConfigCenter │ ├── ConfigCenter.cs │ ├── ConfigCenter.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Task.cs │ ├── ZookeeperWatcherHelp.cs │ ├── bin │ │ └── Debug │ │ │ ├── ConfigCenter.Dto.dll │ │ │ ├── ConfigCenter.Dto.pdb │ │ │ ├── ConfigCenter.dll │ │ │ ├── ConfigCenter.pdb │ │ │ ├── ServiceStack.Client.dll │ │ │ ├── ServiceStack.Client.xml │ │ │ ├── ServiceStack.Interfaces.dll │ │ │ ├── ServiceStack.Text.dll │ │ │ ├── ServiceStack.Text.xml │ │ │ ├── ZooKeeperNet.dll │ │ │ ├── log4net.dll │ │ │ └── log4net.xml │ ├── obj │ │ └── Debug │ │ │ ├── ConfigCenter.csproj.FileListAbsolute.txt │ │ │ ├── ConfigCenter.csprojResolveAssemblyReference.cache │ │ │ ├── ConfigCenter.dll │ │ │ ├── ConfigCenter.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config └── packages │ ├── AutoMapper.4.2.1 │ ├── AutoMapper.4.2.1.nupkg │ └── lib │ │ ├── dotnet5.1 │ │ ├── AutoMapper.dll │ │ └── AutoMapper.xml │ │ ├── net45 │ │ ├── AutoMapper.dll │ │ └── AutoMapper.xml │ │ └── portable-net45+win+wpa81+MonoAndroid10+Xamarin.iOS10+MonoTouch10 │ │ ├── AutoMapper.dll │ │ └── AutoMapper.xml │ ├── Microsoft.AspNet.Mvc.5.2.0 │ ├── Content │ │ ├── Web.config.install.xdt │ │ └── Web.config.uninstall.xdt │ ├── Microsoft.AspNet.Mvc.5.2.0.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Mvc.dll │ │ ├── System.Web.Mvc.xml │ │ └── zh-Hans │ │ ├── System.Web.Mvc.resources.dll │ │ └── System.Web.Mvc.xml │ ├── Microsoft.AspNet.Mvc.5.2.3 │ ├── Content │ │ ├── Web.config.install.xdt │ │ └── Web.config.uninstall.xdt │ ├── Microsoft.AspNet.Mvc.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Mvc.dll │ │ └── System.Web.Mvc.xml │ ├── Microsoft.AspNet.Mvc.zh-Hans.5.2.0 │ ├── Microsoft.AspNet.Mvc.zh-Hans.5.2.0.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Web.Mvc.resources.dll │ │ └── System.Web.Mvc.xml │ ├── Microsoft.AspNet.Razor.3.2.0 │ ├── Microsoft.AspNet.Razor.3.2.0.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Razor.dll │ │ ├── System.Web.Razor.xml │ │ └── zh-Hans │ │ ├── System.Web.Razor.resources.dll │ │ └── system.web.razor.xml │ ├── Microsoft.AspNet.Razor.3.2.3 │ ├── Microsoft.AspNet.Razor.3.2.3.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Razor.dll │ │ └── System.Web.Razor.xml │ ├── Microsoft.AspNet.Razor.zh-Hans.3.2.0 │ ├── Microsoft.AspNet.Razor.zh-Hans.3.2.0.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Web.Razor.resources.dll │ │ └── system.web.razor.xml │ ├── Microsoft.AspNet.WebApi.5.2.3 │ └── Microsoft.AspNet.WebApi.5.2.3.nupkg │ ├── Microsoft.AspNet.WebApi.Client.5.2.3 │ ├── Microsoft.AspNet.WebApi.Client.5.2.3.nupkg │ └── lib │ │ ├── net45 │ │ ├── System.Net.Http.Formatting.dll │ │ ├── System.Net.Http.Formatting.xml │ │ └── zh-Hans │ │ │ ├── System.Net.Http.Formatting.resources.dll │ │ │ └── System.Net.Http.Formatting.xml │ │ └── portable-wp8+netcore45+net45+wp81+wpa81 │ │ ├── System.Net.Http.Formatting.dll │ │ └── System.Net.Http.Formatting.xml │ ├── Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3 │ ├── Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Net.Http.Formatting.resources.dll │ │ └── System.Net.Http.Formatting.xml │ ├── Microsoft.AspNet.WebApi.Core.5.2.3 │ ├── Content │ │ └── web.config.transform │ ├── Microsoft.AspNet.WebApi.Core.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Http.dll │ │ ├── System.Web.Http.xml │ │ └── zh-Hans │ │ ├── System.Web.Http.resources.dll │ │ └── System.Web.Http.xml │ ├── Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3 │ ├── Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Web.Http.resources.dll │ │ └── System.Web.Http.xml │ ├── Microsoft.AspNet.WebApi.WebHost.5.2.3 │ ├── Microsoft.AspNet.WebApi.WebHost.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Http.WebHost.dll │ │ ├── System.Web.Http.WebHost.xml │ │ └── zh-Hans │ │ ├── System.Web.Http.WebHost.resources.dll │ │ └── System.Web.Http.WebHost.xml │ ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3 │ ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Web.Http.WebHost.resources.dll │ │ └── System.Web.Http.WebHost.xml │ ├── Microsoft.AspNet.WebPages.3.2.0 │ ├── Content │ │ ├── Web.config.install.xdt │ │ └── Web.config.uninstall.xdt │ ├── Microsoft.AspNet.WebPages.3.2.0.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── System.Web.WebPages.Deployment.xml │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Web.WebPages.Razor.xml │ │ ├── System.Web.WebPages.dll │ │ ├── System.Web.WebPages.xml │ │ └── zh-Hans │ │ ├── System.Web.Helpers.resources.dll │ │ ├── System.Web.WebPages.Deployment.resources.dll │ │ ├── System.Web.WebPages.Razor.resources.dll │ │ ├── System.Web.WebPages.resources.dll │ │ ├── system.web.helpers.xml │ │ ├── system.web.webpages.deployment.xml │ │ ├── system.web.webpages.razor.xml │ │ └── system.web.webpages.xml │ ├── Microsoft.AspNet.WebPages.3.2.3 │ ├── Content │ │ ├── Web.config.install.xdt │ │ └── Web.config.uninstall.xdt │ ├── Microsoft.AspNet.WebPages.3.2.3.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── System.Web.WebPages.Deployment.xml │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Web.WebPages.Razor.xml │ │ ├── System.Web.WebPages.dll │ │ └── System.Web.WebPages.xml │ ├── Microsoft.AspNet.WebPages.zh-Hans.3.2.0 │ ├── Microsoft.AspNet.WebPages.zh-Hans.3.2.0.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Web.Helpers.resources.dll │ │ ├── System.Web.WebPages.Deployment.resources.dll │ │ ├── System.Web.WebPages.Razor.resources.dll │ │ ├── System.Web.WebPages.resources.dll │ │ ├── system.web.helpers.xml │ │ ├── system.web.webpages.deployment.xml │ │ ├── system.web.webpages.razor.xml │ │ └── system.web.webpages.xml │ ├── Microsoft.Web.Infrastructure.1.0.0.0 │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── Microsoft.Web.Infrastructure.dll │ ├── Newtonsoft.Json.8.0.3 │ ├── Newtonsoft.Json.8.0.3.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+wp80+win8+wpa81+dnxcore50 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── tools │ │ └── install.ps1 │ ├── PetaPoco.5.1.153 │ ├── Content │ │ └── Models │ │ │ ├── Generated │ │ │ ├── Database.tt │ │ │ ├── PetaPoco.Core.ttinclude │ │ │ └── PetaPoco.Generator.ttinclude │ │ │ └── PetaPoco.cs │ └── PetaPoco.5.1.153.nupkg │ ├── ServiceStack.4.0.54 │ ├── ServiceStack.4.0.54.nupkg │ └── lib │ │ └── net40 │ │ ├── ServiceStack.dll │ │ └── ServiceStack.xml │ ├── ServiceStack.Client.4.0.54 │ ├── ServiceStack.Client.4.0.54.nupkg │ └── lib │ │ ├── MonoAndroid │ │ ├── ServiceStack.Client.dll │ │ └── ServiceStack.Pcl.Android.dll │ │ ├── MonoTouch │ │ ├── ServiceStack.Client.dll │ │ └── ServiceStack.Pcl.iOS.dll │ │ ├── Xamarin.Mac20 │ │ ├── ServiceStack.Client.dll │ │ └── ServiceStack.Pcl.Mac20.dll │ │ ├── Xamarin.iOS10 │ │ ├── ServiceStack.Client.dll │ │ └── ServiceStack.Pcl.iOS.dll │ │ ├── net40 │ │ ├── ServiceStack.Client.dll │ │ └── ServiceStack.Client.xml │ │ ├── portable-net45+win8+monotouch+monoandroid+xamarin.ios10 │ │ └── ServiceStack.Client.dll │ │ ├── sl5 │ │ └── ServiceStack.Client.dll │ │ └── win │ │ ├── ServiceStack.Client.dll │ │ ├── ServiceStack.Pcl.WinStore.dll │ │ └── ServiceStack.Pcl.WinStore.pri │ ├── ServiceStack.Common.4.0.54 │ ├── ServiceStack.Common.4.0.54.nupkg │ └── lib │ │ └── net40 │ │ ├── ServiceStack.Common.dll │ │ └── ServiceStack.Common.xml │ ├── ServiceStack.Interfaces.4.0.54 │ ├── ServiceStack.Interfaces.4.0.54.nupkg │ └── lib │ │ └── portable-wp80+sl5+net40+win8+monotouch+monoandroid+xamarin.ios10 │ │ └── ServiceStack.Interfaces.dll │ ├── ServiceStack.Mvc.4.0.54 │ ├── ServiceStack.Mvc.4.0.54.nupkg │ └── lib │ │ └── net40 │ │ ├── ServiceStack.Mvc.dll │ │ └── ServiceStack.Mvc.xml │ ├── ServiceStack.Text.4.0.54 │ ├── ServiceStack.Text.4.0.54.nupkg │ └── lib │ │ ├── net40 │ │ ├── ServiceStack.Text.dll │ │ └── ServiceStack.Text.xml │ │ ├── portable-net45+win8+monotouch+monoandroid+xamarin.ios10 │ │ └── ServiceStack.Text.dll │ │ └── sl5 │ │ ├── ServiceStack.Text.dll │ │ └── ServiceStack.Text.xml │ ├── Webdiyer.MvcPager.3.0.1.1 │ ├── Webdiyer.MvcPager.3.0.1.1.nupkg │ └── lib │ │ ├── Webdiyer.MvcPager.XML │ │ ├── Webdiyer.MvcPager.dll │ │ ├── zh-CHS │ │ └── Webdiyer.MvcPager.resources.dll │ │ └── zh-CHT │ │ └── Webdiyer.MvcPager.resources.dll │ ├── ZooKeeper.Net.3.4.6.2 │ ├── ZooKeeper.Net.3.4.6.2.nupkg │ └── lib │ │ └── net40 │ │ └── ZooKeeperNet.dll │ ├── log4net.1.2.10 │ ├── lib │ │ ├── 1.0 │ │ │ ├── log4net.dll │ │ │ └── log4net.xml │ │ ├── 1.1 │ │ │ ├── log4net.dll │ │ │ └── log4net.xml │ │ └── 2.0 │ │ │ ├── log4net.dll │ │ │ └── log4net.xml │ └── log4net.1.2.10.nupkg │ └── repositories.config ├── DB ├── ConfigCenter.mdf └── ConfigCenter_log.ldf └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/App_Code/BaseConroller.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace ConfigCenter.Admin 8 | { 9 | public class BaseConroller : Controller 10 | { 11 | } 12 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/App_Code/ResponseResult.cs: -------------------------------------------------------------------------------- 1 | namespace ConfigCenter.Admin 2 | { 3 | public class ResponseResult 4 | { 5 | public bool Success { get; set; } 6 | 7 | public string Message { get; set; } 8 | 9 | public ResponseResult(bool success, string message) 10 | { 11 | Success = success; 12 | Message = message; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace ConfigCenter.Admin 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "App", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/ConfigCenter.Admin.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 600 5 | True 6 | True 7 | False 8 | 9 | False 10 | 600 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | CurrentPage 19 | True 20 | False 21 | False 22 | False 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | True 32 | True 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Controllers/AppController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Script.Serialization; 7 | using ConfigCenter.Business; 8 | using ConfigCenter.Dto; 9 | using Webdiyer.WebControls.Mvc; 10 | 11 | namespace ConfigCenter.Admin.Controllers 12 | { 13 | public class AppController : Controller 14 | { 15 | // GET: App 16 | public ActionResult Index(int pageindex = 1, string kword = "") 17 | { 18 | long totalItem; 19 | var dto = AppBusiness.GetApps(pageindex, 20, kword, out totalItem); 20 | return View(new PagedList(dto, pageindex, 20, (int)totalItem)); 21 | } 22 | 23 | public JsonResult GetAppById(int id) 24 | { 25 | return Json(AppBusiness.GetAppById(id), JsonRequestBehavior.AllowGet); 26 | } 27 | 28 | public JsonResult DeleteAppById(int id) 29 | { 30 | ResponseResult responseResult; 31 | try 32 | { 33 | var result = AppBusiness.DeleteAppById(id); 34 | responseResult = new ResponseResult(result, ""); 35 | } 36 | catch (Exception) 37 | { 38 | responseResult = new ResponseResult(false, ""); 39 | } 40 | return Json(responseResult, JsonRequestBehavior.AllowGet); 41 | } 42 | 43 | public JsonResult SaveApp(AppDto appDto) 44 | { 45 | ResponseResult responseResult; 46 | try 47 | { 48 | AppBusiness.SaveApp(appDto); 49 | responseResult = new ResponseResult(true, ""); 50 | } 51 | catch (Exception) 52 | { 53 | responseResult = new ResponseResult(false, ""); 54 | } 55 | return Json(responseResult, JsonRequestBehavior.AllowGet); 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Controllers/AppSettingController.cs: -------------------------------------------------------------------------------- 1 | using ConfigCenter.Business; 2 | using ConfigCenter.Dto; 3 | using System; 4 | using System.Web.Mvc; 5 | using Webdiyer.WebControls.Mvc; 6 | 7 | namespace ConfigCenter.Admin.Controllers 8 | { 9 | public class AppSettingController : Controller 10 | { 11 | // GET: App 12 | public ActionResult Index(int pageindex = 1, int appId = 0, string kword = "") 13 | { 14 | long totalItem; 15 | var dto = AppSettingBusiness.GetAppSettings(appId, pageindex, 20, kword, out totalItem); 16 | return View(new PagedList(dto, pageindex, 20, (int)totalItem)); 17 | } 18 | 19 | public JsonResult GetAppSettingById(int id) 20 | { 21 | return Json(AppSettingBusiness.GetAppSettingById(id), JsonRequestBehavior.AllowGet); 22 | } 23 | 24 | public JsonResult DeleteAppSettingById(int id) 25 | { 26 | ResponseResult responseResult; 27 | try 28 | { 29 | var result = AppSettingBusiness.DeleteAppSettingById(id); 30 | responseResult = new ResponseResult(result, ""); 31 | } 32 | catch (Exception) 33 | { 34 | responseResult = new ResponseResult(false, ""); 35 | } 36 | return Json(responseResult, JsonRequestBehavior.AllowGet); 37 | } 38 | 39 | public JsonResult SaveAppSetting(AppSettingDto appSettingDto) 40 | { 41 | ResponseResult responseResult; 42 | try 43 | { 44 | AppSettingBusiness.SaveAppSetting(appSettingDto); 45 | responseResult = new ResponseResult(true, ""); 46 | } 47 | catch (Exception) 48 | { 49 | responseResult = new ResponseResult(false, ""); 50 | } 51 | return Json(responseResult, JsonRequestBehavior.AllowGet); 52 | } 53 | } 54 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="ConfigCenter.Admin.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | using ConfigCenter.Common; 8 | 9 | namespace ConfigCenter.Admin 10 | { 11 | public class MvcApplication : System.Web.HttpApplication 12 | { 13 | protected void Application_Start() 14 | { 15 | ObjectMapping.Init(); 16 | AreaRegistration.RegisterAllAreas(); 17 | RouteConfig.RegisterRoutes(RouteTable.Routes); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列特性集 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("ConfigCenter.Admin")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ConfigCenter.Admin")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要 19 | // 从 COM 访问此程序集中的某个类型,请针对该类型将 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于 typelib 的 ID 23 | [assembly: Guid("4d41b5e2-a497-42dd-9a84-14c83102bb1e")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订版本 31 | // 32 | // 可以指定所有值,也可以使用“修订号”和“内部版本号”的默认值, 33 | // 方法是按如下所示使用 "*": 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/My97DatePicker.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | My97DatePicker 5 | 6 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/config.js: -------------------------------------------------------------------------------- 1 | var langList = 2 | [ 3 | {name:'en', charset:'UTF-8'}, 4 | {name:'zh-cn', charset:'UTF-8'}, 5 | {name:'zh-tw', charset:'UTF-8'} 6 | ]; 7 | 8 | var skinList = 9 | [ 10 | {name:'default', charset:'UTF-8'}, 11 | {name:'whyGreen', charset:'UTF-8'} 12 | ]; -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u786E\u5B9A", 10 | updateStr: "\u786E\u5B9A", 11 | timeStr: "\u65F6\u95F4", 12 | quickStr: "\u5FEB\u901F\u9009\u62E9", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u7BC4\u570D,\u9700\u8981\u64A4\u92B7\u55CE?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u78BA\u5B9A", 10 | updateStr: "\u78BA\u5B9A", 11 | timeStr: "\u6642\u9593", 12 | quickStr: "\u5FEB\u901F\u9078\u64C7", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u65BC\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | 7 | .WdateFmtErr{ 8 | font-weight:bold; 9 | color:red; 10 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/lang/zh-cn.js -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/lang/zh-tw.js -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/readme.txt -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | 7 | .WdateFmtErr{ 8 | font-weight:bold; 9 | color:red; 10 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/datePicker.gif -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/default/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/default/datepicker.css -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/default/img.gif -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/whyGreen/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/whyGreen/datepicker.css -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/My97DatePicker/开发包/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/Static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/js/asset/js/esl/css.js: -------------------------------------------------------------------------------- 1 | /** 2 | * ESL (Enterprise Standard Loader) 3 | * Copyright 2013 Baidu Inc. All rights reserved. 4 | * 5 | * @file CSS Loader-Plugin 6 | * @author errorrik(errorrik@gmail.com) 7 | */ 8 | 9 | // 构建环境暂不支持分析,为了能合并该plugin到loader里, 10 | // 只能暂时使用具名id 11 | define( 'css', { 12 | load: function ( resourceId, req, load, config ) { 13 | var link = document.createElement( 'link' ); 14 | link.setAttribute( 'rel', 'stylesheet' ); 15 | link.setAttribute( 'type', 'text/css' ); 16 | link.setAttribute( 'href', req.toUrl( resourceId ) ); 17 | 18 | var parent = document.getElementsByTagName( 'head' )[ 0 ] 19 | || document.body; 20 | parent.appendChild( link ); 21 | 22 | parent = null; 23 | link = null; 24 | 25 | load( true ); 26 | } 27 | } ); 28 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Static/js/asset/js/esl/js.js: -------------------------------------------------------------------------------- 1 | /** 2 | * ESL (Enterprise Standard Loader) 3 | * Copyright 2013 Baidu Inc. All rights reserved. 4 | * 5 | * @file JS Loader-Plugin 6 | * @author errorrik(errorrik@gmail.com) 7 | */ 8 | 9 | // 构建环境暂不支持分析,为了能合并该plugin到loader里, 10 | // 只能暂时使用具名id 11 | define( 'js', { 12 | load: function ( resourceId, req, load, config ) { 13 | function onload() { 14 | var readyState = script.readyState; 15 | if ( 16 | typeof readyState == 'undefined' 17 | || /^(loaded|complete)$/.test( readyState ) 18 | ) { 19 | script.onload = script.onreadystatechange = null; 20 | script = null; 21 | load( true ); 22 | } 23 | } 24 | 25 | var script = document.createElement( 'script' ); 26 | script.src = req.toUrl( resourceId ); 27 | script.async = true; 28 | if ( script.readyState ) { 29 | script.onreadystatechange = onload; 30 | } 31 | else { 32 | script.onload = onload; 33 | } 34 | 35 | var parent = document.getElementsByTagName( 'head' )[ 0 ] 36 | || document.body; 37 | parent.appendChild( script ) && ( parent = null ); 38 | } 39 | } ); 40 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Views/App/_AppTable.cshtml: -------------------------------------------------------------------------------- 1 | @using Webdiyer.WebControls.Mvc 2 | @model PagedList 3 | 4 | 5 | 6 | 9 | 12 | 15 | 16 | @{ int i = 0;} 17 | @foreach (var item in Model) 18 | { 19 | 20 | 21 | 24 | 27 | 32 | 33 | } 34 |
序号 7 | @Html.DisplayNameFor(model => model.AppId) 8 | 10 | @Html.DisplayNameFor(model => model.Version) 11 | 13 | 操作 14 |
@(Model.StartItemIndex + i++) 22 | @Html.DisplayFor(modelItem => item.AppId) 23 | 25 | @Html.DisplayFor(modelItem => item.Version) 26 | 28 | 编辑 29 | 删除 30 | 查看配置 31 |
-------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Views/AppSetting/_AppTable.cshtml: -------------------------------------------------------------------------------- 1 | @using Webdiyer.WebControls.Mvc 2 | @model PagedList 3 | 4 | 5 | 6 | 9 | 12 | 15 | 18 | 19 | @{ int i = 0;} 20 | @foreach (var item in Model) 21 | { 22 | 23 | 24 | 27 | 30 | 40 | 44 | 45 | } 46 |
序号 7 | @Html.DisplayNameFor(model => model.ConfigKey) 8 | 10 | @Html.DisplayNameFor(model => model.ConfigValue) 11 | 13 | @Html.DisplayNameFor(model => model.ConfigType) 14 | 16 | 操作 17 |
@(Model.StartItemIndex + i++) 25 | @Html.DisplayFor(modelItem => item.ConfigKey) 26 | 28 | @Html.DisplayFor(modelItem => item.ConfigValue) 29 | 31 | @if (item.ConfigType == 0) 32 | { 33 | @Html.Raw("AppSetting") 34 | } 35 | else 36 | { 37 | @Html.Raw("ConnectionString") 38 | } 39 | 41 | 编辑 42 | 删除 43 |
-------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | 10 | 错误 11 | 12 | 13 |
14 |

错误。

15 |

处理你的请求时出错。

16 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 配置中心 10 | 11 | 12 | 13 | 14 | 40 | 41 | 42 | 62 | 63 |
64 | @RenderBody() 65 |
66 | 67 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Views/web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 30 | 31 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Web.Release.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 31 | 32 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/AutoMapper.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Admin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Admin.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Admin.dll.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Admin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Admin.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Business.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Business.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Common.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Common.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Dto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Dto.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Dto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Dto.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Repository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Repository.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Repository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ConfigCenter.Repository.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.Common.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.Text.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ServiceStack.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/System.Web.Webpages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/System.Web.Webpages.Deployment.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/System.Web.Webpages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/System.Web.Webpages.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/System.Web.Webpages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/System.Web.Webpages.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/Webdiyer.MvcPager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/Webdiyer.MvcPager.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/ZooKeeperNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/ZooKeeperNet.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/log4net.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/zh-CHS/Webdiyer.MvcPager.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/zh-CHS/Webdiyer.MvcPager.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/zh-CHT/Webdiyer.MvcPager.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/zh-CHT/Webdiyer.MvcPager.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Webpages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Webpages.Deployment.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Webpages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Webpages.Razor.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Webpages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/bin/zh-Hans/System.Web.Webpages.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/obj/Debug/ConfigCenter.Admin.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/obj/Debug/ConfigCenter.Admin.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/obj/Debug/ConfigCenter.Admin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/obj/Debug/ConfigCenter.Admin.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/obj/Debug/ConfigCenter.Admin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/obj/Debug/ConfigCenter.Admin.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Admin/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Admin/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/App_Start/AppHost.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Mvc; 2 | using Funq; 3 | using ServiceStack; 4 | using ServiceStack.Mvc; 5 | 6 | namespace ConfigCenter.Api 7 | { 8 | public class AppHost : AppHostBase 9 | { 10 | public AppHost() : base("ConfigCenter", typeof(AppHost).Assembly) { } 11 | 12 | public override void Configure(Container container) 13 | { 14 | SetConfig(new HostConfig { HandlerFactoryPath = "api" }); 15 | ControllerBuilder.Current.SetControllerFactory( 16 | new FunqControllerFactory(container)); 17 | 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/ConfigCenter.Api.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | CurrentPage 10 | True 11 | False 12 | False 13 | False 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | True 23 | True 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="ConfigCenter.Api.WebApiApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http; 6 | using System.Web.Routing; 7 | using ConfigCenter.Common; 8 | 9 | namespace ConfigCenter.Api 10 | { 11 | public class WebApiApplication : System.Web.HttpApplication 12 | { 13 | protected void Application_Start() 14 | { 15 | ObjectMapping.Init(); 16 | if (!ZooKeeperHelper.Exists(ZooKeeperHelper.ZooKeeperRootNode)) 17 | { 18 | ZooKeeperHelper.Create(ZooKeeperHelper.ZooKeeperRootNode, null); 19 | } 20 | new AppHost().Init(); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列特性集 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("ConfigCenter.Api")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ConfigCenter.Api")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要 19 | // 从 COM 访问此程序集中的某个类型,请针对该类型将 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于 typelib 的 ID 23 | [assembly: Guid("939886b0-159c-456b-9409-ef8d9ee5f688")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订版本 31 | // 32 | // 可以指定所有值,也可以使用“修订号”和“内部版本号”的默认值, 33 | // 方法是按如下所示使用 "*": 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/Services/ConfigCenterService.cs: -------------------------------------------------------------------------------- 1 | using ConfigCenter.Business; 2 | using ConfigCenter.Dto; 3 | using ServiceStack; 4 | 5 | namespace ConfigCenter.Api.Services 6 | { 7 | public class ConfigCenterService : Service 8 | { 9 | public object Get(GetAppVersion getAppVersion) 10 | { 11 | return new GetAppVersionResponse() { AppDto = AppBusiness.GetAppVersion(getAppVersion.AppId) }; 12 | } 13 | 14 | 15 | 16 | public object Get(GetAppSettings getAppSettings) 17 | { 18 | return new GetAppSettingsResponse() { AppSettings = AppSettingBusiness.GetAppSettings(getAppSettings.AppId) }; 19 | } 20 | 21 | } 22 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 30 | 31 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/Web.Release.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 31 | 32 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/AutoMapper.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Api.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Api.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Business.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Business.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Common.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Common.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Dto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Dto.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Dto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Dto.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Repository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Repository.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Repository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ConfigCenter.Repository.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Common.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Mvc.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ServiceStack.Text.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ServiceStack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ServiceStack.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/System.Web.Http.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/ZooKeeperNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/ZooKeeperNet.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/log4net.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/bin/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/bin/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/obj/Debug/ConfigCenter.Api.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/obj/Debug/ConfigCenter.Api.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/obj/Debug/ConfigCenter.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/obj/Debug/ConfigCenter.Api.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/obj/Debug/ConfigCenter.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/obj/Debug/ConfigCenter.Api.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Api/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Api/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/AppBusiness.cs: -------------------------------------------------------------------------------- 1 | using AutoMapper; 2 | using ConfigCenter.Dto; 3 | using ConfigCenter.Repository; 4 | using System.Collections.Generic; 5 | 6 | namespace ConfigCenter.Business 7 | { 8 | public class AppBusiness 9 | { 10 | public static List GetApps(int pageIndex, int pageSize, string kword, out long totalPage) 11 | { 12 | var page = App.Page(pageIndex, pageSize, "WHERE AppId LIKE @0", new object[] { "%" + kword + "%" }); 13 | totalPage = page.TotalItems; 14 | return Mapper.Map, List>(page.Items); 15 | } 16 | 17 | public static AppDto GetAppById(int Id) 18 | { 19 | return Mapper.Map(App.SingleOrDefault("WHERE id=@0", Id)); 20 | } 21 | 22 | public static AppDto GetAppVersion(string appId) 23 | { 24 | return Mapper.Map(App.SingleOrDefault("WHERE AppId=@0", appId)); 25 | } 26 | 27 | 28 | public static void SaveApp(AppDto appDto) 29 | { 30 | var app = Mapper.Map(appDto); 31 | app.Save(); 32 | } 33 | 34 | public static bool DeleteAppById(int id) 35 | { 36 | return App.Delete(id) > 0; 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/AppSettingBusiness.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using AutoMapper; 7 | using ConfigCenter.Common; 8 | using ConfigCenter.Dto; 9 | using ConfigCenter.Repository; 10 | 11 | namespace ConfigCenter.Business 12 | { 13 | public class AppSettingBusiness 14 | { 15 | 16 | public static List GetAppSettings(int appId) 17 | { 18 | return Mapper.Map, List>(AppSetting.Query("WHERE AppId=@0", appId).ToList()); 19 | } 20 | 21 | public static List GetAppSettings(int appId, int pageIndex, int pageSize, string kword, out long totalPage) 22 | { 23 | var page = AppSetting.Page(pageIndex, pageSize, "WHERE AppId=@0 AND ConfigKey LIKE @1", 24 | new object[] { appId, "%" + kword + "%" }); 25 | totalPage = page.TotalItems; 26 | return Mapper.Map, List>(page.Items); 27 | } 28 | 29 | public static AppSettingDto GetAppSettingById(int id) 30 | { 31 | return Mapper.Map(AppSetting.SingleOrDefault("WHERE Id=@0", id)); 32 | } 33 | 34 | public static void SaveAppSetting(AppSettingDto appSettingDto) 35 | { 36 | var appSetting = Mapper.Map(appSettingDto); 37 | appSetting.Save(); 38 | 39 | var app = App.SingleOrDefault(appSettingDto.AppId); 40 | if (app != null) 41 | { 42 | app.Version = DateTime.Now.ToString("yyyyMMddHHmmss"); 43 | app.Save(); 44 | 45 | //更新zookeeper的值 46 | var path = ZooKeeperHelper.ZooKeeperRootNode + "/" + app.AppId; 47 | if (!ZooKeeperHelper.Exists(path)) 48 | { 49 | ZooKeeperHelper.Create(path, null); 50 | } 51 | ZooKeeperHelper.SetData(path, app.Version, -1); 52 | 53 | } 54 | } 55 | 56 | public static bool DeleteAppSettingById(int id) 57 | { 58 | return AppSetting.Delete(id) > 0; 59 | } 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("ConfigCenter.Business")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ConfigCenter.Business")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("9f1d7321-0a7b-4251-857a-54b0d41277ce")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/AutoMapper.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Business.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Business.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Common.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Common.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Dto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Dto.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Dto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Dto.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Repository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Repository.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Repository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ConfigCenter.Repository.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/ZooKeeperNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/ZooKeeperNet.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/bin/Debug/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/bin/Debug/log4net.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/obj/Debug/ConfigCenter.Business.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/obj/Debug/ConfigCenter.Business.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/obj/Debug/ConfigCenter.Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/obj/Debug/ConfigCenter.Business.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/obj/Debug/ConfigCenter.Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/obj/Debug/ConfigCenter.Business.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Business/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Business/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/ObjectMapping.cs: -------------------------------------------------------------------------------- 1 | using AutoMapper; 2 | using ConfigCenter.Dto; 3 | using ConfigCenter.Repository; 4 | 5 | namespace ConfigCenter.Common 6 | { 7 | public class ObjectMapping 8 | { 9 | public static void Init() 10 | { 11 | Mapper.Initialize(cfg => { cfg.AddProfile(); }); 12 | } 13 | } 14 | 15 | public class ConfigCenterObjectMappingProfile : Profile 16 | { 17 | protected override void Configure() 18 | { 19 | CreateMap(); 20 | CreateMap(); 21 | 22 | CreateMap(); 23 | CreateMap(); 24 | } 25 | 26 | //配置的名称,默认可以定义为当前的类名 27 | public override string ProfileName 28 | { 29 | get { return this.GetType().Name; } 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("ConfigCenter.Common")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ConfigCenter.Common")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("fbb20ed9-3f77-4ac8-9fa2-857712d5c677")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/ZooKeeperHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Linq; 5 | using System.Text; 6 | using ZooKeeperNet; 7 | 8 | namespace ConfigCenter.Common 9 | { 10 | public class ZooKeeperHelper 11 | { 12 | private static readonly string ZookeeperAddress = ConfigurationManager.AppSettings["ZookeeperAddress"]; 13 | private static readonly ZooKeeper Zk = new ZooKeeper(ZookeeperAddress, new TimeSpan(0, 0, 0, 50000), null); 14 | 15 | public static string ZooKeeperRootNode 16 | { 17 | get { return ConfigurationManager.AppSettings["ZookeeperRootNode"]; } 18 | } 19 | 20 | public static void SetData(string path, string data, int version) 21 | { 22 | var nodeData = data == null ? null : data.GetBytes(); 23 | Zk.SetData(path, nodeData, version); 24 | } 25 | 26 | public static byte[] GetData(string path) 27 | { 28 | var data = Zk.GetData(path, false, null); 29 | return data; 30 | } 31 | 32 | public static void Create(string path, string data) 33 | { 34 | var nodeData = data == null ? null : data.GetBytes(); 35 | Zk.Create(path, nodeData, Ids.OPEN_ACL_UNSAFE, CreateMode.Persistent); 36 | } 37 | 38 | public static void Delete(string path, int version) 39 | { 40 | Zk.Delete(path, version); 41 | } 42 | 43 | public static List GetChildren(string path) 44 | { 45 | var nodepath = Zk.GetChildren(path, false).ToList(); 46 | return nodepath; 47 | } 48 | 49 | public static bool Exists(string path) 50 | { 51 | var exists = Zk.Exists(path, false) != null; 52 | return exists; 53 | } 54 | } 55 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/AutoMapper.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Common.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Common.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Dto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Dto.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Dto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Dto.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Repository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Repository.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Repository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/ConfigCenter.Repository.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/ZooKeeperNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/ZooKeeperNet.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/bin/Debug/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/bin/Debug/log4net.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/obj/Debug/ConfigCenter.Common.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Common.dll 2 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Common.pdb 3 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\bin\Debug\AutoMapper.dll 4 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Dto.dll 5 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Repository.dll 6 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\bin\Debug\ServiceStack.Interfaces.dll 7 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Dto.pdb 8 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Repository.pdb 9 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\bin\Debug\AutoMapper.xml 10 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\obj\Debug\ConfigCenter.Common.csprojResolveAssemblyReference.cache 11 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\obj\Debug\ConfigCenter.Common.dll 12 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Common\obj\Debug\ConfigCenter.Common.pdb 13 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Common.dll 14 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Common.pdb 15 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\AutoMapper.dll 16 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Dto.dll 17 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Repository.dll 18 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\log4net.dll 19 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\ZooKeeperNet.dll 20 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\ServiceStack.Interfaces.dll 21 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Dto.pdb 22 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\ConfigCenter.Repository.pdb 23 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\AutoMapper.xml 24 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\bin\Debug\log4net.xml 25 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\obj\Debug\ConfigCenter.Common.csprojResolveAssemblyReference.cache 26 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\obj\Debug\ConfigCenter.Common.dll 27 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Common\obj\Debug\ConfigCenter.Common.pdb 28 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/obj/Debug/ConfigCenter.Common.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/obj/Debug/ConfigCenter.Common.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/obj/Debug/ConfigCenter.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/obj/Debug/ConfigCenter.Common.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/obj/Debug/ConfigCenter.Common.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/obj/Debug/ConfigCenter.Common.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Common/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Common/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/App.cs: -------------------------------------------------------------------------------- 1 | using ServiceStack; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | 5 | namespace ConfigCenter.Dto 6 | { 7 | #region Dto 8 | 9 | public class AppDto 10 | { 11 | [Display(Name = "应用Id")] 12 | public int Id { get; set; } 13 | 14 | [Display(Name = "应用名称")] 15 | public string AppId { get; set; } 16 | 17 | [Display(Name = "应用版本")] 18 | public string Version { get; set; } 19 | } 20 | 21 | #endregion Dto 22 | 23 | #region /app/apps 24 | 25 | [Route("/app/apps", "GET")] 26 | public class GetApps : IReturn 27 | { 28 | } 29 | 30 | public class GetAppsResponse 31 | { 32 | public List Apps { get; set; } 33 | } 34 | 35 | #endregion /app/apps 36 | 37 | 38 | #region /app/lastversion 39 | [Route("/app/version/{AppId}", "GET")] 40 | public class GetAppVersion : IReturn 41 | { 42 | public string AppId { get; set; } 43 | } 44 | 45 | public class GetAppVersionResponse 46 | { 47 | public AppDto AppDto { get; set; } 48 | } 49 | 50 | 51 | #endregion 52 | 53 | 54 | 55 | #region /app/create 56 | 57 | [Route("/app/create", "POST")] 58 | public class CreateApp : IReturn 59 | { 60 | public string AppId { get; set; } 61 | } 62 | 63 | #endregion /app/create 64 | 65 | #region /app/update 66 | 67 | [Route("/app/update", "PUT")] 68 | public class UpdateApp : IReturn 69 | { 70 | public string ConfigVersions { get; set; } 71 | } 72 | 73 | #endregion /app/update 74 | 75 | #region /app/delete 76 | 77 | [Route("/app/delete", "DELETE")] 78 | public class DeleteApp : IReturn 79 | { 80 | public int Id { get; set; } 81 | } 82 | 83 | #endregion /app/delete 84 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/AppSetting.cs: -------------------------------------------------------------------------------- 1 | using ServiceStack; 2 | using System.Collections.Generic; 3 | 4 | namespace ConfigCenter.Dto 5 | { 6 | #region Dto 7 | 8 | public class AppSettingDto 9 | { 10 | public int Id { get; set; } 11 | 12 | public int AppId { get; set; } 13 | 14 | public string ConfigKey { get; set; } 15 | 16 | public string ConfigValue { get; set; } 17 | 18 | public int ConfigType { get; set; } 19 | } 20 | 21 | #endregion Dto 22 | 23 | #region /appsetting/appsettings 24 | 25 | [Route("/appsetting/appsettings/{AppId}", "GET")] 26 | public class GetAppSettings : IReturn 27 | { 28 | public int AppId { get; set; } 29 | } 30 | 31 | public class GetAppSettingsResponse 32 | { 33 | public List AppSettings { get; set; } 34 | } 35 | 36 | #endregion /appsetting/appsettings 37 | 38 | #region /appsetting/create 39 | 40 | [Route("/appsetting/create", "POST")] 41 | public class CreateAppSetting : IReturn 42 | { 43 | public int AppId { get; set; } 44 | 45 | public string ConfigKey { get; set; } 46 | 47 | public string ConfigValue { get; set; } 48 | 49 | public int ConfigType { get; set; } 50 | } 51 | 52 | #endregion /appsetting/create 53 | 54 | #region /appsetting/update 55 | 56 | [Route("/appsetting/update/{Id}", "PUT")] 57 | public class UpdateAppSetting : IReturn 58 | { 59 | public int Id { get; set; } 60 | 61 | public string ConfigKey { get; set; } 62 | 63 | public string ConfigValue { get; set; } 64 | 65 | public int ConfigType { get; set; } 66 | } 67 | 68 | #endregion /appsetting/update 69 | 70 | #region /appsetting/delete 71 | 72 | [Route("/appsetting/delete/{Id}", "DELETE")] 73 | public class DeleteAppSetting : IReturn 74 | { 75 | public int Id { get; set; } 76 | } 77 | 78 | #endregion /appsetting/delete 79 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/BaseResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ConfigCenter.Dto 8 | { 9 | public class BaseResponse 10 | { 11 | public bool Success { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("ConfigCenter.Dto")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ConfigCenter.Dto")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("540d0f88-c70a-4e22-aa63-3572c1fb4831")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/bin/Debug/ConfigCenter.Dto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/bin/Debug/ConfigCenter.Dto.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/bin/Debug/ConfigCenter.Dto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/bin/Debug/ConfigCenter.Dto.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.Common.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.Text.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/bin/Debug/ServiceStack.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/obj/Debug/ConfigCenter.Dto.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ConfigCenter.Dto.dll 2 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ConfigCenter.Dto.pdb 3 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Client.dll 4 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Common.dll 5 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.dll 6 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Interfaces.dll 7 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Text.dll 8 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.xml 9 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Client.xml 10 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Common.xml 11 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Text.xml 12 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\obj\Debug\ConfigCenter.Dto.dll 13 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Dto\obj\Debug\ConfigCenter.Dto.pdb 14 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ConfigCenter.Dto.dll 15 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ConfigCenter.Dto.pdb 16 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Client.dll 17 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Common.dll 18 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.dll 19 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Interfaces.dll 20 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Text.dll 21 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.xml 22 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Client.xml 23 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Common.xml 24 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\bin\Debug\ServiceStack.Text.xml 25 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\obj\Debug\ConfigCenter.Dto.dll 26 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Dto\obj\Debug\ConfigCenter.Dto.pdb 27 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/obj/Debug/ConfigCenter.Dto.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/obj/Debug/ConfigCenter.Dto.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/obj/Debug/ConfigCenter.Dto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/obj/Debug/ConfigCenter.Dto.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/obj/Debug/ConfigCenter.Dto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/obj/Debug/ConfigCenter.Dto.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Dto/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Dto/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/Models/Generated/Database.tt: -------------------------------------------------------------------------------- 1 | <#@ include file="PetaPoco.Core.ttinclude" #> 2 | <# 3 | // Settings 4 | ConnectionStringName = ""; // Uses last connection string in config if not specified 5 | Namespace = ""; 6 | RepoName = ""; 7 | GenerateOperations = true; 8 | GeneratePocos = true; 9 | GenerateCommon = true; 10 | ClassPrefix = ""; 11 | ClassSuffix = ""; 12 | TrackModifiedColumns = false; 13 | IncludeViews = true; 14 | 15 | // Read schema 16 | var tables = LoadTables(); 17 | 18 | 19 | /* 20 | // Tweak Schema 21 | tables["tablename"].Ignore = true; // To ignore a table 22 | tables["tablename"].ClassName = "newname"; // To change the class name of a table 23 | tables["tablename"]["columnname"].Ignore = true; // To ignore a column 24 | tables["tablename"]["columnname"].PropertyName="newname"; // To change the property name of a column 25 | tables["tablename"]["columnname"].PropertyType="bool"; // To change the property type of a column 26 | */ 27 | 28 | // Generate output 29 | if (tables.Count>0) 30 | { 31 | #> 32 | <#@ include file="PetaPoco.Generator.ttinclude" #> 33 | <# } #> 34 | 35 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("ConfigCenter.Repository")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ConfigCenter.Repository")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("d1cdc051-c621-4009-a291-6b2481e97536")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/bin/Debug/ConfigCenter.Repository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Repository/bin/Debug/ConfigCenter.Repository.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/bin/Debug/ConfigCenter.Repository.dll.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/bin/Debug/ConfigCenter.Repository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Repository/bin/Debug/ConfigCenter.Repository.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/obj/Debug/ConfigCenter.Repository.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Repository\bin\Debug\ConfigCenter.Repository.dll.config 2 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Repository\bin\Debug\ConfigCenter.Repository.dll 3 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Repository\bin\Debug\ConfigCenter.Repository.pdb 4 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Repository\obj\Debug\ConfigCenter.Repository.dll 5 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter.Repository\obj\Debug\ConfigCenter.Repository.pdb 6 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Repository\bin\Debug\ConfigCenter.Repository.dll.config 7 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Repository\bin\Debug\ConfigCenter.Repository.dll 8 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Repository\bin\Debug\ConfigCenter.Repository.pdb 9 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Repository\obj\Debug\ConfigCenter.Repository.dll 10 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter.Repository\obj\Debug\ConfigCenter.Repository.pdb 11 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/obj/Debug/ConfigCenter.Repository.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Repository/obj/Debug/ConfigCenter.Repository.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/obj/Debug/ConfigCenter.Repository.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Repository/obj/Debug/ConfigCenter.Repository.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Repository/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/obj/Debug/TempPE/Models.Generated.Database.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Repository/obj/Debug/TempPE/Models.Generated.Database.cs.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Repository/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Repository/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Repository/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Repository/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace ConfigCenter.Test 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/Config/AppSettings.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/ConfigCenter.Test.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 600 5 | True 6 | False 7 | True 8 | 9 | False 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | CurrentPage 18 | True 19 | False 20 | False 21 | False 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | True 31 | True 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Linq; 5 | using System.Web; 6 | using System.Web.Mvc; 7 | 8 | namespace ConfigCenter.Test.Controllers 9 | { 10 | public class HomeController : Controller 11 | { 12 | // GET: Home 13 | public string Index() 14 | { 15 | string result; 16 | if (ConfigurationManager.AppSettings["a"] != null) 17 | { 18 | result = ConfigurationManager.AppSettings["a"]; 19 | } 20 | else 21 | { 22 | result = "未检测到a节点"; 23 | } 24 | 25 | return result; 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="ConfigCenter.Test.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Linq; 5 | using System.Web; 6 | using System.Web.Mvc; 7 | using System.Web.Routing; 8 | 9 | namespace ConfigCenter.Test 10 | { 11 | public class MvcApplication : System.Web.HttpApplication 12 | { 13 | protected void Application_Start() 14 | { 15 | ConfigCenter.Init("Account"); 16 | 17 | AreaRegistration.RegisterAllAreas(); 18 | RouteConfig.RegisterRoutes(RouteTable.Routes); 19 | 20 | } 21 | 22 | protected void Application_End(object sender, EventArgs e) 23 | { 24 | ConfigCenter.Stop(); 25 | } 26 | 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列特性集 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("ConfigCenter.Test")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ConfigCenter.Test")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要 19 | // 从 COM 访问此程序集中的某个类型,请针对该类型将 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于 typelib 的 ID 23 | [assembly: Guid("42bd9110-d6a6-4720-aa7d-9c9f84c63d42")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订版本 31 | // 32 | // 可以指定所有值,也可以使用“修订号”和“内部版本号”的默认值, 33 | // 方法是按如下所示使用 "*": 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/Views/web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 30 | 31 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/Web.Release.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 31 | 32 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.Dto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.Dto.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.Dto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.Dto.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.Test.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.Test.dll.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.Test.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ConfigCenter.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ServiceStack.Text.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/System.Web.Webpages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/System.Web.Webpages.Deployment.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/System.Web.Webpages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/System.Web.Webpages.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/System.Web.Webpages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/System.Web.Webpages.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/Webdiyer.MvcPager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/Webdiyer.MvcPager.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/ZooKeeperNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/ZooKeeperNet.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/log4net.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/zh-CHS/Webdiyer.MvcPager.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/zh-CHS/Webdiyer.MvcPager.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/zh-CHT/Webdiyer.MvcPager.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/zh-CHT/Webdiyer.MvcPager.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Webpages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Webpages.Deployment.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Webpages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Webpages.Razor.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Webpages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/bin/zh-Hans/System.Web.Webpages.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/obj/Debug/ConfigCenter.Test.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/obj/Debug/ConfigCenter.Test.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/obj/Debug/ConfigCenter.Test.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/obj/Debug/ConfigCenter.Test.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/obj/Debug/ConfigCenter.Test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/obj/Debug/ConfigCenter.Test.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.Test/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.Test/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.sln.DotSettings.user: -------------------------------------------------------------------------------- 1 |  2 | <AssemblyExplorer> 3 | <Assembly Path="D:\Project\ConfigCenter\ConfigCenter\packages\AutoMapper.4.2.1\lib\net45\AutoMapper.dll" /> 4 | </AssemblyExplorer> -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter.v12.suo -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下 6 | // 特性集控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("ConfigCenter")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("ConfigCenter")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 使此程序集中的类型 18 | // 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | // 则将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("f3a09670-55c0-4f62-bd56-41a670b52420")] 24 | 25 | // 程序集的版本信息由下面四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/Task.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading; 3 | 4 | namespace ConfigCenter 5 | { 6 | public class Task 7 | { 8 | 9 | private readonly Thread _worker; 10 | private bool _isStop; 11 | 12 | private readonly Action _exec; 13 | private readonly int _interval; 14 | private readonly int _delay; 15 | private readonly string _param; 16 | public Task(Action exec, string param, int interval, int delay) 17 | { 18 | try 19 | { 20 | _param = param; 21 | _exec = exec; 22 | _interval = interval; 23 | _delay = delay; 24 | _worker = new Thread(WorkerMethod); 25 | _worker.Start(); 26 | } 27 | catch (Exception ex) 28 | { 29 | 30 | } 31 | 32 | } 33 | 34 | public void Stop() 35 | { 36 | _isStop = true; 37 | if (_worker != null) 38 | { 39 | _worker.Interrupt(); 40 | } 41 | } 42 | 43 | private void WorkerMethod() 44 | { 45 | 46 | if (_delay > 0) 47 | Thread.CurrentThread.Join(_delay); 48 | 49 | while (!_isStop) 50 | { 51 | if (!_isStop) 52 | { 53 | try 54 | { 55 | _exec(_param); 56 | } 57 | catch (Exception ex) 58 | { 59 | } 60 | } 61 | 62 | try 63 | { 64 | if (!_isStop) 65 | { 66 | Thread.CurrentThread.Join(_interval); 67 | } 68 | } 69 | catch (ThreadInterruptedException) 70 | { 71 | } 72 | catch (Exception e) 73 | { 74 | } 75 | } 76 | } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/bin/Debug/ConfigCenter.Dto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/bin/Debug/ConfigCenter.Dto.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/bin/Debug/ConfigCenter.Dto.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/bin/Debug/ConfigCenter.Dto.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/bin/Debug/ConfigCenter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/bin/Debug/ConfigCenter.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/bin/Debug/ConfigCenter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/bin/Debug/ConfigCenter.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/bin/Debug/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/bin/Debug/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/bin/Debug/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/bin/Debug/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/bin/Debug/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/bin/Debug/ServiceStack.Text.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/bin/Debug/ZooKeeperNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/bin/Debug/ZooKeeperNet.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/bin/Debug/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/bin/Debug/log4net.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/obj/Debug/ConfigCenter.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\bin\Debug\ConfigCenter.dll 2 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\bin\Debug\ConfigCenter.pdb 3 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\bin\Debug\ConfigCenter.Dto.dll 4 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Client.dll 5 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Interfaces.dll 6 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Text.dll 7 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\bin\Debug\ConfigCenter.Dto.pdb 8 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Client.xml 9 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Text.xml 10 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\obj\Debug\ConfigCenter.csprojResolveAssemblyReference.cache 11 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\obj\Debug\ConfigCenter.dll 12 | D:\Project\ConfigCenter\ConfigCenter\ConfigCenter\obj\Debug\ConfigCenter.pdb 13 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\obj\Debug\ConfigCenter.csprojResolveAssemblyReference.cache 14 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\obj\Debug\ConfigCenter.dll 15 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ConfigCenter.dll 16 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ConfigCenter.pdb 17 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ConfigCenter.Dto.dll 18 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\log4net.dll 19 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Client.dll 20 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Interfaces.dll 21 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Text.dll 22 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ZooKeeperNet.dll 23 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ConfigCenter.Dto.pdb 24 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\log4net.xml 25 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Client.xml 26 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\bin\Debug\ServiceStack.Text.xml 27 | D:\GitProject\ConfigCenter2\ConfigCenter\ConfigCenter\obj\Debug\ConfigCenter.pdb 28 | -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/obj/Debug/ConfigCenter.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/obj/Debug/ConfigCenter.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/obj/Debug/ConfigCenter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/obj/Debug/ConfigCenter.dll -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/obj/Debug/ConfigCenter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/obj/Debug/ConfigCenter.pdb -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/ConfigCenter/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /ConfigCenter/ConfigCenter/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ConfigCenter/packages/AutoMapper.4.2.1/AutoMapper.4.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/AutoMapper.4.2.1/AutoMapper.4.2.1.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/AutoMapper.4.2.1/lib/dotnet5.1/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/AutoMapper.4.2.1/lib/dotnet5.1/AutoMapper.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/AutoMapper.4.2.1/lib/net45/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/AutoMapper.4.2.1/lib/net45/AutoMapper.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/AutoMapper.4.2.1/lib/portable-net45+win+wpa81+MonoAndroid10+Xamarin.iOS10+MonoTouch10/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/AutoMapper.4.2.1/lib/portable-net45+win+wpa81+MonoAndroid10+Xamarin.iOS10+MonoTouch10/AutoMapper.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.0/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.0/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.0/Microsoft.AspNet.Mvc.5.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.0/Microsoft.AspNet.Mvc.5.2.0.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.0/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.0/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.0/lib/net45/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.0/lib/net45/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.0/Microsoft.AspNet.Mvc.zh-Hans.5.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.0/Microsoft.AspNet.Mvc.zh-Hans.5.2.0.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.0/lib/net45/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.0/lib/net45/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.0/Microsoft.AspNet.Razor.3.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.0/Microsoft.AspNet.Razor.3.2.0.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.0/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.0/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.0/lib/net45/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.0/lib/net45/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.0/Microsoft.AspNet.Razor.zh-Hans.3.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.0/Microsoft.AspNet.Razor.zh-Hans.3.2.0.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.5.2.3/Microsoft.AspNet.WebApi.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.5.2.3/Microsoft.AspNet.WebApi.5.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.5.2.3/Microsoft.AspNet.WebApi.Client.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.5.2.3/Microsoft.AspNet.WebApi.Client.5.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Content/web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Microsoft.AspNet.WebApi.Core.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Microsoft.AspNet.WebApi.Core.5.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/Microsoft.AspNet.WebApi.WebHost.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/Microsoft.AspNet.WebApi.WebHost.5.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 7 | 8 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/Microsoft.AspNet.WebPages.3.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/Microsoft.AspNet.WebPages.3.2.0.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 7 | 8 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/Microsoft.AspNet.WebPages.zh-Hans.3.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/Microsoft.AspNet.WebPages.zh-Hans.3.2.0.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.0/lib/net45/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Newtonsoft.Json.8.0.3/Newtonsoft.Json.8.0.3.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Newtonsoft.Json.8.0.3/lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/PetaPoco.5.1.153/Content/Models/Generated/Database.tt: -------------------------------------------------------------------------------- 1 | <#@ include file="PetaPoco.Core.ttinclude" #> 2 | <# 3 | // Settings 4 | ConnectionStringName = ""; // Uses last connection string in config if not specified 5 | Namespace = ""; 6 | RepoName = ""; 7 | GenerateOperations = true; 8 | GeneratePocos = true; 9 | GenerateCommon = true; 10 | ClassPrefix = ""; 11 | ClassSuffix = ""; 12 | TrackModifiedColumns = false; 13 | 14 | // Read schema 15 | var tables = LoadTables(); 16 | 17 | 18 | /* 19 | // Tweak Schema 20 | tables["tablename"].Ignore = true; // To ignore a table 21 | tables["tablename"].ClassName = "newname"; // To change the class name of a table 22 | tables["tablename"]["columnname"].Ignore = true; // To ignore a column 23 | tables["tablename"]["columnname"].PropertyName="newname"; // To change the property name of a column 24 | tables["tablename"]["columnname"].PropertyType="bool"; // To change the property type of a column 25 | */ 26 | 27 | // Generate output 28 | if (tables.Count>0) 29 | { 30 | #> 31 | <#@ include file="PetaPoco.Generator.ttinclude" #> 32 | <# } #> 33 | 34 | -------------------------------------------------------------------------------- /ConfigCenter/packages/PetaPoco.5.1.153/PetaPoco.5.1.153.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/PetaPoco.5.1.153/PetaPoco.5.1.153.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.4.0.54/ServiceStack.4.0.54.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.4.0.54/ServiceStack.4.0.54.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.4.0.54/lib/net40/ServiceStack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.4.0.54/lib/net40/ServiceStack.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/ServiceStack.Client.4.0.54.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/ServiceStack.Client.4.0.54.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/MonoAndroid/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/MonoAndroid/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/MonoAndroid/ServiceStack.Pcl.Android.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/MonoAndroid/ServiceStack.Pcl.Android.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/MonoTouch/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/MonoTouch/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/MonoTouch/ServiceStack.Pcl.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/MonoTouch/ServiceStack.Pcl.iOS.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/Xamarin.Mac20/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/Xamarin.Mac20/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/Xamarin.Mac20/ServiceStack.Pcl.Mac20.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/Xamarin.Mac20/ServiceStack.Pcl.Mac20.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/Xamarin.iOS10/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/Xamarin.iOS10/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/Xamarin.iOS10/ServiceStack.Pcl.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/Xamarin.iOS10/ServiceStack.Pcl.iOS.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/net40/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/net40/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/portable-net45+win8+monotouch+monoandroid+xamarin.ios10/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/portable-net45+win8+monotouch+monoandroid+xamarin.ios10/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/sl5/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/sl5/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/win/ServiceStack.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/win/ServiceStack.Client.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/win/ServiceStack.Pcl.WinStore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/win/ServiceStack.Pcl.WinStore.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/win/ServiceStack.Pcl.WinStore.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Client.4.0.54/lib/win/ServiceStack.Pcl.WinStore.pri -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Common.4.0.54/ServiceStack.Common.4.0.54.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Common.4.0.54/ServiceStack.Common.4.0.54.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Common.4.0.54/lib/net40/ServiceStack.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Common.4.0.54/lib/net40/ServiceStack.Common.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Interfaces.4.0.54/ServiceStack.Interfaces.4.0.54.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Interfaces.4.0.54/ServiceStack.Interfaces.4.0.54.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Interfaces.4.0.54/lib/portable-wp80+sl5+net40+win8+monotouch+monoandroid+xamarin.ios10/ServiceStack.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Interfaces.4.0.54/lib/portable-wp80+sl5+net40+win8+monotouch+monoandroid+xamarin.ios10/ServiceStack.Interfaces.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Mvc.4.0.54/ServiceStack.Mvc.4.0.54.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Mvc.4.0.54/ServiceStack.Mvc.4.0.54.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Mvc.4.0.54/lib/net40/ServiceStack.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Mvc.4.0.54/lib/net40/ServiceStack.Mvc.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Text.4.0.54/ServiceStack.Text.4.0.54.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Text.4.0.54/ServiceStack.Text.4.0.54.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Text.4.0.54/lib/net40/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Text.4.0.54/lib/net40/ServiceStack.Text.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Text.4.0.54/lib/portable-net45+win8+monotouch+monoandroid+xamarin.ios10/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Text.4.0.54/lib/portable-net45+win8+monotouch+monoandroid+xamarin.ios10/ServiceStack.Text.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ServiceStack.Text.4.0.54/lib/sl5/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ServiceStack.Text.4.0.54/lib/sl5/ServiceStack.Text.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Webdiyer.MvcPager.3.0.1.1/Webdiyer.MvcPager.3.0.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Webdiyer.MvcPager.3.0.1.1/Webdiyer.MvcPager.3.0.1.1.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/Webdiyer.MvcPager.3.0.1.1/lib/Webdiyer.MvcPager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Webdiyer.MvcPager.3.0.1.1/lib/Webdiyer.MvcPager.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Webdiyer.MvcPager.3.0.1.1/lib/zh-CHS/Webdiyer.MvcPager.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Webdiyer.MvcPager.3.0.1.1/lib/zh-CHS/Webdiyer.MvcPager.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/Webdiyer.MvcPager.3.0.1.1/lib/zh-CHT/Webdiyer.MvcPager.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/Webdiyer.MvcPager.3.0.1.1/lib/zh-CHT/Webdiyer.MvcPager.resources.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/ZooKeeper.Net.3.4.6.2/ZooKeeper.Net.3.4.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ZooKeeper.Net.3.4.6.2/ZooKeeper.Net.3.4.6.2.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/ZooKeeper.Net.3.4.6.2/lib/net40/ZooKeeperNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/ZooKeeper.Net.3.4.6.2/lib/net40/ZooKeeperNet.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/log4net.1.2.10/lib/1.0/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/log4net.1.2.10/lib/1.0/log4net.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/log4net.1.2.10/lib/1.1/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/log4net.1.2.10/lib/1.1/log4net.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/log4net.1.2.10/lib/2.0/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/log4net.1.2.10/lib/2.0/log4net.dll -------------------------------------------------------------------------------- /ConfigCenter/packages/log4net.1.2.10/log4net.1.2.10.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/ConfigCenter/packages/log4net.1.2.10/log4net.1.2.10.nupkg -------------------------------------------------------------------------------- /ConfigCenter/packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DB/ConfigCenter.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/DB/ConfigCenter.mdf -------------------------------------------------------------------------------- /DB/ConfigCenter_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyb/ConfigCenter2/157ca2321fc7ab1aca9153c31a43826627344567/DB/ConfigCenter_log.ldf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ConfigCenter 2 | 配置中心 3 | --------------------------------------------------------------------------------