├── src ├── Examples │ ├── ProtoGen │ │ ├── Empty.proto │ │ ├── WithBom.proto │ │ ├── rpc.bin │ │ ├── jons.bin │ │ ├── person.bin │ │ ├── keywords.proto │ │ ├── gps.proto │ │ ├── LITE.proto │ │ ├── rpc.proto │ │ ├── searchRequest.proto │ │ ├── csharp_options.proto │ │ ├── person.proto │ │ └── Enums.proto │ ├── packages.config │ ├── Issues │ │ ├── Issue48 │ │ │ └── MXP.Common.proto │ │ ├── Issue32.cs │ │ ├── SO10841807.cs │ │ ├── SO11034791.cs │ │ ├── Issue304.cs │ │ ├── Issue170.cs │ │ ├── Issue210.cs │ │ ├── SO13802844.cs │ │ ├── Issue306.cs │ │ ├── SO12475521.cs │ │ ├── SO11871726.cs │ │ ├── SO7218127.cs │ │ ├── Issue174cs.cs │ │ └── Issue284.cs │ ├── Recursion.cs │ ├── Ppt │ │ └── Ppt.cs │ ├── CoreFxHacks.cs │ ├── Parseable.cs │ ├── SimpleStream │ │ └── NullTypes.cs │ └── Properties │ │ └── Settings.settings ├── protogen.site │ ├── wwwroot │ │ ├── js │ │ │ ├── site.min.js │ │ │ └── site.js │ │ ├── favicon.ico │ │ ├── protoc │ │ │ └── protoc.exe │ │ ├── lib │ │ │ ├── bootstrap │ │ │ │ ├── Gemfile │ │ │ │ ├── grunt │ │ │ │ │ ├── .jshintrc │ │ │ │ │ └── bs-commonjs-generator.js │ │ │ │ ├── less │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── center-block.less │ │ │ │ │ │ ├── size.less │ │ │ │ │ │ ├── opacity.less │ │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ │ ├── background-variant.less │ │ │ │ │ │ ├── resize.less │ │ │ │ │ │ ├── labels.less │ │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ │ ├── alerts.less │ │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ │ ├── reset-text.less │ │ │ │ │ │ ├── border-radius.less │ │ │ │ │ │ ├── pagination.less │ │ │ │ │ │ ├── panels.less │ │ │ │ │ │ ├── hide-text.less │ │ │ │ │ │ ├── list-group.less │ │ │ │ │ │ ├── clearfix.less │ │ │ │ │ │ └── table-row.less │ │ │ │ │ ├── .csslintrc │ │ │ │ │ ├── wells.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── responsive-embed.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ └── pager.less │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ ├── dist │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ └── npm.js │ │ │ │ ├── js │ │ │ │ │ └── .jshintrc │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── nuget │ │ │ │ │ └── MyGet.ps1 │ │ │ │ ├── bower.json │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── package.js │ │ │ │ ├── .bower.json │ │ │ │ └── LICENSE │ │ │ ├── jquery │ │ │ │ └── .bower.json │ │ │ ├── jquery-validation │ │ │ │ └── .bower.json │ │ │ └── monaco-editor │ │ │ │ └── LICENSE │ │ └── css │ │ │ ├── site.min.css │ │ │ └── site.css │ ├── node_modules │ │ ├── ncp │ │ │ ├── test │ │ │ │ ├── regular-fixtures │ │ │ │ │ └── src │ │ │ │ │ │ ├── c │ │ │ │ │ │ ├── d │ │ │ │ │ │ ├── e │ │ │ │ │ │ ├── f │ │ │ │ │ │ ├── sub │ │ │ │ │ │ ├── b │ │ │ │ │ │ └── a │ │ │ │ │ │ ├── a │ │ │ │ │ │ └── b │ │ │ │ ├── modified-files │ │ │ │ │ ├── out │ │ │ │ │ │ └── a │ │ │ │ │ └── src │ │ │ │ │ │ └── a │ │ │ │ └── symlink-fixtures │ │ │ │ │ └── src │ │ │ │ │ ├── foo │ │ │ │ │ └── dir │ │ │ │ │ └── bar │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ └── LICENSE.md │ │ ├── .bin │ │ │ ├── ncp.cmd │ │ │ └── ncp │ │ └── monaco-editor │ │ │ └── LICENSE │ ├── .bowerrc │ ├── Views │ │ ├── _ViewStart.cshtml │ │ └── _ViewImports.cshtml │ ├── postinstall.js │ ├── appsettings.json │ ├── appsettings.Development.json │ ├── bower.json │ ├── package.json │ ├── Program.cs │ ├── bundleconfig.json │ └── Properties │ │ └── launchSettings.json ├── protobuf-net.Test │ ├── Schemas │ │ ├── DropCodeHere.cs │ │ ├── b.proto │ │ ├── simple.proto │ │ ├── wellknown.proto │ │ ├── using_bcl.proto │ │ ├── protogenUsage.proto │ │ ├── OneOf.proto │ │ ├── enums.proto │ │ ├── haztime.proto │ │ ├── distribution_simple.proto │ │ └── a.proto │ ├── xunit.runner.json │ ├── protobuf-net.Test.xunit.runner.json │ ├── protoc.exe │ ├── Serializers │ │ ├── Tag.cs │ │ └── SubItems.cs │ ├── Perf │ │ └── Types103.proto │ └── Issues │ │ └── TurkishL.cs ├── ProtoBuf.snk ├── UpgradeLog.htm ├── Tools │ ├── MiscUtil.dll │ ├── log4net.dll │ ├── protoc.exe │ ├── NHibernate.dll │ ├── Enyim.Caching.dll │ ├── nwind.proto.bin │ ├── IKVM.Reflection.dll │ ├── ProtoSharp.Core.dll │ ├── ProtoSharp.Core.pdb │ ├── nunit.framework.dll │ ├── Protocol Buffers.ppt │ ├── nwind.groups.proto │ ├── nwind.groups.proto.bin │ ├── protoc-license.txt │ └── nwind.proto ├── protogen │ ├── bin.zip │ ├── Properties │ │ └── launchSettings.json │ └── protogenUsage.cs ├── protobuf-net │ ├── GlobalSuppressions.cs │ ├── Serializers │ │ ├── ISerializerProxy.cs │ │ └── IProtoTypeSerializer.cs │ ├── Compiler │ │ └── CompilerDelegates.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Meta │ │ └── ProtoSyntax.cs │ ├── SubItemToken.cs │ ├── ProtoConverterAttribute.cs │ └── PrefixStyle.cs ├── protobuf-net.Reflection │ └── TokenType.cs ├── NuGet.Config ├── protobuf-net.userprefs ├── Backup │ ├── protogen │ │ └── protogen.csproj │ ├── protobuf-net.Reflection │ │ └── protobuf-net.Reflection.csproj │ └── LongDataTests │ │ └── LongDataTests.csproj └── readme.md ├── assorted ├── TestWcfClient │ ├── Service References │ │ └── ServiceReference1 │ │ │ ├── Reference.cs │ │ │ └── Service11.xsd │ ├── Program.cs │ └── Properties │ │ └── DataSources │ │ └── TestWcfDto.CompositeType.datasource ├── Phone_DevRig │ ├── foo.proto │ ├── Background.jpg │ ├── ApplicationIcon.jpg │ ├── SplashScreenImage.jpg │ ├── Properties │ │ └── AppManifest.xml │ ├── MainPage.xaml.cs │ └── App.xaml ├── SampleDto │ └── app.config ├── Net11_Runner │ └── App.ico ├── VBTestRig │ ├── Module1.vb │ ├── VBTestRig.vbproj.user │ └── My Project │ │ ├── Settings.settings │ │ ├── Application.Designer.vb │ │ └── Application.myapp ├── WcfPerfTest │ ├── Demo.suo │ ├── WcfServer │ │ ├── BasicService.asmx │ │ ├── BasicService.svc │ │ ├── NWindMtomService.svc │ │ ├── NWindTextService.svc │ │ ├── BasicMessage.proto │ │ ├── BasicService.svc.cs │ │ ├── INWindService.cs │ │ ├── IBasicService.cs │ │ └── BasicService.asmx.cs │ └── WcfClient │ │ ├── Properties │ │ ├── Settings.settings │ │ └── DataSources │ │ │ └── WcfClient.NWind.OrderSet.datasource │ │ └── Program.cs ├── BasicHttp │ ├── BasicHttp.suo │ ├── HttpServer │ │ ├── MyHandler.ashx │ │ ├── Global.asax │ │ ├── Content │ │ │ └── Site.css │ │ ├── ProtoResult.cs │ │ ├── Controllers │ │ │ └── CustomerController.cs │ │ ├── ProtoPostBinder.cs │ │ ├── MyHandler.ashx.cs │ │ └── Global.asax.cs │ └── MyDtoLayer │ │ └── MySchema.proto ├── ProtoGen │ ├── ProtoGen.ico │ ├── app.config │ ├── protobuf-net.proto │ ├── Properties │ │ └── Usage.txt │ └── xml.xslt ├── SignedDto │ ├── ProtoBuf.snk │ └── Class1.cs ├── Net11_Poco │ └── Net11_Poco.suo ├── precompile │ └── precompile.ico ├── Metro_DevRig │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── StoreLogo.png │ │ └── SplashScreen.png │ ├── Metro_DevRig_TemporaryKey.pfx │ ├── MainPage.xaml │ ├── App.xaml │ └── Properties │ │ └── AssemblyInfo.cs ├── TestWcfServer │ ├── Service1.svc │ └── Service1.svc.cs ├── MonoDto │ ├── Properties │ │ └── AssemblyInfo.cs │ └── MonoDto.csproj.user ├── demo-rpc-server-mvc │ ├── Global.asax │ ├── Northwind.svc │ ├── App_Data │ │ ├── NORTHWIND.MDF │ │ └── NORTHWIND_log.ldf │ ├── ClientBin │ │ └── demo-rpc-client-silverlight.xap │ ├── Models │ │ └── INorthwind.cs │ ├── Default.aspx │ ├── Controllers │ │ ├── NorthwindController.cs │ │ └── HomeController.cs │ ├── Views │ │ ├── Shared │ │ │ ├── LogOnUserControl.ascx │ │ │ └── Error.aspx │ │ └── Home │ │ │ ├── About.aspx │ │ │ └── Index.aspx │ ├── Default.aspx.cs │ ├── Helpers │ │ ├── HtmlHelperExtensions.cs │ │ ├── ProtoController.cs │ │ └── ControllerExtensions.cs │ └── Global.asax.cs ├── protobuf-net.Enyim │ ├── .nuget │ │ ├── NuGet.exe │ │ ├── packages.config │ │ └── NuGet.Config │ ├── protobuf-net.Enyim.1.0.nupkg │ ├── packages │ │ ├── NUnit.2.6.2 │ │ │ ├── license.txt │ │ │ ├── NUnit.2.6.2.nupkg │ │ │ └── lib │ │ │ │ └── nunit.framework.dll │ │ ├── NuGet.CommandLine.2.1.2 │ │ │ ├── tools │ │ │ │ └── NuGet.exe │ │ │ ├── NuGet.CommandLine.2.1.2.nupkg │ │ │ └── NuGet.CommandLine.2.1.2.nuspec │ │ ├── EnyimMemcached.2.12 │ │ │ ├── EnyimMemcached.2.12.nupkg │ │ │ ├── lib │ │ │ │ └── net35 │ │ │ │ │ ├── Enyim.Caching.dll │ │ │ │ │ └── Enyim.Caching.pdb │ │ │ └── EnyimMemcached.2.12.nuspec │ │ ├── protobuf-net.2.0.0.602 │ │ │ ├── lib │ │ │ │ ├── sl4 │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── net20 │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── net30 │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── net35 │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── net40 │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── sl3-wp │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── net20-cf │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── net35-cf │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── net40-cf │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── netcore45 │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ ├── protobuf-net.pdb │ │ │ │ │ └── protobuf-net.pri │ │ │ │ ├── windowsphone8 │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ ├── sl4-windowsphone71 │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ │ └── portable-sl4+wp71+windows8 │ │ │ │ │ ├── protobuf-net.dll │ │ │ │ │ └── protobuf-net.pdb │ │ │ └── protobuf-net.2.0.0.602.nupkg │ │ └── repositories.config │ ├── protobuf-net.Enyim.Tests │ │ ├── app.config │ │ ├── Program.cs │ │ └── packages.config │ └── protobuf-net.Enyim │ │ └── packages.config ├── Phone8_DevRig │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── IconicTileSmall.png │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ └── IconicTileMediumLarge.png │ ├── Phone8DtoSerializer.dll │ ├── Properties │ │ └── AppManifest.xml │ ├── LocalizedStrings.cs │ ├── Phone8_DevRig.csproj.user │ └── App.xaml ├── SqlClr │ └── app.config ├── MonoSerBuilder │ ├── app.config │ └── Program.cs ├── ProtoBufGenerator │ ├── ProtoBufGenerator.ico │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ItemTemplates │ │ └── csharp │ │ │ └── data │ │ │ └── 1033 │ │ │ └── ProtoBuf.zip │ ├── Tools │ │ ├── unregister.bat │ │ ├── ProtoBufGenerator.reg │ │ └── register.bat │ └── CustomTool │ │ ├── GenerationError.cs │ │ ├── GenerationWarning.cs │ │ └── Delegates.cs ├── QuickStart │ ├── app.config │ └── Program.cs ├── MonoDroid_DevRig │ ├── Resources │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── values │ │ │ └── strings.xml │ │ └── layout │ │ │ └── main.xml │ ├── MonoDroid_DevRig.csproj.user │ └── Properties │ │ └── AndroidManifest.xml ├── FX11 │ └── App.config ├── SilverlightExtended │ ├── Nuxleus.WebService │ │ ├── WebServiceType.cs │ │ ├── RequestType.cs │ │ ├── IResponse.cs │ │ ├── PutObjectResponse.cs │ │ ├── IRequest.cs │ │ ├── ITask.cs │ │ └── PutObjectRequest.cs │ ├── Properties │ │ └── AppManifest.xml │ ├── crossdomain.xml │ ├── Nuxleus.Asynchronous │ │ ├── OperationProgressChangedEventHandler.cs │ │ └── OperationProgressChangedEventArgs.cs │ ├── SummaryDetailsView.xaml │ ├── clientaccesspolicy.xml │ ├── SummaryDetailsView.xaml.cs │ ├── PerformanceLogSummary.cs │ └── Nuxleus.MetaData │ │ └── Label.cs ├── demo-rpc-client-silverlight │ ├── Properties │ │ └── AppManifest.xml │ ├── App.xaml │ ├── Northwind.cs │ ├── Page.xaml │ ├── Service References │ │ └── Northwind │ │ │ ├── demo_rpc_client_silverlight.Northwind.Order.datasource │ │ │ └── demo_rpc_client_silverlight.Northwind.Customer.datasource │ └── ServiceReferences.ClientConfig ├── readme.md ├── SilverlightExtended_Web │ └── App_Code │ │ └── Default.aspx.cs ├── SO11895998 │ └── DTOs.cs ├── LateLoaded │ └── FooBar.cs ├── SO11895998_Portable │ └── DTOs.cs ├── Phone8Dto │ └── Phone8Dto.csproj.user ├── MetroDto │ ├── OnceMoreWithFeeling.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── precompile.tests │ └── Issues │ │ └── Net11.cs └── TestWcfDto │ └── IService1.cs ├── Protobuf ├── protobuf-net │ ├── GlobalSuppressions.cs │ ├── Serializers │ │ ├── ISerializerProxy.cs │ │ └── IProtoTypeSerializer.cs │ ├── Compiler │ │ └── CompilerDelegates.cs │ ├── SubItemToken.cs │ ├── Meta │ │ └── ProtoSyntax.cs │ ├── ProtoConverterAttribute.cs │ ├── PrefixStyle.cs │ ├── IExtensible.cs │ └── ProtoException.cs └── Editor │ ├── protobuf-net.Reflection │ └── TokenType.cs │ └── Protogen.cs ├── .gitignore ├── docs └── index.md ├── Licence.txt └── hotfix └── Main.cs /src/Examples/ProtoGen/Empty.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/regular-fixtures/src/c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/regular-fixtures/src/d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/regular-fixtures/src/e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/regular-fixtures/src/f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/protobuf-net.Test/Schemas/DropCodeHere.cs: -------------------------------------------------------------------------------- 1 | // placeholder 2 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/modified-files/out/a: -------------------------------------------------------------------------------- 1 | test3 -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/modified-files/src/a: -------------------------------------------------------------------------------- 1 | test3 -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/regular-fixtures/src/sub/b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assorted/TestWcfClient/Service References/ServiceReference1/Reference.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/protogen.site/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/protobuf-net.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "methodDisplay": "method" 3 | } -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/regular-fixtures/src/a: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/regular-fixtures/src/b: -------------------------------------------------------------------------------- 1 | Hello ncp 2 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/symlink-fixtures/src/foo: -------------------------------------------------------------------------------- 1 | foo contents -------------------------------------------------------------------------------- /assorted/Phone_DevRig/foo.proto: -------------------------------------------------------------------------------- 1 | message Foo { 2 | optional int32 bar = 1; 3 | } -------------------------------------------------------------------------------- /src/protogen.site/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/symlink-fixtures/src/dir/bar: -------------------------------------------------------------------------------- 1 | bar contents -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/test/regular-fixtures/src/sub/a: -------------------------------------------------------------------------------- 1 | Hello nodejitsu 2 | -------------------------------------------------------------------------------- /src/protobuf-net.Test/protobuf-net.Test.xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": true 3 | } -------------------------------------------------------------------------------- /src/ProtoBuf.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/ProtoBuf.snk -------------------------------------------------------------------------------- /src/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/UpgradeLog.htm -------------------------------------------------------------------------------- /src/protobuf-net.Test/Schemas/b.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | package B; 3 | message Foo { 4 | 5 | } -------------------------------------------------------------------------------- /src/Tools/MiscUtil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/MiscUtil.dll -------------------------------------------------------------------------------- /src/Tools/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/log4net.dll -------------------------------------------------------------------------------- /src/Tools/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/protoc.exe -------------------------------------------------------------------------------- /src/protogen/bin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen/bin.zip -------------------------------------------------------------------------------- /assorted/SampleDto/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Tools/NHibernate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/NHibernate.dll -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .*.sw[op] 3 | .DS_Store 4 | test/*fixtures/out 5 | -------------------------------------------------------------------------------- /src/Tools/Enyim.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/Enyim.Caching.dll -------------------------------------------------------------------------------- /src/Tools/nwind.proto.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/nwind.proto.bin -------------------------------------------------------------------------------- /assorted/Net11_Runner/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Net11_Runner/App.ico -------------------------------------------------------------------------------- /assorted/VBTestRig/Module1.vb: -------------------------------------------------------------------------------- 1 | Module Module1 2 | 3 | Sub Main() 4 | 5 | End Sub 6 | 7 | End Module 8 | -------------------------------------------------------------------------------- /assorted/WcfPerfTest/Demo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/WcfPerfTest/Demo.suo -------------------------------------------------------------------------------- /src/Examples/ProtoGen/WithBom.proto: -------------------------------------------------------------------------------- 1 | package WithBom; 2 | message expectToFail { 3 | required string name = 1; 4 | } -------------------------------------------------------------------------------- /src/Examples/ProtoGen/rpc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Examples/ProtoGen/rpc.bin -------------------------------------------------------------------------------- /src/Tools/IKVM.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/IKVM.Reflection.dll -------------------------------------------------------------------------------- /src/Tools/ProtoSharp.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/ProtoSharp.Core.dll -------------------------------------------------------------------------------- /src/Tools/ProtoSharp.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/ProtoSharp.Core.pdb -------------------------------------------------------------------------------- /src/Tools/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/nunit.framework.dll -------------------------------------------------------------------------------- /assorted/BasicHttp/BasicHttp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/BasicHttp/BasicHttp.suo -------------------------------------------------------------------------------- /assorted/ProtoGen/ProtoGen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/ProtoGen/ProtoGen.ico -------------------------------------------------------------------------------- /assorted/SignedDto/ProtoBuf.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/SignedDto/ProtoBuf.snk -------------------------------------------------------------------------------- /src/Examples/ProtoGen/jons.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Examples/ProtoGen/jons.bin -------------------------------------------------------------------------------- /src/Examples/ProtoGen/person.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Examples/ProtoGen/person.bin -------------------------------------------------------------------------------- /src/Tools/Protocol Buffers.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/Protocol Buffers.ppt -------------------------------------------------------------------------------- /src/Tools/nwind.groups.proto: -------------------------------------------------------------------------------- 1 | package DAL; 2 | 3 | message Database { 4 | repeated group Order Orders = 1; 5 | } 6 | -------------------------------------------------------------------------------- /src/Tools/nwind.groups.proto.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/Tools/nwind.groups.proto.bin -------------------------------------------------------------------------------- /src/protobuf-net.Test/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protobuf-net.Test/protoc.exe -------------------------------------------------------------------------------- /src/protogen.site/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using protogen.site 2 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 3 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/ncp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.8 5 | - "0.10" 6 | - "0.11" 7 | -------------------------------------------------------------------------------- /assorted/Net11_Poco/Net11_Poco.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Net11_Poco/Net11_Poco.suo -------------------------------------------------------------------------------- /assorted/precompile/precompile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/precompile/precompile.ico -------------------------------------------------------------------------------- /src/protogen.site/postinstall.js: -------------------------------------------------------------------------------- 1 | var ncp = require('ncp').ncp; 2 | ncp("./node_modules/monaco-editor", "./wwwroot/lib/monaco-editor"); -------------------------------------------------------------------------------- /assorted/Metro_DevRig/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Metro_DevRig/Assets/Logo.png -------------------------------------------------------------------------------- /assorted/Phone_DevRig/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone_DevRig/Background.jpg -------------------------------------------------------------------------------- /src/Examples/ProtoGen/keywords.proto: -------------------------------------------------------------------------------- 1 | message CanHazValue 2 | { 3 | optional int32 value = 1; 4 | 5 | optional int32 int = 2; 6 | } -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/favicon.ico -------------------------------------------------------------------------------- /assorted/BasicHttp/HttpServer/MyHandler.ashx: -------------------------------------------------------------------------------- 1 | <%@ WebHandler Language="C#" CodeBehind="MyHandler.ashx.cs" Class="HttpServer.MyHandler" %> 2 | -------------------------------------------------------------------------------- /assorted/TestWcfServer/Service1.svc: -------------------------------------------------------------------------------- 1 | <%@ ServiceHost Language="C#" Debug="true" Service="TestWcfServer.Service1" CodeBehind="Service1.svc.cs" %> -------------------------------------------------------------------------------- /src/protobuf-net/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protobuf-net/GlobalSuppressions.cs -------------------------------------------------------------------------------- /assorted/BasicHttp/HttpServer/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="HttpServer.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /assorted/Metro_DevRig/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Metro_DevRig/Assets/SmallLogo.png -------------------------------------------------------------------------------- /assorted/Metro_DevRig/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Metro_DevRig/Assets/StoreLogo.png -------------------------------------------------------------------------------- /assorted/Phone_DevRig/ApplicationIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone_DevRig/ApplicationIcon.jpg -------------------------------------------------------------------------------- /Protobuf/protobuf-net/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/Protobuf/protobuf-net/GlobalSuppressions.cs -------------------------------------------------------------------------------- /assorted/MonoDto/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/MonoDto/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /assorted/Phone_DevRig/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone_DevRig/SplashScreenImage.jpg -------------------------------------------------------------------------------- /assorted/WcfPerfTest/WcfServer/BasicService.asmx: -------------------------------------------------------------------------------- 1 | <%@ WebService Language="C#" CodeBehind="BasicService.asmx.cs" Class="WcfServer.BasicService1" %> 2 | -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="demo_rpc_server_mvc.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/.nuget/NuGet.exe -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/protoc/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/protoc/protoc.exe -------------------------------------------------------------------------------- /assorted/Metro_DevRig/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Metro_DevRig/Assets/SplashScreen.png -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone8_DevRig/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/Phone8DtoSerializer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone8_DevRig/Phone8DtoSerializer.dll -------------------------------------------------------------------------------- /assorted/ProtoGen/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assorted/SqlClr/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assorted/MonoSerBuilder/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone8_DevRig/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /assorted/ProtoBufGenerator/ProtoBufGenerator.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/ProtoBufGenerator/ProtoBufGenerator.ico -------------------------------------------------------------------------------- /assorted/QuickStart/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/Northwind.svc: -------------------------------------------------------------------------------- 1 | <%@ ServiceHost Language="C#" Debug="true" Service="demo_rpc_server_mvc.Northwind" CodeBehind="Northwind.svc.cs" %> 2 | -------------------------------------------------------------------------------- /assorted/Metro_DevRig/Metro_DevRig_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Metro_DevRig/Metro_DevRig_TemporaryKey.pfx -------------------------------------------------------------------------------- /assorted/WcfPerfTest/WcfServer/BasicService.svc: -------------------------------------------------------------------------------- 1 | <%@ ServiceHost Language="C#" Debug="true" Service="WcfServer.BasicService" CodeBehind="BasicService.svc.cs" %> 2 | -------------------------------------------------------------------------------- /assorted/WcfPerfTest/WcfServer/NWindMtomService.svc: -------------------------------------------------------------------------------- 1 | <%@ ServiceHost Language="C#" Debug="true" Service="WcfServer.NWindMtomService" CodeBehind="NWindService.svc.cs" %> -------------------------------------------------------------------------------- /assorted/WcfPerfTest/WcfServer/NWindTextService.svc: -------------------------------------------------------------------------------- 1 | <%@ ServiceHost Language="C#" Debug="true" Service="WcfServer.NWindTextService" CodeBehind="NWindService.svc.cs" %> -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/App_Data/NORTHWIND.MDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/demo-rpc-server-mvc/App_Data/NORTHWIND.MDF -------------------------------------------------------------------------------- /src/protogen.site/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /assorted/ProtoBufGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/ProtoBufGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone8_DevRig/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/App_Data/NORTHWIND_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/demo-rpc-server-mvc/App_Data/NORTHWIND_log.ldf -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/protobuf-net.Enyim.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/protobuf-net.Enyim.1.0.nupkg -------------------------------------------------------------------------------- /assorted/MonoDroid_DevRig/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/MonoDroid_DevRig/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /assorted/MonoDroid_DevRig/Resources/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/MonoDroid_DevRig/Resources/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /assorted/MonoDroid_DevRig/Resources/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/MonoDroid_DevRig/Resources/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone8_DevRig/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone8_DevRig/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone8_DevRig/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/.nuget/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/protobuf-net.Test/Schemas/simple.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | message SearchRequest { 3 | string query = 1; 4 | int32 page_number = 2; 5 | int32 result_per_page = 3; 6 | } -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/Phone8_DevRig/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /assorted/ProtoGen/protobuf-net.proto: -------------------------------------------------------------------------------- 1 | package protobuf_net; 2 | import "descriptor.proto"; 3 | 4 | extend google.protobuf.FileOptions { 5 | optional string namespace = 52500; 6 | } -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/NUnit.2.6.2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/NUnit.2.6.2/license.txt -------------------------------------------------------------------------------- /src/Examples/ProtoGen/gps.proto: -------------------------------------------------------------------------------- 1 | package issue32; 2 | message GPS 3 | { 4 | required int64 Date=1; 5 | optional double Latitude = 2; 6 | optional double Longitude = 3; 7 | } -------------------------------------------------------------------------------- /src/Examples/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/protogen/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "protogen": { 4 | "commandName": "Project", 5 | "commandLineArgs": "--version" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/protobuf-net.Enyim.Tests/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /assorted/FX11/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/NUnit.2.6.2/NUnit.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/NUnit.2.6.2/NUnit.2.6.2.nupkg -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | group :development, :test do 4 | gem 'jekyll', '~> 3.1.2' 5 | gem 'jekyll-sitemap', '~> 0.11.0' 6 | end 7 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /assorted/ProtoBufGenerator/ItemTemplates/csharp/data/1033/ProtoBuf.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/ProtoBufGenerator/ItemTemplates/csharp/data/1033/ProtoBuf.zip -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/ClientBin/demo-rpc-client-silverlight.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/demo-rpc-server-mvc/ClientBin/demo-rpc-client-silverlight.xap -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/NUnit.2.6.2/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/NUnit.2.6.2/lib/nunit.framework.dll -------------------------------------------------------------------------------- /assorted/SilverlightExtended/Nuxleus.WebService/WebServiceType.cs: -------------------------------------------------------------------------------- 1 | namespace Nuxleus.WebService { 2 | public enum WebServiceType { 3 | SOAP, 4 | REST, 5 | QUERY 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/NuGet.CommandLine.2.1.2/tools/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/NuGet.CommandLine.2.1.2/tools/NuGet.exe -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assorted/SilverlightExtended/Nuxleus.WebService/RequestType.cs: -------------------------------------------------------------------------------- 1 | namespace Nuxleus.WebService { 2 | public enum RequestType { 3 | PUT, 4 | POST, 5 | GET, 6 | DELETE 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/EnyimMemcached.2.12/EnyimMemcached.2.12.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/EnyimMemcached.2.12/EnyimMemcached.2.12.nupkg -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/.nuget/NuGet.Config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/EnyimMemcached.2.12/lib/net35/Enyim.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/EnyimMemcached.2.12/lib/net35/Enyim.Caching.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/EnyimMemcached.2.12/lib/net35/Enyim.Caching.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/EnyimMemcached.2.12/lib/net35/Enyim.Caching.pdb -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl4/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl4/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl4/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl4/protobuf-net.pdb -------------------------------------------------------------------------------- /src/protogen.site/node_modules/.bin/ncp.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\ncp\bin\ncp" %* 3 | ) ELSE ( 4 | @SETLOCAL 5 | @SET PATHEXT=%PATHEXT:;.JS;=;% 6 | node "%~dp0\..\ncp\bin\ncp" %* 7 | ) -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net20/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net20/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net20/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net20/protobuf-net.pdb -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net30/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net30/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net30/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net30/protobuf-net.pdb -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net35/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net35/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net35/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net35/protobuf-net.pdb -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net40/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net40/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net40/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net40/protobuf-net.pdb -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl3-wp/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl3-wp/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl3-wp/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl3-wp/protobuf-net.pdb -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/src/protogen.site/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net20-cf/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net20-cf/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net20-cf/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net20-cf/protobuf-net.pdb -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net35-cf/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net35-cf/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net35-cf/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net35-cf/protobuf-net.pdb -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net40-cf/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net40-cf/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net40-cf/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/net40-cf/protobuf-net.pdb -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/protobuf-net.2.0.0.602.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/protobuf-net.2.0.0.602.nupkg -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /Protobuf/protobuf-net/Serializers/ISerializerProxy.cs: -------------------------------------------------------------------------------- 1 | #if !NO_RUNTIME 2 | 3 | namespace ProtoBuf.Serializers 4 | { 5 | interface ISerializerProxy 6 | { 7 | IProtoSerializer Serializer { get; } 8 | } 9 | } 10 | #endif -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/NuGet.CommandLine.2.1.2/NuGet.CommandLine.2.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/NuGet.CommandLine.2.1.2/NuGet.CommandLine.2.1.2.nupkg -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/netcore45/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/netcore45/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/netcore45/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/netcore45/protobuf-net.pdb -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/netcore45/protobuf-net.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/netcore45/protobuf-net.pri -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /assorted/MonoDroid_DevRig/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, Click Me! 4 | MonoDroid_DevRig 5 | 6 | -------------------------------------------------------------------------------- /assorted/ProtoBufGenerator/Tools/unregister.bat: -------------------------------------------------------------------------------- 1 | rem @echo off 2 | rem "%ProgramFiles%\Microsoft SDKs\Windows\v6.0A\bin\gacutil.exe" /nologo /uf "%~n1" 3 | rem "%windir%\Microsoft.NET\Framework\v2.0.50727\regasm.exe" /nologo /unregister "%1" 4 | exit 0 -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/windowsphone8/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/windowsphone8/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/windowsphone8/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/windowsphone8/protobuf-net.pdb -------------------------------------------------------------------------------- /src/protobuf-net/Serializers/ISerializerProxy.cs: -------------------------------------------------------------------------------- 1 | #if !NO_RUNTIME 2 | 3 | namespace ProtoBuf.Serializers 4 | { 5 | interface ISerializerProxy 6 | { 7 | IProtoSerializer Serializer { get; } 8 | } 9 | } 10 | #endif -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/Models/INorthwind.cs: -------------------------------------------------------------------------------- 1 | namespace demo_rpc_server_mvc.Models 2 | { 3 | public interface INorthwind 4 | { 5 | Customer[] GetCustomers(); 6 | Order[] GetOrders(string customerKey); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl4-windowsphone71/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl4-windowsphone71/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl4-windowsphone71/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/sl4-windowsphone71/protobuf-net.pdb -------------------------------------------------------------------------------- /src/protogen.site/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "IncludeScopes": false, 4 | "LogLevel": { 5 | "Default": "Debug", 6 | "System": "Information", 7 | "Microsoft": "Information" 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assorted/VBTestRig/VBTestRig.vbproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /src/protobuf-net.Reflection/TokenType.cs: -------------------------------------------------------------------------------- 1 | namespace ProtoBuf.Reflection 2 | { 3 | internal enum TokenType 4 | { 5 | None, 6 | Whitespace, 7 | StringLiteral, 8 | AlphaNumeric, 9 | Symbol 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Protobuf/Editor/protobuf-net.Reflection/TokenType.cs: -------------------------------------------------------------------------------- 1 | namespace ProtoBuf.Reflection 2 | { 3 | internal enum TokenType 4 | { 5 | None, 6 | Whitespace, 7 | StringLiteral, 8 | AlphaNumeric, 9 | Symbol 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assorted/Phone_DevRig/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/portable-sl4+wp71+windows8/protobuf-net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/portable-sl4+wp71+windows8/protobuf-net.dll -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/portable-sl4+wp71+windows8/protobuf-net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyecp/protobuf-net-ILRuntime/HEAD/assorted/protobuf-net.Enyim/packages/protobuf-net.2.0.0.602/lib/portable-sl4+wp71+windows8/protobuf-net.pdb -------------------------------------------------------------------------------- /src/protobuf-net.Test/Schemas/wellknown.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | import "google/protobuf/timestamp.proto"; 3 | import "google/protobuf/duration.proto"; 4 | 5 | message HazWellKnownTypes { 6 | google.protobuf.Timestamp x = 1; 7 | google.protobuf.Duration y = 2; 8 | } -------------------------------------------------------------------------------- /src/protogen.site/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "asp.net", 3 | "private": true, 4 | "dependencies": { 5 | "bootstrap": "3.3.7", 6 | "jquery": "2.2.0", 7 | "jquery-validation": "1.14.0", 8 | "jquery-validation-unobtrusive": "3.2.6" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assorted/MonoDto/MonoDto.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /assorted/QuickStart/Program.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace QuickStart 3 | { 4 | class Program 5 | { 6 | static void Main() 7 | { 8 | FileAccess.ShowFileAccess(); 9 | Sockets.ShowSockets(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assorted/SilverlightExtended/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /src/protogen.site/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "asp.net", 3 | "version": "1.0.0", 4 | "dependencies": { 5 | "monaco-editor": "0.8.3" 6 | }, 7 | "devDependencies": {"ncp": "2.0.0"}, 8 | "private": true, 9 | "scripts": {"postinstall": "postinstall.js"} 10 | } 11 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Protobuf/protobuf-net/Compiler/CompilerDelegates.cs: -------------------------------------------------------------------------------- 1 | #if FEAT_COMPILER 2 | namespace ProtoBuf.Compiler 3 | { 4 | internal delegate void ProtoSerializer(object value, ProtoWriter dest); 5 | internal delegate object ProtoDeserializer(object value, ProtoReader source); 6 | } 7 | #endif -------------------------------------------------------------------------------- /assorted/SilverlightExtended/crossdomain.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assorted/demo-rpc-client-silverlight/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/protobuf-net.Enyim/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assorted/readme.md: -------------------------------------------------------------------------------- 1 | Assorted Stuff 2 | - 3 | 4 | This is bits and pieces that were left over when refactoring the build system. Some of these may be perfectly valid and may be moved to /src in due course; some may now be completely redundant and are best ignored (*cough silverlight cough*). -------------------------------------------------------------------------------- /src/protobuf-net/Compiler/CompilerDelegates.cs: -------------------------------------------------------------------------------- 1 | #if FEAT_COMPILER 2 | namespace ProtoBuf.Compiler 3 | { 4 | internal delegate void ProtoSerializer(object value, ProtoWriter dest); 5 | internal delegate object ProtoDeserializer(object value, ProtoReader source); 6 | } 7 | #endif -------------------------------------------------------------------------------- /assorted/MonoDroid_DevRig/MonoDroid_DevRig.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /assorted/SilverlightExtended/Nuxleus.Asynchronous/OperationProgressChangedEventHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace SilverlightExtended { 4 | public delegate void OperationProgressChangedEventHandler(AsyncProtoBufOperation sender, OperationProgressChangedEventArgs e); 5 | } 6 | -------------------------------------------------------------------------------- /src/protobuf-net.Test/Schemas/using_bcl.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | import "protobuf-net/bcl.proto"; 4 | 5 | message Foo { 6 | bcl.TimeSpan time = 1; 7 | bcl.DateTime date = 2; 8 | bcl.DateTime.DateTimeKind kind = 3; 9 | bcl.Guid guid = 4; 10 | bcl.Decimal decimal = 5; 11 | } -------------------------------------------------------------------------------- /assorted/SilverlightExtended/SummaryDetailsView.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/Examples/ProtoGen/LITE.proto: -------------------------------------------------------------------------------- 1 | package com.idatt.dto; 2 | 3 | option java_package = "com.idatt.dto"; 4 | option java_outer_classname = "Protos"; 5 | option optimize_for = LITE_RUNTIME; 6 | 7 | message Positions 8 | { 9 | repeated Position Items = 1; 10 | } 11 | message Position {} -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/Default.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="demo_rpc_server_mvc._Default" %> 2 | 3 | <%-- Please do not delete this file. It is used to ensure that ASP.NET MVC is activated by IIS when a user makes a "/" request to the server. --%> 4 | -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/protobuf-net.Enyim.Tests/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace protobuf_net.Enyim.Tests 6 | { 7 | class Program 8 | { 9 | static void Main() 10 | { 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assorted/WcfPerfTest/WcfClient/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/protobuf-net.Test/Schemas/protogenUsage.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | import "protobuf-net/protogen.proto"; 3 | 4 | message Foo { 5 | option (.protobuf_net.msgopt).name = "Bar"; 6 | 7 | int32 id = 1 [(.protobuf_net.fieldopt).access = INTERNAL]; 8 | map item = 2 [(.protobuf_net.fieldopt).asRef = true]; 9 | } -------------------------------------------------------------------------------- /assorted/SilverlightExtended/Nuxleus.WebService/IResponse.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.IO; 3 | 4 | namespace Nuxleus.WebService { 5 | public interface IResponse { 6 | KeyValuePair[] Headers { get; set;} 7 | MemoryStream Response { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- 1 | body{padding-top:50px;padding-bottom:20px}.body-content{padding-left:15px;padding-right:15px}input,select,textarea{max-width:280px}.carousel-caption p{font-size:20px;line-height:1.4}.carousel-inner .item img[src$=".svg"]{width:100%}@media screen and (max-width:767px){.carousel-caption{display:none}} 2 | -------------------------------------------------------------------------------- /assorted/VBTestRig/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /src/Examples/ProtoGen/rpc.proto: -------------------------------------------------------------------------------- 1 | message SearchRequest { 2 | required string query = 1; 3 | optional int32 page_number = 2; 4 | optional int32 result_per_page = 3; 5 | } 6 | message SearchResponse { 7 | repeated string result = 1; 8 | } 9 | service SearchService { 10 | rpc Search (SearchRequest) returns (SearchResponse); 11 | } -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/protobuf-net.Enyim.Tests/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/protogen.site/node_modules/.bin/ncp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../ncp/bin/ncp" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../ncp/bin/ncp" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /assorted/demo-rpc-client-silverlight/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /assorted/SilverlightExtended/Nuxleus.WebService/PutObjectResponse.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.IO; 3 | 4 | namespace Nuxleus.WebService { 5 | 6 | public struct PutObjectResponse : IResponse { 7 | public KeyValuePair[] Headers { get; set; } 8 | public MemoryStream Response { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | artifacts 3 | bin 4 | obj 5 | *.user 6 | TestFiles/ 7 | *.suo 8 | Tools/PEVerify.* 9 | packages/ 10 | project.lock.json 11 | Tests.Dnx/*.dll 12 | Tests.Dnx/*.bin 13 | Tests.Dnx/*.dat 14 | Tests.Dnx/*.dump 15 | Tests.Dnx/Data.protobuf 16 | Tests.Dnx/big.file 17 | Tests.Dnx/sandbox.txt 18 | Tests.Dnx/protoTest.txt 19 | Tests.Dnx/TraceCompile.txt 20 | *.NoCommit.* 21 | del.me -------------------------------------------------------------------------------- /assorted/MonoDroid_DevRig/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/protobuf-net.Test/Schemas/OneOf.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | import "protobuf-net/bcl.proto"; 3 | import "google/protobuf/Timestamp.proto"; 4 | import "google/protobuf/Duration.proto"; 5 | 6 | message Foo { 7 | oneof my_union { 8 | .google.protobuf.Timestamp t = 1; 9 | .google.protobuf.Duration d = 2; 10 | .bcl.Guid g = 3; 11 | int64 x = 4; 12 | // string v = 5; 13 | } 14 | } -------------------------------------------------------------------------------- /src/protobuf-net.Test/Schemas/enums.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto2"; 2 | enum Foo { 3 | A = 1; 4 | B = 2; 5 | C = 0; 6 | } 7 | enum Bar { 8 | D = 0; 9 | E = 1; 10 | F = 2; 11 | } 12 | message EnumFirstIsNonZero { 13 | optional Foo optional = 1; 14 | required Foo required = 2; 15 | } 16 | message EnumFirstIsZero { 17 | optional Bar optional = 1; 18 | required Bar required = 2; 19 | } -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : true, 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true 15 | } 16 | -------------------------------------------------------------------------------- /src/NuGet.Config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/Controllers/NorthwindController.cs: -------------------------------------------------------------------------------- 1 | using demo_rpc_server_mvc.Models; 2 | using Protobuf.Web.Mvc; 3 | 4 | namespace demo_rpc_server_mvc.Controllers 5 | { 6 | public class NorthwindController : ProtoController 7 | { 8 | public NorthwindController() 9 | { 10 | Add(); 11 | } 12 | 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /assorted/SilverlightExtended/Nuxleus.WebService/IRequest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace Nuxleus.WebService { 5 | public interface IRequest { 6 | KeyValuePair[] Headers { get; } 7 | RequestType RequestType { get; } 8 | Uri RequestUri { get; set; } 9 | String RequestMessage { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /assorted/SilverlightExtended/clientaccesspolicy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /assorted/WcfPerfTest/WcfServer/BasicMessage.proto: -------------------------------------------------------------------------------- 1 | package BasicProtoDemo; 2 | message BasicMessage { 3 | required int32 id = 1; 4 | required string name = 2; 5 | } 6 | message BasicOperationResponse { 7 | required BasicMessage result = 1; 8 | } 9 | message BasicOperationRequest { 10 | } 11 | service BasicService { 12 | rpc BasicOperation (BasicOperationRequest) returns (BasicOperationResponse); 13 | } -------------------------------------------------------------------------------- /assorted/protobuf-net.Enyim/packages/repositories.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assorted/ProtoBufGenerator/CustomTool/GenerationError.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ProtoBufGenerator 7 | { 8 | public class GenerationError 9 | { 10 | public int LineNumber { get; set; } 11 | public int ColumnNumber { get; set; } 12 | public string Message { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /assorted/ProtoBufGenerator/CustomTool/GenerationWarning.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace ProtoBufGenerator 7 | { 8 | public class GenerationWarning 9 | { 10 | public int LineNumber { get; set; } 11 | public int ColumnNumber { get; set; } 12 | public string Message { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // WebKit-specific. Other browsers will keep their default outline style. 5 | // (Initially tried to also force default via `outline: initial`, 6 | // but that seems to erroneously remove the outline in Firefox altogether.) 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /assorted/SilverlightExtended_Web/App_Code/Default.aspx.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.UI; 6 | using System.Web.UI.WebControls; 7 | 8 | namespace SilverlightExtended_Web { 9 | public partial class _Default : System.Web.UI.Page { 10 | protected void Page_Load(object sender, EventArgs e) { 11 | 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /assorted/WcfPerfTest/WcfServer/BasicService.svc.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace WcfServer 3 | { 4 | // NOTE: If you change the class name "BasicService" here, you must also update the reference to "BasicService" in Web.config. 5 | public class BasicService : IBasicService 6 | { 7 | public BasicType BasicOperation() 8 | { 9 | return new BasicType { Id = 123, Name = "abc" }; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assorted/SO11895998/DTOs.cs: -------------------------------------------------------------------------------- 1 | 2 | using ProtoBuf; 3 | namespace SO11895998 4 | { 5 | [ProtoContract] 6 | [ProtoInclude(2, typeof(Bar))] 7 | public abstract class Foo 8 | { 9 | [ProtoMember(1)] 10 | public int Value { get; set; } 11 | } 12 | 13 | [ProtoContract] 14 | public class Bar : Foo 15 | { 16 | [ProtoMember(2)] 17 | public string Name { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assorted/BasicHttp/MyDtoLayer/MySchema.proto: -------------------------------------------------------------------------------- 1 | message Customer { 2 | required int32 id = 1; 3 | required string name = 2; 4 | optional Address address = 3; 5 | 6 | } 7 | message Address { 8 | required string line1 = 1; 9 | optional string line2 = 2; 10 | 11 | optional string zip = 7; 12 | } 13 | message GetCustomerRequest { 14 | required int32 id = 1; 15 | } 16 | message GetCustomerResponse { 17 | optional Customer cust = 1; 18 | } -------------------------------------------------------------------------------- /assorted/LateLoaded/FooBar.cs: -------------------------------------------------------------------------------- 1 | 2 | using ProtoBuf; 3 | namespace LateLoaded 4 | { 5 | [ProtoContract] 6 | [ProtoInclude(2, typeof(Bar))] 7 | public class Foo 8 | { 9 | [ProtoMember(1)] 10 | public string BaseProp { get; set; } 11 | } 12 | 13 | [ProtoContract] 14 | public class Bar : Foo 15 | { 16 | [ProtoMember(1)] 17 | public string ChildProp { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /assorted/Phone8_DevRig/LocalizedStrings.cs: -------------------------------------------------------------------------------- 1 | using Phone8_DevRig.Resources; 2 | 3 | namespace Phone8_DevRig 4 | { 5 | /// 6 | /// Provides access to string resources. 7 | /// 8 | public class LocalizedStrings 9 | { 10 | private static AppResources _localizedResources = new AppResources(); 11 | 12 | public AppResources LocalizedResources { get { return _localizedResources; } } 13 | } 14 | } -------------------------------------------------------------------------------- /assorted/SO11895998_Portable/DTOs.cs: -------------------------------------------------------------------------------- 1 | 2 | using ProtoBuf; 3 | namespace SO11895998 4 | { 5 | [ProtoContract] 6 | [ProtoInclude(2, typeof(Bar))] 7 | public abstract class Foo 8 | { 9 | [ProtoMember(1)] 10 | public int Value { get; set; } 11 | } 12 | 13 | [ProtoContract] 14 | public class Bar : Foo 15 | { 16 | [ProtoMember(2)] 17 | public string Name { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/protobuf-net.Test/Schemas/haztime.proto: -------------------------------------------------------------------------------- 1 | package ProtoBuf.Serializers; 2 | import "protobuf-net/bcl.proto"; // schema for protobuf-net's handling of core .NET types 3 | import "google/protobuf/Timestamp.proto"; 4 | import "google/protobuf/Duration.proto"; 5 | 6 | message HazTime { 7 | optional .bcl.DateTime a = 1; 8 | optional .google.protobuf.Timestamp b = 2; 9 | optional .bcl.TimeSpan c = 3; 10 | optional .google.protobuf.Duration d = 4; 11 | } 12 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/Views/Shared/LogOnUserControl.ascx: -------------------------------------------------------------------------------- 1 | <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> 2 | <% 3 | if (Request.IsAuthenticated) { 4 | %> 5 | Welcome <%= Html.Encode(Page.User.Identity.Name) %>! 6 | [ <%= Html.ActionLink("Log Off", "LogOff", "Account") %> ] 7 | <% 8 | } 9 | else { 10 | %> 11 | [ <%= Html.ActionLink("Log On", "LogOn", "Account") %> ] 12 | <% 13 | } 14 | %> 15 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs. 2 | 3 | See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. 4 | 5 | Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release. 6 | -------------------------------------------------------------------------------- /assorted/demo-rpc-server-mvc/Views/Home/About.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> 2 | 3 | 4 | About Us 5 | 6 | 7 | 8 |

About

9 |

10 | Put content here. 11 |

12 |
13 | -------------------------------------------------------------------------------- /src/Examples/Issues/Issue48/MXP.Common.proto: -------------------------------------------------------------------------------- 1 | // Metaverse Structured Data Types 2 | 3 | message MsdVector3f { 4 | required float X=1; 5 | required float Y=2; 6 | required float Z=3; 7 | } 8 | 9 | message MsdQuaternion4f { 10 | required float X=1; 11 | required float Y=2; 12 | required float Z=3; 13 | required float W=4; 14 | } 15 | 16 | message MsdColor4f { 17 | required float R=1; 18 | required float G=2; 19 | required float B=3; 20 | required float A=4; 21 | } 22 | -------------------------------------------------------------------------------- /src/protogen.site/wwwroot/lib/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table !important; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /assorted/MonoDroid_DevRig/Resources/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 |