├── .gitattributes ├── .gitignore ├── License.txt ├── Notice.txt ├── Readme.md ├── fx └── Sharpen │ ├── Core │ ├── Application.Behaviors.cs │ ├── Application.Bindings.cs │ ├── Application.Services.cs │ ├── Application.Templates.cs │ ├── Application.cs │ ├── Behavior.cs │ ├── BehaviorRegistration.cs │ ├── Binder.cs │ ├── BinderFactory.cs │ ├── BinderManager.cs │ ├── Bindings │ │ ├── BindExpression.cs │ │ ├── ContentBinder.cs │ │ ├── EventBinder.cs │ │ ├── PropertyBinder.cs │ │ ├── ValueBinder.cs │ │ └── VisibilityBinder.cs │ ├── Core.csproj │ ├── Expression.cs │ ├── ExpressionFactory.cs │ ├── OptionsParser.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── FxCop.ruleset │ │ └── TemplateEngine.js │ ├── ServiceRegistration.cs │ ├── Template.cs │ ├── TemplateEngine.cs │ └── packages.config │ ├── Sharpen.sln │ └── packages │ ├── nuget.exe │ ├── nuget.targets │ └── repositories.config ├── samples ├── .gitignore ├── AroundMe │ ├── AroundMe.sln │ ├── AroundMe │ │ ├── AroundMe.csproj │ │ ├── Core │ │ │ ├── Model.cs │ │ │ ├── PropertyChangedEventArgs.cs │ │ │ └── Utility.cs │ │ ├── DataModel │ │ │ └── Photo.cs │ │ ├── Graphs │ │ │ ├── Graph.cs │ │ │ ├── GraphEdge.cs │ │ │ ├── GraphLayout.cs │ │ │ └── GraphNode.cs │ │ ├── Page.cs │ │ ├── PageModel.cs │ │ ├── PhotoView.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ ├── Services │ │ │ ├── Base58.cs │ │ │ ├── FlickrService.cs │ │ │ ├── HtmlStorageService.cs │ │ │ ├── IFlickrService.cs │ │ │ └── IStorageService.cs │ │ ├── Tests │ │ │ ├── MockFlickrService.cs │ │ │ └── PageModelTests.cs │ │ └── packages.config │ ├── AroundMeTests.testsettings │ ├── AroundMeTests │ │ ├── AroundMeTests.csproj │ │ ├── DefaultTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web │ │ │ ├── DefaultTests.htm │ │ │ ├── QUnit.css │ │ │ ├── QUnit.js │ │ │ └── QUnitExt.js │ │ └── packages.config │ ├── AroundMeWeb │ │ ├── AroundMeWeb.csproj │ │ ├── Content │ │ │ ├── CloseButton.png │ │ │ ├── Dot.png │ │ │ ├── Flickr.png │ │ │ ├── Heart.png │ │ │ ├── Location.png │ │ │ ├── PlaceHolder.png │ │ │ ├── ProgressBar.gif │ │ │ ├── Pushpin.png │ │ │ ├── Reset.png │ │ │ ├── Search.png │ │ │ ├── Site.css │ │ │ └── Twitter.png │ │ ├── Default.htm │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── MapDemo │ │ ├── Map.htm │ │ ├── MapApplication.cs │ │ ├── MapDemo.csproj │ │ ├── MapPage.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ └── packages.config │ ├── Twitter │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── ScriptInfo.txt │ │ ├── Twitter.cs │ │ ├── Twitter.csproj │ │ └── packages.config │ └── packages │ │ ├── nuget.exe │ │ ├── nuget.targets │ │ └── repositories.config ├── Cellar │ ├── Cellar.sln │ ├── CellarClient │ │ ├── CellarApplication.cs │ │ ├── CellarClient.csproj │ │ ├── DataModels │ │ │ ├── Wine.cs │ │ │ └── WineResults.cs │ │ ├── Page.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ └── packages.config │ ├── CellarServer │ │ ├── CellarApplication.cs │ │ ├── CellarServer.csproj │ │ ├── Content │ │ │ ├── cellar.html │ │ │ ├── images │ │ │ │ ├── bg.jpg │ │ │ │ ├── github.png │ │ │ │ └── wine.png │ │ │ ├── index.html │ │ │ ├── scripts │ │ │ │ ├── jquery-1.4.4.min.js │ │ │ │ ├── jquery.reveal.js │ │ │ │ ├── knockout-2.1.0.js │ │ │ │ └── require.min.js │ │ │ ├── site.css │ │ │ └── wines │ │ │ │ ├── argiano.jpg │ │ │ │ ├── block_nine.jpg │ │ │ │ ├── bodega_lurton.jpg │ │ │ │ ├── bouscat.jpg │ │ │ │ ├── calera.jpg │ │ │ │ ├── caronne.jpg │ │ │ │ ├── dinastia.jpg │ │ │ │ ├── domaine_serene.jpg │ │ │ │ ├── ex_umbris.jpg │ │ │ │ ├── fourvines.jpg │ │ │ │ ├── hugel.jpg │ │ │ │ ├── lan_rioja.jpg │ │ │ │ ├── le_doyenne.jpg │ │ │ │ ├── margerum.jpg │ │ │ │ ├── momo.jpg │ │ │ │ ├── morizottes.jpg │ │ │ │ ├── petalos.jpg │ │ │ │ ├── ponzi.jpg │ │ │ │ ├── quivira.jpg │ │ │ │ ├── rex_hill.jpg │ │ │ │ ├── saint_cosme.jpg │ │ │ │ ├── shafer.jpg │ │ │ │ ├── viticcio.jpg │ │ │ │ └── waterbrook.jpg │ │ ├── Controllers │ │ │ └── WinesController.cs │ │ ├── DataModels │ │ │ └── Wine.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ ├── Server.cs │ │ ├── Services │ │ │ ├── IWineRepository.cs │ │ │ └── MongoLab │ │ │ │ └── MongoWineRepository.cs │ │ ├── data.json │ │ ├── package.json │ │ └── packages.config │ └── packages │ │ ├── nuget.exe │ │ ├── nuget.targets │ │ └── repositories.config ├── FishTank │ ├── Fish.cs │ ├── FishSprites.png │ ├── FishTank.cs │ ├── FishTank.csproj │ ├── FishTank.htm │ ├── FishTank.jpg │ ├── FishTank.sln │ ├── FishTankApplication.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── FxCop.ruleset │ ├── packages.config │ └── packages │ │ ├── nuget.exe │ │ ├── nuget.targets │ │ └── repositories.config ├── KOWorld │ ├── App │ │ ├── App.csproj │ │ ├── AppModel.cs │ │ ├── HelloPage.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ └── packages.config │ ├── KOWorld.sln │ ├── Web │ │ ├── Hello.html │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.csproj │ │ └── packages.config │ └── packages │ │ ├── nuget.exe │ │ ├── nuget.targets │ │ └── repositories.config ├── Photos │ ├── Flickr │ │ ├── Flickr.csproj │ │ ├── FlickrClient │ │ │ ├── Flickr.cs │ │ │ └── Json.cs │ │ ├── FlickrPhotoService.cs │ │ ├── IPhotoService.cs │ │ ├── Photo.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ └── packages.config │ ├── PhotoGrid │ │ ├── PhotoGrid.csproj │ │ ├── PhotoGridPage.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ └── packages.config │ ├── PhotoList │ │ ├── GalleryPlugin.cs │ │ ├── ListPage.cs │ │ ├── PhotoList.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ ├── Tests │ │ │ ├── GalleryPluginTests.cs │ │ │ └── MockFlickrService.cs │ │ └── packages.config │ ├── PhotoListTests.testsettings │ ├── PhotoListTests │ │ ├── GalleryPluginTests.cs │ │ ├── PhotoListTests.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web │ │ │ ├── GalleryPluginTests.htm │ │ │ ├── QUnit.css │ │ │ ├── QUnit.js │ │ │ └── QUnitExt.js │ │ └── packages.config │ ├── PhotoTiles │ │ ├── PhotoTiles.csproj │ │ ├── PhotoTilesPage.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ └── packages.config │ ├── Photos.sln │ ├── PhotosWeb │ │ ├── Content │ │ │ ├── Images │ │ │ │ ├── lightbox-blank.gif │ │ │ │ ├── lightbox-btn-close.gif │ │ │ │ ├── lightbox-btn-next.gif │ │ │ │ ├── lightbox-btn-prev.gif │ │ │ │ └── lightbox-ico-loading.gif │ │ │ ├── jquery.gridster.css │ │ │ └── jquery.lightbox-0.5.css │ │ ├── PhotoGrid.htm │ │ ├── PhotoList.htm │ │ ├── PhotoTiles.htm │ │ ├── PhotosWeb.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── jquery.bbq.js │ │ │ ├── jquery.gridster.js │ │ │ ├── jquery.isotope.min.js │ │ │ ├── jquery.lightbox-0.5.js │ │ │ └── jquery.tmpl.js │ │ └── packages.config │ ├── Plugins │ │ ├── Gridster.cs │ │ ├── Isotope.cs │ │ ├── LightBox.cs │ │ ├── Plugins.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── ScriptInfo.txt │ │ └── packages.config │ └── packages │ │ ├── nuget.exe │ │ ├── nuget.targets │ │ └── repositories.config ├── Todo │ ├── Todo.sln │ ├── Todo │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── FxCop.ruleset │ │ ├── Todo.csproj │ │ ├── TodoApplication.cs │ │ ├── TodoItem.cs │ │ ├── TodoList.cs │ │ └── packages.config │ ├── TodoWeb │ │ ├── Assets │ │ │ ├── Background.png │ │ │ └── Todo.css │ │ ├── Default.htm │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── jquery.min.js │ │ │ └── jquery.tmpl.js │ │ ├── TodoWeb.csproj │ │ ├── favicon.ico │ │ └── packages.config │ └── packages │ │ ├── nuget.exe │ │ ├── nuget.targets │ │ └── repositories.config └── WebREPL │ ├── App.cs │ ├── CommandHandler.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── FxCop.ruleset │ ├── WebCommand.cs │ ├── WebREPL.csproj │ ├── WebREPL.sln │ ├── WebRequest.cs │ ├── WebResponse.cs │ ├── packages.config │ └── packages │ ├── nuget.exe │ ├── nuget.targets │ └── repositories.config ├── src ├── Core │ ├── App │ │ ├── App.csproj │ │ ├── Application.cs │ │ ├── CommandLine.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Build │ │ ├── Build.csproj │ │ ├── Generators │ │ │ └── ResXCodeBuilder.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ScriptSharp.targets │ │ └── Tasks │ │ │ ├── ResXCodeGeneratorTask.cs │ │ │ ├── ScriptCompilerExecTask.cs │ │ │ └── ScriptCompilerTask.cs │ ├── Compiler │ │ ├── CodeModel │ │ │ ├── Attributes │ │ │ │ ├── AttributeBlockNode.cs │ │ │ │ ├── AttributeNode.cs │ │ │ │ └── AttributeTargets.cs │ │ │ ├── CodeModelBuilder.cs │ │ │ ├── CodeModelProcessor.cs │ │ │ ├── Expressions │ │ │ │ ├── AnonymousMethodNode.cs │ │ │ │ ├── ArrayInitializerNode.cs │ │ │ │ ├── ArrayNewNode.cs │ │ │ │ ├── BaseNode.cs │ │ │ │ ├── BinaryExpressionNode.cs │ │ │ │ ├── CastNode.cs │ │ │ │ ├── ConditionalNode.cs │ │ │ │ ├── DefaultValueNode.cs │ │ │ │ ├── ExpressionListNode.cs │ │ │ │ ├── ExpressionNode.cs │ │ │ │ ├── LiteralNode.cs │ │ │ │ ├── NewNode.cs │ │ │ │ ├── SizeofNode.cs │ │ │ │ ├── StackAllocNode.cs │ │ │ │ ├── ThisNode.cs │ │ │ │ ├── TypeofNode.cs │ │ │ │ ├── UnaryExpressionNode.cs │ │ │ │ └── VariableInitializerNode.cs │ │ │ ├── IParseNodeHandler.cs │ │ │ ├── Members │ │ │ │ ├── AccessorNode.cs │ │ │ │ ├── AccessorType.cs │ │ │ │ ├── ConstantFieldDeclarationNode.cs │ │ │ │ ├── ConstructorDeclarationNode.cs │ │ │ │ ├── DestructorDeclarationNode.cs │ │ │ │ ├── EnumerationFieldNode.cs │ │ │ │ ├── EventDeclarationNode.cs │ │ │ │ ├── FieldDeclarationNode.cs │ │ │ │ ├── IndexerDeclarationNode.cs │ │ │ │ ├── MemberNode.cs │ │ │ │ ├── MethodDeclarationNode.cs │ │ │ │ ├── OperatorDeclarationNode.cs │ │ │ │ ├── ParameterFlags.cs │ │ │ │ ├── ParameterNode.cs │ │ │ │ └── PropertyDeclarationNode.cs │ │ │ ├── Modifiers.cs │ │ │ ├── Names │ │ │ │ ├── AliasQualifiedNameNode.cs │ │ │ │ ├── AtomicNameNode.cs │ │ │ │ ├── GenericNameNode.cs │ │ │ │ ├── MultiPartNameNode.cs │ │ │ │ └── NameNode.cs │ │ │ ├── ParseNode.cs │ │ │ ├── ParseNodeList.cs │ │ │ ├── ParseNodeType.cs │ │ │ ├── Statements │ │ │ │ ├── BlockStatementNode.cs │ │ │ │ ├── BreakNode.cs │ │ │ │ ├── CaseLabelNode.cs │ │ │ │ ├── CatchNode.cs │ │ │ │ ├── CheckedNode.cs │ │ │ │ ├── ConstantDeclarationNode.cs │ │ │ │ ├── ContinueNode.cs │ │ │ │ ├── DefaultLabelNode.cs │ │ │ │ ├── DoWhileNode.cs │ │ │ │ ├── EmptyStatementNode.cs │ │ │ │ ├── ExpressionStatementNode.cs │ │ │ │ ├── FixedNode.cs │ │ │ │ ├── ForNode.cs │ │ │ │ ├── ForeachNode.cs │ │ │ │ ├── GotoNode.cs │ │ │ │ ├── IfElseNode.cs │ │ │ │ ├── LabeledStatementNode.cs │ │ │ │ ├── LockNode.cs │ │ │ │ ├── ReturnNode.cs │ │ │ │ ├── StatementNode.cs │ │ │ │ ├── SwitchNode.cs │ │ │ │ ├── SwitchSectionNode.cs │ │ │ │ ├── ThrowNode.cs │ │ │ │ ├── TryNode.cs │ │ │ │ ├── UncheckedNode.cs │ │ │ │ ├── UnsafeNode.cs │ │ │ │ ├── UsingNode.cs │ │ │ │ ├── VariableDeclarationNode.cs │ │ │ │ ├── WhileNode.cs │ │ │ │ ├── YieldBreakNode.cs │ │ │ │ └── YieldReturnNode.cs │ │ │ ├── Tokens │ │ │ │ ├── BooleanToken.cs │ │ │ │ ├── CharToken.cs │ │ │ │ ├── CommentToken.cs │ │ │ │ ├── CommentTokenType.cs │ │ │ │ ├── DecimalToken.cs │ │ │ │ ├── DoubleToken.cs │ │ │ │ ├── FloatToken.cs │ │ │ │ ├── IdentifierToken.cs │ │ │ │ ├── IntToken.cs │ │ │ │ ├── LiteralToken.cs │ │ │ │ ├── LiteralTokenType.cs │ │ │ │ ├── LongToken.cs │ │ │ │ ├── NullToken.cs │ │ │ │ ├── StringToken.cs │ │ │ │ ├── Token.cs │ │ │ │ ├── TokenFlags.cs │ │ │ │ ├── TokenInfo.cs │ │ │ │ ├── TokenType.cs │ │ │ │ ├── UIntToken.cs │ │ │ │ └── ULongToken.cs │ │ │ └── Types │ │ │ │ ├── ArrayTypeNode.cs │ │ │ │ ├── CompilationUnitNode.cs │ │ │ │ ├── CustomTypeNode.cs │ │ │ │ ├── DelegateTypeNode.cs │ │ │ │ ├── ExternAliasNode.cs │ │ │ │ ├── IntrinsicTypeNode.cs │ │ │ │ ├── NamespaceNode.cs │ │ │ │ ├── PointerTypeNode.cs │ │ │ │ ├── TypeNode.cs │ │ │ │ ├── TypeParameterConstraintNode.cs │ │ │ │ ├── TypeParameterNode.cs │ │ │ │ ├── UserTypeNode.cs │ │ │ │ ├── UsingAliasNode.cs │ │ │ │ └── UsingNamespaceNode.cs │ │ ├── Compiler.csproj │ │ ├── Compiler │ │ │ ├── CodeBuilder.cs │ │ │ ├── ExpressionBuilder.cs │ │ │ ├── ImplementationBuilder.cs │ │ │ ├── MetadataBuilder.cs │ │ │ ├── ResourcesBuilder.cs │ │ │ └── StatementBuilder.cs │ │ ├── CompilerOptions.cs │ │ ├── Generator │ │ │ ├── CodeGenerator.cs │ │ │ ├── DocCommentGenerator.cs │ │ │ ├── ExpressionGenerator.cs │ │ │ ├── MemberGenerator.cs │ │ │ ├── ScriptGenerator.cs │ │ │ ├── ScriptTextWriter.cs │ │ │ ├── StatementGenerator.cs │ │ │ ├── TestGenerator.cs │ │ │ └── TypeGenerator.cs │ │ ├── IErrorHandler.cs │ │ ├── IStreamSource.cs │ │ ├── IStreamSourceResolver.cs │ │ ├── Importer │ │ │ ├── IL │ │ │ │ ├── ArrayType.cs │ │ │ │ ├── AssemblyDefinition.cs │ │ │ │ ├── AssemblyFlags.cs │ │ │ │ ├── AssemblyHashAlgorithm.cs │ │ │ │ ├── AssemblyLinkedResource.cs │ │ │ │ ├── AssemblyNameDefinition.cs │ │ │ │ ├── AssemblyNameReference.cs │ │ │ │ ├── AssemblyReader.cs │ │ │ │ ├── AssemblyWriter.cs │ │ │ │ ├── BaseAssemblyResolver.cs │ │ │ │ ├── CallSite.cs │ │ │ │ ├── Cil │ │ │ │ │ ├── Code.cs │ │ │ │ │ ├── CodeReader.cs │ │ │ │ │ ├── CodeWriter.cs │ │ │ │ │ ├── Document.cs │ │ │ │ │ ├── ExceptionHandler.cs │ │ │ │ │ ├── ILProcessor.cs │ │ │ │ │ ├── Instruction.cs │ │ │ │ │ ├── MethodBody.cs │ │ │ │ │ ├── OpCode.cs │ │ │ │ │ ├── OpCodes.cs │ │ │ │ │ ├── SequencePoint.cs │ │ │ │ │ ├── Symbols.cs │ │ │ │ │ ├── VariableDefinition.cs │ │ │ │ │ └── VariableReference.cs │ │ │ │ ├── CustomAttribute.cs │ │ │ │ ├── DefaultAssemblyResolver.cs │ │ │ │ ├── EmbeddedResource.cs │ │ │ │ ├── EventAttributes.cs │ │ │ │ ├── EventDefinition.cs │ │ │ │ ├── EventReference.cs │ │ │ │ ├── ExportedType.cs │ │ │ │ ├── FieldAttributes.cs │ │ │ │ ├── FieldDefinition.cs │ │ │ │ ├── FieldReference.cs │ │ │ │ ├── FileAttributes.cs │ │ │ │ ├── FunctionPointerType.cs │ │ │ │ ├── GenericInstanceMethod.cs │ │ │ │ ├── GenericInstanceType.cs │ │ │ │ ├── GenericParameter.cs │ │ │ │ ├── GenericParameterAttributes.cs │ │ │ │ ├── IConstantProvider.cs │ │ │ │ ├── ICustomAttributeProvider.cs │ │ │ │ ├── IGenericInstance.cs │ │ │ │ ├── IGenericParameterProvider.cs │ │ │ │ ├── IMarshalInfoProvider.cs │ │ │ │ ├── IMemberDefinition.cs │ │ │ │ ├── IMetadataScope.cs │ │ │ │ ├── IMetadataTokenProvider.cs │ │ │ │ ├── IMethodSignature.cs │ │ │ │ ├── Import.cs │ │ │ │ ├── LinkedResource.cs │ │ │ │ ├── ManifestResourceAttributes.cs │ │ │ │ ├── MarshalInfo.cs │ │ │ │ ├── MemberDefinitionCollection.cs │ │ │ │ ├── MemberReference.cs │ │ │ │ ├── Metadata │ │ │ │ │ ├── BlobHeap.cs │ │ │ │ │ ├── Buffers.cs │ │ │ │ │ ├── CodedIndex.cs │ │ │ │ │ ├── ElementType.cs │ │ │ │ │ ├── GuidHeap.cs │ │ │ │ │ ├── Heap.cs │ │ │ │ │ ├── MetadataToken.cs │ │ │ │ │ ├── Row.cs │ │ │ │ │ ├── StringHeap.cs │ │ │ │ │ ├── TableHeap.cs │ │ │ │ │ ├── TokenType.cs │ │ │ │ │ ├── UserStringHeap.cs │ │ │ │ │ └── Utilities.cs │ │ │ │ ├── MetadataResolver.cs │ │ │ │ ├── MetadataSystem.cs │ │ │ │ ├── MethodAttributes.cs │ │ │ │ ├── MethodCallingConvention.cs │ │ │ │ ├── MethodDefinition.cs │ │ │ │ ├── MethodImplAttributes.cs │ │ │ │ ├── MethodReference.cs │ │ │ │ ├── MethodReturnType.cs │ │ │ │ ├── MethodSemanticsAttributes.cs │ │ │ │ ├── MethodSpecification.cs │ │ │ │ ├── Modifiers.cs │ │ │ │ ├── ModuleDefinition.cs │ │ │ │ ├── ModuleKind.cs │ │ │ │ ├── ModuleReference.cs │ │ │ │ ├── NativeType.cs │ │ │ │ ├── PE │ │ │ │ │ ├── BinaryStreamReader.cs │ │ │ │ │ ├── BinaryStreamWriter.cs │ │ │ │ │ ├── ByteBuffer.cs │ │ │ │ │ ├── ByteBufferEqualityComparer.cs │ │ │ │ │ ├── DataDirectory.cs │ │ │ │ │ ├── Image.cs │ │ │ │ │ ├── ImageReader.cs │ │ │ │ │ ├── ImageWriter.cs │ │ │ │ │ ├── Section.cs │ │ │ │ │ └── TextMap.cs │ │ │ │ ├── PInvokeAttributes.cs │ │ │ │ ├── PInvokeInfo.cs │ │ │ │ ├── ParameterAttributes.cs │ │ │ │ ├── ParameterDefinition.cs │ │ │ │ ├── ParameterDefinitionCollection.cs │ │ │ │ ├── ParameterReference.cs │ │ │ │ ├── PinnedType.cs │ │ │ │ ├── PointerType.cs │ │ │ │ ├── PropertyAttributes.cs │ │ │ │ ├── PropertyDefinition.cs │ │ │ │ ├── PropertyReference.cs │ │ │ │ ├── ReferenceType.cs │ │ │ │ ├── Resource.cs │ │ │ │ ├── SecurityDeclaration.cs │ │ │ │ ├── SentinelType.cs │ │ │ │ ├── TargetRuntime.cs │ │ │ │ ├── TypeAttributes.cs │ │ │ │ ├── TypeDefinition.cs │ │ │ │ ├── TypeDefinitionCollection.cs │ │ │ │ ├── TypeParser.cs │ │ │ │ ├── TypeReference.cs │ │ │ │ ├── TypeSpecification.cs │ │ │ │ ├── TypeSystem.cs │ │ │ │ ├── Utility │ │ │ │ │ ├── Collection.cs │ │ │ │ │ ├── CryptoConvert.cs │ │ │ │ │ ├── CryptoService.cs │ │ │ │ │ └── Empty.cs │ │ │ │ └── VariantType.cs │ │ │ ├── Interop.cs │ │ │ ├── MetadataHelpers.cs │ │ │ ├── MetadataImporter.cs │ │ │ ├── MetadataSource.cs │ │ │ └── SignatureParser.cs │ │ ├── Parser │ │ │ ├── BufferPosition.cs │ │ │ ├── Error.cs │ │ │ ├── ErrorEventArgs.cs │ │ │ ├── ErrorEventHandler.cs │ │ │ ├── FileErrorEventArgs.cs │ │ │ ├── FileErrorEventHandler.cs │ │ │ ├── FileLexer.cs │ │ │ ├── FileParser.cs │ │ │ ├── FilePosition.cs │ │ │ ├── Keywords.cs │ │ │ ├── LexError.cs │ │ │ ├── Lexer.cs │ │ │ ├── LineMap.cs │ │ │ ├── Name.cs │ │ │ ├── NameTable.cs │ │ │ ├── ParseError.cs │ │ │ ├── Parser.cs │ │ │ ├── PreprocessorControlLine.cs │ │ │ ├── PreprocessorDeclarationLine.cs │ │ │ ├── PreprocessorError.cs │ │ │ ├── PreprocessorIdentifierToken.cs │ │ │ ├── PreprocessorIfLine.cs │ │ │ ├── PreprocessorIntToken.cs │ │ │ ├── PreprocessorKeywords.cs │ │ │ ├── PreprocessorLexer.cs │ │ │ ├── PreprocessorLine.cs │ │ │ ├── PreprocessorLineNumberLine.cs │ │ │ ├── PreprocessorLineParser.cs │ │ │ ├── PreprocessorStringToken.cs │ │ │ ├── PreprocessorTokenType.cs │ │ │ ├── PreprocessorTokens.cs │ │ │ └── TextBuffer.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ScriptCompiler.cs │ │ ├── ScriptInfo.cs │ │ ├── ScriptModel │ │ │ ├── Expressions │ │ │ │ ├── BaseExpression.cs │ │ │ │ ├── BaseInitializerExpression.cs │ │ │ │ ├── BinaryExpression.cs │ │ │ │ ├── ConditionalExpression.cs │ │ │ │ ├── DelegateExpression.cs │ │ │ │ ├── DelegateInvokeExpression.cs │ │ │ │ ├── EnumerationFieldExpression.cs │ │ │ │ ├── EventExpression.cs │ │ │ │ ├── Expression.cs │ │ │ │ ├── ExpressionType.cs │ │ │ │ ├── FieldExpression.cs │ │ │ │ ├── IndexerExpression.cs │ │ │ │ ├── InlineScriptExpression.cs │ │ │ │ ├── LateBoundExpression.cs │ │ │ │ ├── LateBoundOperation.cs │ │ │ │ ├── LiteralExpression.cs │ │ │ │ ├── LocalExpression.cs │ │ │ │ ├── MemberExpression.cs │ │ │ │ ├── MethodExpression.cs │ │ │ │ ├── NewDelegateExpression.cs │ │ │ │ ├── NewExpression.cs │ │ │ │ ├── Operator.cs │ │ │ │ ├── OperatorConverter.cs │ │ │ │ ├── PropertyExpression.cs │ │ │ │ ├── ThisExpression.cs │ │ │ │ ├── TypeExpression.cs │ │ │ │ └── UnaryExpression.cs │ │ │ ├── Statements │ │ │ │ ├── BlockStatement.cs │ │ │ │ ├── BreakStatement.cs │ │ │ │ ├── ContinueStatement.cs │ │ │ │ ├── EmptyStatement.cs │ │ │ │ ├── ErrorStatement.cs │ │ │ │ ├── ExpressionStatement.cs │ │ │ │ ├── ForInStatement.cs │ │ │ │ ├── ForStatement.cs │ │ │ │ ├── IfElseStatement.cs │ │ │ │ ├── ReturnStatement.cs │ │ │ │ ├── Statement.cs │ │ │ │ ├── StatementType.cs │ │ │ │ ├── SwitchGroup.cs │ │ │ │ ├── SwitchStatement.cs │ │ │ │ ├── ThrowStatement.cs │ │ │ │ ├── TryCatchFinallyStatement.cs │ │ │ │ ├── VariableDeclarationStatement.cs │ │ │ │ └── WhileStatement.cs │ │ │ └── Symbols │ │ │ │ ├── AnonymousMethodSymbol.cs │ │ │ │ ├── ClassSymbol.cs │ │ │ │ ├── CodeMemberSymbol.cs │ │ │ │ ├── ConstructorSymbol.cs │ │ │ │ ├── DelegateSymbol.cs │ │ │ │ ├── EnumerationFieldSymbol.cs │ │ │ │ ├── EnumerationSymbol.cs │ │ │ │ ├── EventSymbol.cs │ │ │ │ ├── FieldSymbol.cs │ │ │ │ ├── GenericParameterSymbol.cs │ │ │ │ ├── GenericTypeSymbol.cs │ │ │ │ ├── ILocalSymbolTable.cs │ │ │ │ ├── ISymbolTable.cs │ │ │ │ ├── ISymbolTransformer.cs │ │ │ │ ├── IndexerSymbol.cs │ │ │ │ ├── InterfaceSymbol.cs │ │ │ │ ├── IntrinsicType.cs │ │ │ │ ├── LocalSymbol.cs │ │ │ │ ├── MemberSymbol.cs │ │ │ │ ├── MemberVisibility.cs │ │ │ │ ├── MethodSymbol.cs │ │ │ │ ├── NamespaceSymbol.cs │ │ │ │ ├── ParameterMode.cs │ │ │ │ ├── ParameterSymbol.cs │ │ │ │ ├── PropertySymbol.cs │ │ │ │ ├── RecordSymbol.cs │ │ │ │ ├── ResourcesSymbol.cs │ │ │ │ ├── Symbol.cs │ │ │ │ ├── SymbolFilter.cs │ │ │ │ ├── SymbolImplementation.cs │ │ │ │ ├── SymbolImplementationFlags.cs │ │ │ │ ├── SymbolImplementationTransformer.cs │ │ │ │ ├── SymbolInternalizer.cs │ │ │ │ ├── SymbolObfuscator.cs │ │ │ │ ├── SymbolScope.cs │ │ │ │ ├── SymbolSet.cs │ │ │ │ ├── SymbolSetDumper.cs │ │ │ │ ├── SymbolSetTransformer.cs │ │ │ │ ├── SymbolType.cs │ │ │ │ ├── TypeSymbol.cs │ │ │ │ └── VariableSymbol.cs │ │ ├── ScriptReference.cs │ │ ├── Utility.cs │ │ └── Validator │ │ │ ├── ArrayNewNodeValidator.cs │ │ │ ├── ArrayTypeNodeValidator.cs │ │ │ ├── CodeModelValidator.cs │ │ │ ├── CompilationUnitNodeValidator.cs │ │ │ ├── CustomTypeNodeValidator.cs │ │ │ ├── EnumerationFieldNodeValidator.cs │ │ │ ├── EventDeclarationNodeValidator.cs │ │ │ ├── FieldDeclarationNodeValidator.cs │ │ │ ├── IParseNodeValidator.cs │ │ │ ├── IndexerDeclarationNodeValidator.cs │ │ │ ├── MethodDeclarationNodeValidator.cs │ │ │ ├── NameNodeValidator.cs │ │ │ ├── NamespaceNodeValidator.cs │ │ │ ├── NewNodeValidator.cs │ │ │ ├── ParameterNodeValidator.cs │ │ │ ├── PropertyDeclarationNodeValidator.cs │ │ │ ├── ThrowNodeValidator.cs │ │ │ ├── TryNodeValidator.cs │ │ │ └── UnsupportedParseNodeValidator.cs │ ├── CoreLib │ │ ├── Action.cs │ │ ├── Arguments.cs │ │ ├── Array.cs │ │ ├── Boolean.cs │ │ ├── Byte.cs │ │ ├── Callback.cs │ │ ├── CancelEventArgs.cs │ │ ├── Char.cs │ │ ├── Collections │ │ │ ├── ArrayCallback.cs │ │ │ ├── ArrayFilterCallback.cs │ │ │ ├── ArrayItemCallback.cs │ │ │ ├── ArrayItemFilterCallback.cs │ │ │ ├── ArrayItemMapCallback.cs │ │ │ ├── ArrayItemReduceCallback.cs │ │ │ ├── ArrayList.cs │ │ │ ├── ArrayMapCallback.cs │ │ │ ├── ArrayReduceCallback.cs │ │ │ ├── Dictionary.cs │ │ │ ├── DictionaryEntry.cs │ │ │ ├── Generic │ │ │ │ ├── CompareCallback.cs │ │ │ │ ├── Dictionary.cs │ │ │ │ ├── ICollection.cs │ │ │ │ ├── IEnumerable.cs │ │ │ │ ├── IEnumerator.cs │ │ │ │ ├── IReadonlyCollection.cs │ │ │ │ ├── KeyValuePair.cs │ │ │ │ ├── List.cs │ │ │ │ ├── ListCallback.cs │ │ │ │ ├── ListFilterCallback.cs │ │ │ │ ├── ListItemCallback.cs │ │ │ │ ├── ListItemFilterCallback.cs │ │ │ │ ├── ListItemMapCallback.cs │ │ │ │ ├── ListItemReduceCallback.cs │ │ │ │ ├── ListMapCallback.cs │ │ │ │ ├── ListReduceCallback.cs │ │ │ │ ├── ObservableCollection.cs │ │ │ │ ├── Queue.cs │ │ │ │ └── Stack.cs │ │ │ ├── ICollection.cs │ │ │ ├── IEnumerable.cs │ │ │ ├── IEnumerator.cs │ │ │ ├── IReadonlyCollection.cs │ │ │ ├── ObservableCollection.cs │ │ │ ├── Queue.cs │ │ │ └── Stack.cs │ │ ├── CompareCallback.cs │ │ ├── ComponentModel │ │ │ ├── DependencyAttribute.cs │ │ │ ├── IApplication.cs │ │ │ ├── IContainer.cs │ │ │ ├── IEventManager.cs │ │ │ ├── IInitializable.cs │ │ │ ├── IObserver.cs │ │ │ ├── Observable.cs │ │ │ └── ObserverManager.cs │ │ ├── CoreLib.csproj │ │ ├── Date.cs │ │ ├── Decimal.cs │ │ ├── Delegate.cs │ │ ├── Diagnostics │ │ │ ├── ConditionalAttribute.cs │ │ │ ├── Debug.cs │ │ │ ├── SuppressMessageAttribute.cs │ │ │ └── SyntaxValidationAttribute.cs │ │ ├── Double.cs │ │ ├── Enum.cs │ │ ├── EventArgs.cs │ │ ├── EventHandler.cs │ │ ├── Exception.cs │ │ ├── Export.cs │ │ ├── Func.cs │ │ ├── Function.cs │ │ ├── Globalization │ │ │ ├── CultureInfo.cs │ │ │ ├── DateFormatInfo.cs │ │ │ └── NumberFormatInfo.cs │ │ ├── IDisposable.cs │ │ ├── Int16.cs │ │ ├── Int32.cs │ │ ├── Int64.cs │ │ ├── Math.cs │ │ ├── Nullable.cs │ │ ├── Number.cs │ │ ├── Object.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RegExp.cs │ │ ├── Runtime.cs │ │ ├── SByte.cs │ │ ├── Script.cs │ │ ├── ScriptMetadata.cs │ │ ├── Serialization │ │ │ ├── Json.cs │ │ │ ├── JsonParseCallback.cs │ │ │ └── JsonStringifyCallback.cs │ │ ├── Single.cs │ │ ├── String.cs │ │ ├── StringBuilder.cs │ │ ├── StringReplaceCallback.cs │ │ ├── Testing │ │ │ ├── Assert.cs │ │ │ ├── TestClass.cs │ │ │ └── TestEngine.cs │ │ ├── Threading │ │ │ ├── Deferred.cs │ │ │ ├── Task.cs │ │ │ └── TaskStatus.cs │ │ ├── Tuple.cs │ │ ├── Type.cs │ │ ├── UInt16.cs │ │ ├── UInt32.cs │ │ ├── UInt64.cs │ │ └── Void.cs │ ├── FileInputStreamSource.cs │ ├── FileOutputStreamSource.cs │ ├── ResXItem.cs │ ├── ResXParser.cs │ ├── ResourceFile.cs │ └── Scripts │ │ ├── Loader.js │ │ ├── Package │ │ ├── package.json │ │ └── readme.md │ │ ├── Runtime.js │ │ ├── Runtime │ │ ├── Collections.js │ │ ├── Contracts.js │ │ ├── Culture.js │ │ ├── Delegate.js │ │ ├── EventArgs.js │ │ ├── Format.js │ │ ├── Misc.js │ │ ├── Observable.js │ │ ├── String.js │ │ ├── StringBuilder.js │ │ ├── Task.js │ │ └── TypeSystem.js │ │ └── Scripts.csproj ├── Libraries │ ├── Knockout │ │ ├── BindingContext.cs │ │ ├── BindingHandler.cs │ │ ├── CompareResult.cs │ │ ├── CompareResultStatus.cs │ │ ├── ComputedObservable.cs │ │ ├── ComputedObservableOptions.cs │ │ ├── Knockout.cs │ │ ├── Knockout.csproj │ │ ├── KnockoutMapping.cs │ │ ├── KnockoutMappingArrayCreateOptions.cs │ │ ├── KnockoutMappingArraySpecification.cs │ │ ├── KnockoutMappingCreateOptions.cs │ │ ├── KnockoutMappingPropertySpecification.cs │ │ ├── KnockoutMappingSpecification.cs │ │ ├── KnockoutMappingUpdateOptions.cs │ │ ├── KnockoutUtils.cs │ │ ├── Observable.cs │ │ ├── ObservableArray.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── ScriptInfo.txt │ │ └── Subscribable.cs │ ├── Microsoft │ │ └── BingMaps │ │ │ ├── BingMaps.csproj │ │ │ ├── Location │ │ │ ├── GeoLocation.cs │ │ │ ├── GeoLocationCircleOptions.cs │ │ │ ├── GeoLocationError.cs │ │ │ ├── GeoLocationOptions.cs │ │ │ └── GeoLocationProvider.cs │ │ │ ├── Map.cs │ │ │ ├── MapAltitudeMode.cs │ │ │ ├── MapAnimationVisibility.cs │ │ │ ├── MapBounds.cs │ │ │ ├── MapColor.cs │ │ │ ├── MapEntity.cs │ │ │ ├── MapEntityCollection.cs │ │ │ ├── MapEntityCollectionEventArgs.cs │ │ │ ├── MapEntityCollectionOptions.cs │ │ │ ├── MapEntityEventArgs.cs │ │ │ ├── MapEventArgs.cs │ │ │ ├── MapEventTarget.cs │ │ │ ├── MapEvents.cs │ │ │ ├── MapInfobox.cs │ │ │ ├── MapInfoboxAction.cs │ │ │ ├── MapInfoboxOptions.cs │ │ │ ├── MapKeyEventArgs.cs │ │ │ ├── MapLabelOverlay.cs │ │ │ ├── MapLocation.cs │ │ │ ├── MapModule.cs │ │ │ ├── MapModuleOptions.cs │ │ │ ├── MapMouseEventArgs.cs │ │ │ ├── MapOptions.cs │ │ │ ├── MapPoint.cs │ │ │ ├── MapPointReference.cs │ │ │ ├── MapPolygon.cs │ │ │ ├── MapPolygonOptions.cs │ │ │ ├── MapPolyline.cs │ │ │ ├── MapPolylineOptions.cs │ │ │ ├── MapPushpin.cs │ │ │ ├── MapPushpinOptions.cs │ │ │ ├── MapShape.cs │ │ │ ├── MapTile.cs │ │ │ ├── MapTileLayer.cs │ │ │ ├── MapTileLayerOptions.cs │ │ │ ├── MapTileSource.cs │ │ │ ├── MapTileSourceOptions.cs │ │ │ ├── MapTileUriGenerator.cs │ │ │ ├── MapType.cs │ │ │ ├── MapViewOptions.cs │ │ │ ├── MapZoomRange.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── ScriptInfo.txt │ │ │ ├── Traffic │ │ │ └── TrafficLayer.cs │ │ │ └── VenueMaps │ │ │ ├── Venue.cs │ │ │ ├── VenueEntity.cs │ │ │ ├── VenueEntityPolygon.cs │ │ │ ├── VenueFloor.cs │ │ │ ├── VenueFootprint.cs │ │ │ ├── VenueMap.cs │ │ │ ├── VenueMapErrorCallback.cs │ │ │ ├── VenueMapFactory.cs │ │ │ ├── VenueMapOptions.cs │ │ │ ├── VenueMapSearchCallback.cs │ │ │ ├── VenueMapSearchOptions.cs │ │ │ ├── VenueMapSuccessCallback.cs │ │ │ ├── VenueMetadata.cs │ │ │ └── VenueType.cs │ ├── Node │ │ ├── Node.Azure │ │ │ ├── Azure.cs │ │ │ ├── Node.Azure.csproj │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── ScriptInfo.txt │ │ │ ├── Runtime │ │ │ │ ├── Role.cs │ │ │ │ ├── RoleEnvironment.cs │ │ │ │ ├── RoleEvent.cs │ │ │ │ ├── RoleEventType.cs │ │ │ │ ├── RoleInstance.cs │ │ │ │ └── RoleStatus.cs │ │ │ └── Storage │ │ │ │ ├── CloudBlob.cs │ │ │ │ ├── CloudBlobContainer.cs │ │ │ │ ├── CloudBlobContainerListContinuation.cs │ │ │ │ ├── CloudBlobLease.cs │ │ │ │ ├── CloudBlobListContinuation.cs │ │ │ │ ├── CloudBlobService.cs │ │ │ │ ├── CloudBlockBlob.cs │ │ │ │ ├── CloudQueue.cs │ │ │ │ ├── CloudQueueListContinuation.cs │ │ │ │ ├── CloudQueueMessage.cs │ │ │ │ ├── CloudQueueService.cs │ │ │ │ ├── CloudTable.cs │ │ │ │ ├── CloudTableEntity.cs │ │ │ │ ├── CloudTableListContinuation.cs │ │ │ │ ├── CloudTableQuery.cs │ │ │ │ ├── CloudTableQueryContinuation.cs │ │ │ │ └── CloudTableService.cs │ │ ├── Node.Core │ │ │ ├── AsyncCallback.cs │ │ │ ├── Compute │ │ │ │ ├── ChildProcess.cs │ │ │ │ ├── OS.cs │ │ │ │ ├── Process.cs │ │ │ │ ├── ScriptContext.cs │ │ │ │ ├── ScriptEngine.cs │ │ │ │ └── ScriptInstance.cs │ │ │ ├── IEventEmitter.cs │ │ │ ├── IO │ │ │ │ ├── Buffer.cs │ │ │ │ ├── Console.cs │ │ │ │ ├── Encoding.cs │ │ │ │ ├── FileAccess.cs │ │ │ │ ├── FileDescriptor.cs │ │ │ │ ├── FileStats.cs │ │ │ │ ├── FileSystem.cs │ │ │ │ ├── FileSystemChange.cs │ │ │ │ ├── FileSystemListener.cs │ │ │ │ ├── FileSystemWatchOptions.cs │ │ │ │ ├── FileSystemWatcher.cs │ │ │ │ ├── LineReader.cs │ │ │ │ ├── LineReaderOptions.cs │ │ │ │ ├── Path.cs │ │ │ │ ├── REPL.cs │ │ │ │ ├── REPLEvaluator.cs │ │ │ │ ├── REPLOptions.cs │ │ │ │ ├── ReadStream.cs │ │ │ │ ├── ReadStreamOptions.cs │ │ │ │ ├── ReadableStream.cs │ │ │ │ ├── WritableStream.cs │ │ │ │ ├── WriteStream.cs │ │ │ │ └── WriteStreamOptions.cs │ │ │ ├── Network │ │ │ │ ├── Http.cs │ │ │ │ ├── HttpClientOptions.cs │ │ │ │ ├── HttpClientRequest.cs │ │ │ │ ├── HttpClientResponse.cs │ │ │ │ ├── HttpListener.cs │ │ │ │ ├── HttpServer.cs │ │ │ │ ├── HttpServerRequest.cs │ │ │ │ ├── HttpServerResponse.cs │ │ │ │ ├── HttpStatus.cs │ │ │ │ ├── HttpStatusCode.cs │ │ │ │ ├── HttpVerb.cs │ │ │ │ ├── Https.cs │ │ │ │ ├── IPAddressType.cs │ │ │ │ ├── Net.cs │ │ │ │ ├── QueryString.cs │ │ │ │ ├── Socket.cs │ │ │ │ ├── Url.cs │ │ │ │ └── UrlData.cs │ │ │ ├── Node.Core.csproj │ │ │ ├── Node.cs │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── ScriptInfo.txt │ │ ├── Node.Express │ │ │ ├── Express.cs │ │ │ ├── ExpressApplication.cs │ │ │ ├── ExpressChain.cs │ │ │ ├── ExpressCookieOptions.cs │ │ │ ├── ExpressErrorHandler.cs │ │ │ ├── ExpressHandler.cs │ │ │ ├── ExpressMiddleware.cs │ │ │ ├── ExpressParameterHandler.cs │ │ │ ├── ExpressRoute.cs │ │ │ ├── ExpressServerRequest.cs │ │ │ ├── ExpressServerResponse.cs │ │ │ ├── ExpressSettings.cs │ │ │ ├── ExpressTemplateEngine.cs │ │ │ ├── Node.Express.csproj │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── ScriptInfo.txt │ │ ├── Node.Mongo │ │ │ ├── MongoClient.cs │ │ │ ├── MongoCollection.cs │ │ │ ├── MongoConnector.cs │ │ │ ├── MongoCursor.cs │ │ │ ├── MongoDatabase.cs │ │ │ ├── MongoServer.cs │ │ │ ├── Node.Mongo.csproj │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── ScriptInfo.txt │ │ ├── Node.Neo4j │ │ │ ├── GraphDatabase.cs │ │ │ ├── GraphNode.cs │ │ │ ├── GraphPath.cs │ │ │ ├── GraphPropertyContainer.cs │ │ │ ├── GraphRelationship.cs │ │ │ ├── Node.Neo4J.csproj │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── ScriptInfo.txt │ │ └── Node.Restify │ │ │ ├── Node.Restify.csproj │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── ScriptInfo.txt │ │ │ ├── RestifyApplication.cs │ │ │ ├── RestifyCallback.cs │ │ │ ├── RestifyChain.cs │ │ │ ├── RestifyError.cs │ │ │ ├── RestifyHandler.cs │ │ │ ├── RestifyHttpClient.cs │ │ │ ├── RestifyJsonClient.cs │ │ │ ├── RestifyJsonClientOptions.cs │ │ │ ├── RestifyLogger.cs │ │ │ ├── RestifyRequest.cs │ │ │ ├── RestifyResponse.cs │ │ │ ├── RestifyRoute.cs │ │ │ ├── RestifyServer.cs │ │ │ ├── RestifyServerGetOptions.cs │ │ │ ├── RestifyServerOptions.cs │ │ │ ├── RestifyStringClient.cs │ │ │ └── RestifyThrottleOptions.cs │ ├── Web │ │ ├── Html │ │ │ ├── ActiveXObject.cs │ │ │ ├── AnchorElement.cs │ │ │ ├── AreaElement.cs │ │ │ ├── AudioElement.cs │ │ │ ├── CanvasElement.cs │ │ │ ├── CheckBoxElement.cs │ │ │ ├── ClientRect.cs │ │ │ ├── ClientRectList.cs │ │ │ ├── CustomEvent.cs │ │ │ ├── Data │ │ │ │ ├── ApplicationCache.cs │ │ │ │ ├── ApplicationCacheEvent.cs │ │ │ │ ├── ApplicationCacheStatus.cs │ │ │ │ ├── Files │ │ │ │ │ ├── Blob.cs │ │ │ │ │ ├── File.cs │ │ │ │ │ ├── FileError.cs │ │ │ │ │ ├── FileList.cs │ │ │ │ │ ├── FileProgressEvent.cs │ │ │ │ │ ├── FileReader.cs │ │ │ │ │ ├── FileReaderSync.cs │ │ │ │ │ └── FileReadyState.cs │ │ │ │ ├── IndexedDB │ │ │ │ │ ├── DBCursor.cs │ │ │ │ │ ├── DBCursorWithValue.cs │ │ │ │ │ ├── DBDatabase.cs │ │ │ │ │ ├── DBEvent.cs │ │ │ │ │ ├── DBEventTarget.cs │ │ │ │ │ ├── DBFactory.cs │ │ │ │ │ ├── DBIndex.cs │ │ │ │ │ ├── DBIndexParameters.cs │ │ │ │ │ ├── DBObjectStore.cs │ │ │ │ │ ├── DBObjectStoreParameters.cs │ │ │ │ │ ├── DBOpenDBRequest.cs │ │ │ │ │ ├── DBRequest.cs │ │ │ │ │ ├── DBTransaction.cs │ │ │ │ │ └── DBVersionChangeEvent.cs │ │ │ │ ├── Sql │ │ │ │ │ ├── SqlDatabase.cs │ │ │ │ │ ├── SqlError.cs │ │ │ │ │ ├── SqlResultSet.cs │ │ │ │ │ ├── SqlResultSetRow.cs │ │ │ │ │ ├── SqlResultSetRowList.cs │ │ │ │ │ └── SqlTransaction.cs │ │ │ │ └── Storage.cs │ │ │ ├── DataFormat.cs │ │ │ ├── DataTransfer.cs │ │ │ ├── DivElement.cs │ │ │ ├── Document.cs │ │ │ ├── DocumentFragment.cs │ │ │ ├── DocumentImplementation.cs │ │ │ ├── DocumentInstance.cs │ │ │ ├── DropEffect.cs │ │ │ ├── DropEffects.cs │ │ │ ├── Editing │ │ │ │ ├── ControlRange.cs │ │ │ │ ├── Range.cs │ │ │ │ ├── Selection.cs │ │ │ │ └── TextRange.cs │ │ │ ├── Element.cs │ │ │ ├── ElementAttribute.cs │ │ │ ├── ElementAttributeCollection.cs │ │ │ ├── ElementAttributeName.cs │ │ │ ├── ElementCollection.cs │ │ │ ├── ElementEvent.cs │ │ │ ├── ElementEventHandler.cs │ │ │ ├── ElementEventListener.cs │ │ │ ├── ElementType.cs │ │ │ ├── ErrorHandler.cs │ │ │ ├── FileInputElement.cs │ │ │ ├── FormElement.cs │ │ │ ├── GestureEvent.cs │ │ │ ├── History.cs │ │ │ ├── IElementEventHandler.cs │ │ │ ├── IFrameElement.cs │ │ │ ├── ImageElement.cs │ │ │ ├── InputElement.cs │ │ │ ├── LinkElement.cs │ │ │ ├── Location.cs │ │ │ ├── MapElement.cs │ │ │ ├── Media │ │ │ │ ├── Filters │ │ │ │ │ ├── VisualFilter.cs │ │ │ │ │ ├── VisualFilterCollection.cs │ │ │ │ │ ├── VisualTransition.cs │ │ │ │ │ └── VisualTransitionState.cs │ │ │ │ └── Graphics │ │ │ │ │ ├── CanvasContext.cs │ │ │ │ │ ├── CanvasContext2D.cs │ │ │ │ │ ├── CompositeOperation.cs │ │ │ │ │ ├── Gradient.cs │ │ │ │ │ ├── ImageData.cs │ │ │ │ │ ├── LineCap.cs │ │ │ │ │ ├── LineJoin.cs │ │ │ │ │ ├── Pattern.cs │ │ │ │ │ ├── PixelArray.cs │ │ │ │ │ ├── Rendering.cs │ │ │ │ │ ├── TextAlign.cs │ │ │ │ │ ├── TextBaseline.cs │ │ │ │ │ └── TextMetrics.cs │ │ │ ├── MessageEvent.cs │ │ │ ├── MutableEvent.cs │ │ │ ├── Navigator.cs │ │ │ ├── OptionElement.cs │ │ │ ├── Orientation.cs │ │ │ ├── Plugin.cs │ │ │ ├── PluginArray.cs │ │ │ ├── Screen.cs │ │ │ ├── ScriptElement.cs │ │ │ ├── SelectElement.cs │ │ │ ├── Services │ │ │ │ ├── GeoCoordinates.cs │ │ │ │ ├── Geolocation.cs │ │ │ │ ├── GeolocationError.cs │ │ │ │ ├── GeolocationErrorCode.cs │ │ │ │ ├── GeolocationOptions.cs │ │ │ │ └── GeolocationService.cs │ │ │ ├── Style.cs │ │ │ ├── StyleSheets │ │ │ │ ├── StyleCSSRule.cs │ │ │ │ ├── StyleCharsetRule.cs │ │ │ │ ├── StyleFontFaceRule.cs │ │ │ │ ├── StyleImportRule.cs │ │ │ │ ├── StyleMediaList.cs │ │ │ │ ├── StyleMediaRule.cs │ │ │ │ ├── StylePageRule.cs │ │ │ │ ├── StyleRule.cs │ │ │ │ ├── StyleRuleList.cs │ │ │ │ ├── StyleRuleType.cs │ │ │ │ ├── StyleSheet.cs │ │ │ │ └── StyleSheetList.cs │ │ │ ├── TableCellElement.cs │ │ │ ├── TableElement.cs │ │ │ ├── TableRowElement.cs │ │ │ ├── TableSectionElement.cs │ │ │ ├── TextAreaElement.cs │ │ │ ├── TextElement.cs │ │ │ ├── TokenList.cs │ │ │ ├── TouchEvent.cs │ │ │ ├── TouchInfo.cs │ │ │ ├── Window.cs │ │ │ └── WindowInstance.cs │ │ ├── Net │ │ │ ├── HttpVerb.cs │ │ │ ├── ReadyState.cs │ │ │ └── XmlHttpRequest.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Web.csproj │ │ └── Xml │ │ │ ├── XmlAttribute.cs │ │ │ ├── XmlDocument.cs │ │ │ ├── XmlDocumentParser.cs │ │ │ ├── XmlNamedNodeMap.cs │ │ │ ├── XmlNode.cs │ │ │ ├── XmlNodeList.cs │ │ │ ├── XmlNodeType.cs │ │ │ ├── XmlSerializer.cs │ │ │ └── XmlText.cs │ └── jQuery │ │ ├── jQuery.Core │ │ ├── AjaxCallback.cs │ │ ├── ArrayFilterCallback.cs │ │ ├── ArrayIterationCallback.cs │ │ ├── ArrayMapCallback.cs │ │ ├── BooleanFunction.cs │ │ ├── EffectDuration.cs │ │ ├── EffectEasing.cs │ │ ├── ElementFilterCallback.cs │ │ ├── ElementIterationCallback.cs │ │ ├── ElementMapCallback.cs │ │ ├── IDeferred.cs │ │ ├── ObjectIterationCallback.cs │ │ ├── ObjectMapCallback.cs │ │ ├── PositionFunction.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── ScriptInfo.txt │ │ ├── StringFunction.cs │ │ ├── jQuery.Core.csproj │ │ ├── jQuery.cs │ │ ├── jQueryAjaxOptions.cs │ │ ├── jQueryBrowser.cs │ │ ├── jQueryDataHttpRequest.cs │ │ ├── jQueryDeferred.cs │ │ ├── jQueryDeferredFilter.cs │ │ ├── jQueryDeferredInitializer.cs │ │ ├── jQueryEvent.cs │ │ ├── jQueryEventHandler.cs │ │ ├── jQueryNameValuePair.cs │ │ ├── jQueryObject.cs │ │ ├── jQueryPosition.cs │ │ ├── jQuerySupport.cs │ │ └── jQueryXmlHttpRequest.cs │ │ ├── jQuery.History │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── ScriptInfo.txt │ │ ├── StateMergeMode.cs │ │ ├── jQuery.History.csproj │ │ └── jQueryHistory.cs │ │ ├── jQuery.Templating │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── ScriptInfo.txt │ │ ├── jQuery.Templating.csproj │ │ ├── jQueryTemplate.cs │ │ ├── jQueryTemplateInstance.cs │ │ ├── jQueryTemplateObject.cs │ │ └── jQueryTemplating.cs │ │ ├── jQuery.UI │ │ ├── Effects │ │ │ ├── Blind │ │ │ │ ├── BlindObject.cs │ │ │ │ ├── BlindOption.cs │ │ │ │ └── BlindOptions.cs │ │ │ ├── Bounce │ │ │ │ ├── BounceObject.cs │ │ │ │ ├── BounceOption.cs │ │ │ │ └── BounceOptions.cs │ │ │ ├── Clip │ │ │ │ ├── ClipObject.cs │ │ │ │ ├── ClipOption.cs │ │ │ │ └── ClipOptions.cs │ │ │ ├── Drop │ │ │ │ ├── DropObject.cs │ │ │ │ ├── DropOption.cs │ │ │ │ └── DropOptions.cs │ │ │ ├── Effect │ │ │ │ ├── EffectMethod.cs │ │ │ │ └── EffectObject.cs │ │ │ ├── Explode │ │ │ │ ├── ExplodeObject.cs │ │ │ │ ├── ExplodeOption.cs │ │ │ │ └── ExplodeOptions.cs │ │ │ ├── Fade │ │ │ │ ├── FadeObject.cs │ │ │ │ ├── FadeOption.cs │ │ │ │ └── FadeOptions.cs │ │ │ ├── Fold │ │ │ │ ├── FoldObject.cs │ │ │ │ ├── FoldOption.cs │ │ │ │ └── FoldOptions.cs │ │ │ ├── Highlight │ │ │ │ ├── HighlightObject.cs │ │ │ │ ├── HighlightOption.cs │ │ │ │ └── HighlightOptions.cs │ │ │ ├── Puff │ │ │ │ ├── PuffObject.cs │ │ │ │ ├── PuffOption.cs │ │ │ │ └── PuffOptions.cs │ │ │ ├── Pulsate │ │ │ │ ├── PulsateObject.cs │ │ │ │ ├── PulsateOption.cs │ │ │ │ └── PulsateOptions.cs │ │ │ ├── Scale │ │ │ │ ├── ScaleObject.cs │ │ │ │ ├── ScaleOption.cs │ │ │ │ └── ScaleOptions.cs │ │ │ ├── Shake │ │ │ │ ├── ShakeObject.cs │ │ │ │ ├── ShakeOption.cs │ │ │ │ └── ShakeOptions.cs │ │ │ ├── Size │ │ │ │ ├── SizeObject.cs │ │ │ │ ├── SizeOption.cs │ │ │ │ └── SizeOptions.cs │ │ │ ├── Slide │ │ │ │ ├── SlideObject.cs │ │ │ │ ├── SlideOption.cs │ │ │ │ └── SlideOptions.cs │ │ │ └── Transfer │ │ │ │ ├── TransferObject.cs │ │ │ │ ├── TransferOption.cs │ │ │ │ └── TransferOptions.cs │ │ ├── Interactions │ │ │ ├── Draggable │ │ │ │ ├── DragEvent.cs │ │ │ │ ├── DragStartEvent.cs │ │ │ │ ├── DragStopEvent.cs │ │ │ │ ├── DraggableEvents.cs │ │ │ │ ├── DraggableObject.cs │ │ │ │ ├── DraggableOption.cs │ │ │ │ └── DraggableOptions.cs │ │ │ ├── Droppable │ │ │ │ ├── DropActivateEvent.cs │ │ │ │ ├── DropDeactivateEvent.cs │ │ │ │ ├── DropEvent.cs │ │ │ │ ├── DropOverEvent.cs │ │ │ │ ├── DroppableEvents.cs │ │ │ │ ├── DroppableObject.cs │ │ │ │ ├── DroppableOption.cs │ │ │ │ └── DroppableOptions.cs │ │ │ ├── Resizable │ │ │ │ ├── ResizableEvents.cs │ │ │ │ ├── ResizableObject.cs │ │ │ │ ├── ResizableOption.cs │ │ │ │ ├── ResizableOptions.cs │ │ │ │ ├── ResizeEvent.cs │ │ │ │ ├── ResizeStartEvent.cs │ │ │ │ └── ResizeStopEvent.cs │ │ │ ├── Selectable │ │ │ │ ├── SelectableEvents.cs │ │ │ │ ├── SelectableMethod.cs │ │ │ │ ├── SelectableObject.cs │ │ │ │ ├── SelectableOption.cs │ │ │ │ ├── SelectableOptions.cs │ │ │ │ ├── SelectableSelectedEvent.cs │ │ │ │ ├── SelectableSelectingEvent.cs │ │ │ │ ├── SelectableUnselectedEvent.cs │ │ │ │ └── SelectableUnselectingEvent.cs │ │ │ └── Sortable │ │ │ │ ├── SortActivateEvent.cs │ │ │ │ ├── SortBeforeStopEvent.cs │ │ │ │ ├── SortChangeEvent.cs │ │ │ │ ├── SortDeactivateEvent.cs │ │ │ │ ├── SortEvent.cs │ │ │ │ ├── SortOutEvent.cs │ │ │ │ ├── SortOverEvent.cs │ │ │ │ ├── SortReceiveEvent.cs │ │ │ │ ├── SortRemoveEvent.cs │ │ │ │ ├── SortStartEvent.cs │ │ │ │ ├── SortStopEvent.cs │ │ │ │ ├── SortUpdateEvent.cs │ │ │ │ ├── SortableEvents.cs │ │ │ │ ├── SortableMethod.cs │ │ │ │ ├── SortableObject.cs │ │ │ │ ├── SortableOption.cs │ │ │ │ └── SortableOptions.cs │ │ ├── PositionObject.cs │ │ ├── PositionOption.cs │ │ ├── PositionOptions.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── ScriptInfo.txt │ │ ├── WidgetEvents.cs │ │ ├── WidgetMethod.cs │ │ ├── WidgetObject.cs │ │ ├── WidgetOption.cs │ │ ├── WidgetOptions.cs │ │ ├── WidgetType.cs │ │ ├── Widgets │ │ │ ├── Accordion │ │ │ │ ├── AccordionChangeEvent.cs │ │ │ │ ├── AccordionChangestartEvent.cs │ │ │ │ ├── AccordionEvents.cs │ │ │ │ ├── AccordionMethod.cs │ │ │ │ ├── AccordionObject.cs │ │ │ │ ├── AccordionOption.cs │ │ │ │ └── AccordionOptions.cs │ │ │ ├── AutoComplete │ │ │ │ ├── AutoCompleteChangeEvent.cs │ │ │ │ ├── AutoCompleteEvents.cs │ │ │ │ ├── AutoCompleteFocusEvent.cs │ │ │ │ ├── AutoCompleteMethod.cs │ │ │ │ ├── AutoCompleteObject.cs │ │ │ │ ├── AutoCompleteOption.cs │ │ │ │ ├── AutoCompleteOptions.cs │ │ │ │ ├── AutoCompleteResponseEvent.cs │ │ │ │ └── AutoCompleteSelectEvent.cs │ │ │ ├── Button │ │ │ │ ├── ButtonEvents.cs │ │ │ │ ├── ButtonMethod.cs │ │ │ │ ├── ButtonObject.cs │ │ │ │ ├── ButtonOption.cs │ │ │ │ └── ButtonOptions.cs │ │ │ ├── ButtonSet │ │ │ │ ├── ButtonSetEvents.cs │ │ │ │ ├── ButtonSetMethod.cs │ │ │ │ ├── ButtonSetObject.cs │ │ │ │ ├── ButtonSetOption.cs │ │ │ │ └── ButtonSetOptions.cs │ │ │ ├── DatePicker │ │ │ │ ├── DatePickerEvents.cs │ │ │ │ ├── DatePickerMethod.cs │ │ │ │ ├── DatePickerObject.cs │ │ │ │ ├── DatePickerOption.cs │ │ │ │ └── DatePickerOptions.cs │ │ │ ├── Dialog │ │ │ │ ├── DialogDragEvent.cs │ │ │ │ ├── DialogDragStartEvent.cs │ │ │ │ ├── DialogDragStopEvent.cs │ │ │ │ ├── DialogEvents.cs │ │ │ │ ├── DialogMethod.cs │ │ │ │ ├── DialogObject.cs │ │ │ │ ├── DialogOption.cs │ │ │ │ ├── DialogOptions.cs │ │ │ │ ├── DialogResizeEvent.cs │ │ │ │ ├── DialogResizeStartEvent.cs │ │ │ │ └── DialogResizeStopEvent.cs │ │ │ ├── ProgressBar │ │ │ │ ├── ProgressBarEvents.cs │ │ │ │ ├── ProgressBarMethod.cs │ │ │ │ ├── ProgressBarObject.cs │ │ │ │ ├── ProgressBarOption.cs │ │ │ │ └── ProgressBarOptions.cs │ │ │ ├── Slider │ │ │ │ ├── SlideChangeEvent.cs │ │ │ │ ├── SlideEvent.cs │ │ │ │ ├── SlideStartEvent.cs │ │ │ │ ├── SlideStopEvent.cs │ │ │ │ ├── SliderEvents.cs │ │ │ │ ├── SliderMethod.cs │ │ │ │ ├── SliderObject.cs │ │ │ │ ├── SliderOption.cs │ │ │ │ └── SliderOptions.cs │ │ │ └── Tabs │ │ │ │ ├── TabsAddEvent.cs │ │ │ │ ├── TabsDisableEvent.cs │ │ │ │ ├── TabsEnableEvent.cs │ │ │ │ ├── TabsEvents.cs │ │ │ │ ├── TabsLoadEvent.cs │ │ │ │ ├── TabsMethod.cs │ │ │ │ ├── TabsObject.cs │ │ │ │ ├── TabsOption.cs │ │ │ │ ├── TabsOptions.cs │ │ │ │ ├── TabsRemoveEvent.cs │ │ │ │ ├── TabsSelectEvent.cs │ │ │ │ └── TabsShowEvent.cs │ │ ├── jQuery.UI.csproj │ │ ├── jQueryUI.cs │ │ ├── jQueryUIEventHandler.cs │ │ ├── jQueryUIMethod.cs │ │ └── jQueryUIObject.cs │ │ └── jQuery.Validation │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── ScriptInfo.txt │ │ ├── jQuery.Validation.csproj │ │ ├── jQueryValidationHighlight.cs │ │ ├── jQueryValidationMethod.cs │ │ ├── jQueryValidationObject.cs │ │ ├── jQueryValidationRules.cs │ │ ├── jQueryValidator.cs │ │ └── jQueryValidatorOptions.cs ├── ScriptSharp.cs ├── ScriptSharp.sln ├── ScriptSharp.snk ├── Tools │ ├── Deployment │ │ ├── Deployment.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ScriptDeployTask.cs │ │ └── ScriptSharpWeb.targets │ ├── FxCop │ │ ├── FxCop.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RuleData.xml │ │ ├── ScriptAvoidEval.cs │ │ ├── ScriptAvoidLiteralScript.cs │ │ └── ScriptUnusedFields.cs │ └── Testing │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Testing.csproj │ │ ├── WebBrowser.cs │ │ ├── WebServer │ │ ├── HttpMessage.cs │ │ ├── HttpServer.cs │ │ ├── WebTestHttpServer.cs │ │ └── WebTestLogEventArgs.cs │ │ ├── WebTest.cs │ │ └── WebTestResult.cs └── ZipX │ ├── ItemTemplates │ ├── Class │ │ ├── Class.cs │ │ └── Class.vstemplate │ ├── Page │ │ ├── Page.cs │ │ └── Page.vstemplate │ ├── Resource │ │ ├── Resource.resx │ │ └── Resource.vstemplate │ ├── TestClass │ │ ├── TestClass.cs │ │ └── TestClass.vstemplate │ ├── jQueryPage │ │ ├── Page.cs │ │ └── jQueryPage.vstemplate │ └── jQueryPlugin │ │ ├── Plugin.cs │ │ └── jQueryPlugin.vstemplate │ ├── Packages │ ├── Core.nuspec │ ├── Core │ │ ├── Install.ps1 │ │ ├── Reset.psm1 │ │ ├── ScriptSharp.PlaceHolder.txt │ │ └── Uninstall.ps1 │ ├── FxCop.nuspec │ ├── FxCop │ │ ├── Install.ps1 │ │ └── ScriptSharp.PlaceHolder.txt │ ├── Lib.BingMaps.nuspec │ ├── Lib.HTML.nuspec │ ├── Lib.Knockout.nuspec │ ├── Lib.Node.Azure.nuspec │ ├── Lib.Node.Express.nuspec │ ├── Lib.Node.Mongo.nuspec │ ├── Lib.Node.Neo4j.nuspec │ ├── Lib.Node.Restify.nuspec │ ├── Lib.Node.nuspec │ ├── Lib.jQuery.History.nuspec │ ├── Lib.jQuery.Templating.nuspec │ ├── Lib.jQuery.UI.nuspec │ ├── Lib.jQuery.Validation.nuspec │ ├── Lib.jQuery.nuspec │ ├── Runtime.nuspec │ ├── Runtime │ │ ├── Install.ps1 │ │ ├── Reset.psm1 │ │ └── Uninstall.ps1 │ └── Testing.nuspec │ ├── ProjectTemplates │ ├── HTMLApplication │ │ ├── Application.csproj │ │ ├── AssemblyInfo.cs │ │ ├── FxCop.ruleset │ │ ├── HTMLApplication.vstemplate │ │ └── Page.cs │ ├── HTMLModule │ │ ├── AssemblyInfo.cs │ │ ├── Class1.cs │ │ ├── FxCop.ruleset │ │ ├── HTMLModule.vstemplate │ │ └── Module.csproj │ ├── ImportLibrary │ │ ├── AssemblyInfo.cs │ │ ├── Class1.cs │ │ ├── ImportLibrary.csproj │ │ ├── ImportLibrary.vstemplate │ │ └── ScriptInfo.txt │ ├── NodeApplication │ │ ├── Application.csproj │ │ ├── AssemblyInfo.cs │ │ ├── Class1.cs │ │ ├── FxCop.ruleset │ │ └── NodeApplication.vstemplate │ ├── NodeModule │ │ ├── AssemblyInfo.cs │ │ ├── Class1.cs │ │ ├── FxCop.ruleset │ │ ├── Module.csproj │ │ └── NodeModule.vstemplate │ ├── UnitTest │ │ ├── AssemblyInfo.cs │ │ ├── QUnit.css │ │ ├── QUnit.js │ │ ├── QUnitExt.js │ │ ├── TestClass1.cs │ │ ├── TestClass1.htm │ │ ├── UnitTest.csproj │ │ └── UnitTest.vstemplate │ ├── jQueryApplication │ │ ├── Application.csproj │ │ ├── AssemblyInfo.cs │ │ ├── FxCop.ruleset │ │ ├── Page.cs │ │ └── jQueryApplication.vstemplate │ └── jQueryPlugin │ │ ├── AssemblyInfo.cs │ │ ├── FxCop.ruleset │ │ ├── Plugin.cs │ │ ├── Plugin.csproj │ │ └── jQueryPlugin.vstemplate │ ├── VSIX │ ├── Extension.vsixmanifest │ ├── Logo.png │ └── [Content_Types].xml │ └── ZipX.csproj ├── tests ├── BasicTests.cs ├── Core │ ├── BrowserTest.cs │ ├── Compilation.cs │ ├── CompilationInput.cs │ ├── CompilationOutput.cs │ ├── CompilationTest.cs │ └── SimpleCompilation.cs ├── ExpressionTests.cs ├── LibraryTests.cs ├── MemberTests.cs ├── Properties │ └── AssemblyInfo.cs ├── ScriptTests.cs ├── StatementTests.cs ├── TestCases │ ├── Basic │ │ ├── Conditionals │ │ │ ├── Code.cs │ │ │ ├── DebugBaseline.txt │ │ │ └── TraceBaseline.txt │ │ ├── Dependencies │ │ │ ├── Code1.cs │ │ │ ├── Code1Baseline.txt │ │ │ ├── Code2.cs │ │ │ ├── Code2Baseline.txt │ │ │ ├── Code3.cs │ │ │ ├── Code3Baseline.txt │ │ │ ├── Code4.cs │ │ │ ├── Code4Baseline.txt │ │ │ ├── Lib.bat │ │ │ ├── Lib1.cs │ │ │ ├── Lib1.dll │ │ │ ├── Lib2.cs │ │ │ ├── Lib2.dll │ │ │ ├── Lib3.cs │ │ │ └── Lib3.dll │ │ ├── DocComments │ │ │ ├── Baseline.txt │ │ │ ├── Code.cs │ │ │ └── DocComments.xml │ │ ├── Flags │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Includes │ │ │ ├── Code.cs │ │ │ ├── MultipleIncBaseline.txt │ │ │ ├── Post.js │ │ │ ├── Pre.js │ │ │ ├── SingleIncBaseline.txt │ │ │ └── ZeroIncBaseline.txt │ │ ├── Metadata │ │ │ ├── Baseline.txt │ │ │ ├── Code.cs │ │ │ ├── Sample.bat │ │ │ ├── Sample.cs │ │ │ └── Sample.dll │ │ ├── Minimization │ │ │ ├── Baseline.txt │ │ │ ├── Code.cs │ │ │ ├── Lib.bat │ │ │ ├── Lib.cs │ │ │ └── Lib.dll │ │ ├── Resources │ │ │ ├── Baseline.txt │ │ │ ├── Code.cs │ │ │ ├── Strings1.fr-FR.resx │ │ │ ├── Strings1.fr.resx │ │ │ ├── Strings1.resx │ │ │ └── Strings2.resx │ │ ├── Simple │ │ │ ├── AMDBaseline.txt │ │ │ ├── Code.cs │ │ │ ├── DefaultBaseline.txt │ │ │ └── SimpleBaseline.txt │ │ └── UnitTest │ │ │ ├── Code.cs │ │ │ ├── NonTestBaseline.txt │ │ │ └── TestBaseline.txt │ ├── Expression │ │ ├── AnonymousMethods │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Arguments │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Array │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Base │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Binary │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Cast │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Conditional │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Date │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Delegates │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Dictionary │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── EnumToString │ │ │ ├── Code1.cs │ │ │ ├── Code2.cs │ │ │ ├── MinBaseline.txt │ │ │ └── NormalBaseline.txt │ │ ├── Events │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── ExtensionMethods │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Generics │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── GetType │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── InlineScript │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── LateBound │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Literals │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Locals │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Members │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── New │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Number │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Script │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── String │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Tasks │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Truthy │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Tuples │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ └── Unary │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ ├── Library │ │ ├── Node │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ └── jQuery │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ ├── Member │ │ ├── Constructors │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Events │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Fields │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Indexers │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Methods │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Overloads │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Properties │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ └── StaticConstructors │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ ├── Statement │ │ ├── Exceptions │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Expression │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── For │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Foreach │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── IfElse │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Return │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Switch │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Variables │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ └── While │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ ├── Type │ │ ├── Classes │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Delegates │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Enumerator │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Enums │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Globals │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Imported │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Interfaces │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Modules │ │ │ ├── Baseline.txt │ │ │ ├── Code.cs │ │ │ └── ZeroExportsBaseline.txt │ │ ├── Namespaces │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Nullable │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ ├── Partials │ │ │ ├── Baseline.txt │ │ │ ├── Code1.cs │ │ │ └── Code2.cs │ │ ├── Records │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ │ └── UsingAlias │ │ │ ├── Baseline.txt │ │ │ └── Code.cs │ └── Validation │ │ ├── ConflictingTypes │ │ └── Code.cs │ │ ├── CreateInstance │ │ └── Code.cs │ │ ├── Exceptions │ │ └── Code.cs │ │ ├── ImplicitEnums │ │ └── Code.cs │ │ ├── InlineScript │ │ └── Code.cs │ │ ├── Keywords │ │ └── Code.cs │ │ ├── Modules │ │ └── Code.cs │ │ ├── NestedTypes │ │ └── Code.cs │ │ ├── Overloads │ │ └── Code.cs │ │ ├── Properties │ │ └── Code.cs │ │ ├── Records │ │ └── Code.cs │ │ ├── ScriptExtension │ │ └── Code.cs │ │ └── Unsupported │ │ ├── Code1.cs │ │ └── Code2.cs ├── TestSite │ ├── Bases.htm │ ├── Code │ │ └── OOP.cs │ ├── Date.htm │ ├── Delegates.htm │ ├── Dictionary.htm │ ├── Enumerator.htm │ ├── Globals.htm │ ├── Loader.htm │ ├── LoaderChain.htm │ ├── LoaderCombined.htm │ ├── LoaderConfig.htm │ ├── LoaderNonAMD.htm │ ├── Observable.htm │ ├── QUnit │ │ ├── QUnit.css │ │ ├── QUnit.js │ │ └── QUnitExt.js │ ├── Queue.htm │ ├── Scripts │ │ ├── A.js │ │ ├── AB.js │ │ ├── B.js │ │ └── C.js │ ├── Stack.htm │ ├── String.htm │ ├── StringBuilder.htm │ ├── Tasks.htm │ └── TypeSystem.htm ├── Tests.csproj ├── Tests.sln ├── Tests.testsettings ├── TypeTests.cs └── ValidationTests.cs └── tools ├── Preprocessor ├── Application.cs ├── CommandLine.cs ├── FileInputStreamSource.cs ├── FileOutputStreamSource.cs ├── IErrorHandler.cs ├── IStreamResolver.cs ├── IStreamSource.cs ├── Preprocessor.csproj ├── Preprocessor.sln ├── Preprocessor │ ├── CondenserTextReader.cs │ ├── PreprocessorException.cs │ └── PreprocessorTextReader.cs ├── PreprocessorOptions.cs ├── Properties │ └── AssemblyInfo.cs └── ScriptPreprocessor.cs ├── ZipBuilder ├── ICSharpCode.SharpZipLib.dll ├── Properties │ └── AssemblyInfo.cs ├── Zip.cs ├── ZipBuilder.csproj └── ZipBuilder.sln ├── bin ├── ICSharpCode.SharpZipLib.dll ├── ScriptSharp.Internal.ZipBuilder.dll ├── VsSDK │ ├── CreateExpInstance.exe │ ├── CreateExpInstance.exe.config │ ├── CreatePkgDef.exe │ ├── CreatePkgDef.exe.config │ ├── Microsoft.VsSDK.Build.Tasks.dll │ ├── Microsoft.VsSDK.Common.targets │ ├── Microsoft.VsSDK.targets │ ├── ResetExpInstance.bat │ ├── VSCTCompress.dll │ ├── VSCTLibrary.dll │ ├── VSIXManifestSchema.xsd │ ├── vsct.exe │ └── vsshlids.h ├── ajaxmin.exe ├── diff.exe ├── nuget.exe ├── sspp.exe └── windiff.exe └── ext └── AjaxMin.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/License.txt -------------------------------------------------------------------------------- /Notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/Notice.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/Readme.md -------------------------------------------------------------------------------- /fx/Sharpen/Core/Application.Behaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Application.Behaviors.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Application.Bindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Application.Bindings.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Application.Services.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Application.Services.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Application.Templates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Application.Templates.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Application.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Behavior.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/BehaviorRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/BehaviorRegistration.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Binder.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/BinderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/BinderFactory.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/BinderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/BinderManager.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Bindings/BindExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Bindings/BindExpression.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Bindings/ContentBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Bindings/ContentBinder.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Bindings/EventBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Bindings/EventBinder.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Bindings/PropertyBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Bindings/PropertyBinder.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Bindings/ValueBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Bindings/ValueBinder.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Bindings/VisibilityBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Bindings/VisibilityBinder.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Core.csproj -------------------------------------------------------------------------------- /fx/Sharpen/Core/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Expression.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/ExpressionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/ExpressionFactory.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/OptionsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/OptionsParser.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Properties/FxCop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Properties/FxCop.ruleset -------------------------------------------------------------------------------- /fx/Sharpen/Core/Properties/TemplateEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Properties/TemplateEngine.js -------------------------------------------------------------------------------- /fx/Sharpen/Core/ServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/ServiceRegistration.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/Template.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/TemplateEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/TemplateEngine.cs -------------------------------------------------------------------------------- /fx/Sharpen/Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Core/packages.config -------------------------------------------------------------------------------- /fx/Sharpen/Sharpen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/Sharpen.sln -------------------------------------------------------------------------------- /fx/Sharpen/packages/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/packages/nuget.exe -------------------------------------------------------------------------------- /fx/Sharpen/packages/nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/packages/nuget.targets -------------------------------------------------------------------------------- /fx/Sharpen/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/fx/Sharpen/packages/repositories.config -------------------------------------------------------------------------------- /samples/.gitignore: -------------------------------------------------------------------------------- 1 | Scripts/ 2 | -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe.sln -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/AroundMe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/AroundMe.csproj -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/Core/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/Core/Model.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/Core/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/Core/Utility.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/DataModel/Photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/DataModel/Photo.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/Graphs/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/Graphs/Graph.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/Graphs/GraphEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/Graphs/GraphEdge.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/Graphs/GraphLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/Graphs/GraphLayout.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/Graphs/GraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/Graphs/GraphNode.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/Page.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/PageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/PageModel.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/PhotoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/PhotoView.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/Services/Base58.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/Services/Base58.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/Tests/PageModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/Tests/PageModelTests.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMe/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMe/packages.config -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeTests.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeTests.testsettings -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeTests/DefaultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeTests/DefaultTests.cs -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeTests/Web/QUnit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeTests/Web/QUnit.css -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeTests/Web/QUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeTests/Web/QUnit.js -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeTests/Web/QUnitExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeTests/Web/QUnitExt.js -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeTests/packages.config -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/AroundMeWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/AroundMeWeb.csproj -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Content/Dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Content/Dot.png -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Content/Flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Content/Flickr.png -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Content/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Content/Heart.png -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Content/Location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Content/Location.png -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Content/Pushpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Content/Pushpin.png -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Content/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Content/Reset.png -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Content/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Content/Search.png -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Content/Site.css -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Content/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Content/Twitter.png -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/Default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/Default.htm -------------------------------------------------------------------------------- /samples/AroundMe/AroundMeWeb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/AroundMeWeb/packages.config -------------------------------------------------------------------------------- /samples/AroundMe/MapDemo/Map.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/MapDemo/Map.htm -------------------------------------------------------------------------------- /samples/AroundMe/MapDemo/MapApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/MapDemo/MapApplication.cs -------------------------------------------------------------------------------- /samples/AroundMe/MapDemo/MapDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/MapDemo/MapDemo.csproj -------------------------------------------------------------------------------- /samples/AroundMe/MapDemo/MapPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/MapDemo/MapPage.cs -------------------------------------------------------------------------------- /samples/AroundMe/MapDemo/Properties/FxCop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/MapDemo/Properties/FxCop.ruleset -------------------------------------------------------------------------------- /samples/AroundMe/MapDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/MapDemo/packages.config -------------------------------------------------------------------------------- /samples/AroundMe/Twitter/Twitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/Twitter/Twitter.cs -------------------------------------------------------------------------------- /samples/AroundMe/Twitter/Twitter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/Twitter/Twitter.csproj -------------------------------------------------------------------------------- /samples/AroundMe/Twitter/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/Twitter/packages.config -------------------------------------------------------------------------------- /samples/AroundMe/packages/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/packages/nuget.exe -------------------------------------------------------------------------------- /samples/AroundMe/packages/nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/packages/nuget.targets -------------------------------------------------------------------------------- /samples/AroundMe/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/AroundMe/packages/repositories.config -------------------------------------------------------------------------------- /samples/Cellar/Cellar.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/Cellar.sln -------------------------------------------------------------------------------- /samples/Cellar/CellarClient/CellarApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarClient/CellarApplication.cs -------------------------------------------------------------------------------- /samples/Cellar/CellarClient/CellarClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarClient/CellarClient.csproj -------------------------------------------------------------------------------- /samples/Cellar/CellarClient/DataModels/Wine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarClient/DataModels/Wine.cs -------------------------------------------------------------------------------- /samples/Cellar/CellarClient/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarClient/Page.cs -------------------------------------------------------------------------------- /samples/Cellar/CellarClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarClient/packages.config -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/CellarApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/CellarApplication.cs -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/CellarServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/CellarServer.csproj -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/Content/cellar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/Content/cellar.html -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/Content/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/Content/images/bg.jpg -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/Content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/Content/index.html -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/Content/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/Content/site.css -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/DataModels/Wine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/DataModels/Wine.cs -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/Server.cs -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/data.json -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/package.json -------------------------------------------------------------------------------- /samples/Cellar/CellarServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/CellarServer/packages.config -------------------------------------------------------------------------------- /samples/Cellar/packages/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/packages/nuget.exe -------------------------------------------------------------------------------- /samples/Cellar/packages/nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/packages/nuget.targets -------------------------------------------------------------------------------- /samples/Cellar/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Cellar/packages/repositories.config -------------------------------------------------------------------------------- /samples/FishTank/Fish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/Fish.cs -------------------------------------------------------------------------------- /samples/FishTank/FishSprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/FishSprites.png -------------------------------------------------------------------------------- /samples/FishTank/FishTank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/FishTank.cs -------------------------------------------------------------------------------- /samples/FishTank/FishTank.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/FishTank.csproj -------------------------------------------------------------------------------- /samples/FishTank/FishTank.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/FishTank.htm -------------------------------------------------------------------------------- /samples/FishTank/FishTank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/FishTank.jpg -------------------------------------------------------------------------------- /samples/FishTank/FishTank.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/FishTank.sln -------------------------------------------------------------------------------- /samples/FishTank/FishTankApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/FishTankApplication.cs -------------------------------------------------------------------------------- /samples/FishTank/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/FishTank/Properties/FxCop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/Properties/FxCop.ruleset -------------------------------------------------------------------------------- /samples/FishTank/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/packages.config -------------------------------------------------------------------------------- /samples/FishTank/packages/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/packages/nuget.exe -------------------------------------------------------------------------------- /samples/FishTank/packages/nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/packages/nuget.targets -------------------------------------------------------------------------------- /samples/FishTank/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/FishTank/packages/repositories.config -------------------------------------------------------------------------------- /samples/KOWorld/App/App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/App/App.csproj -------------------------------------------------------------------------------- /samples/KOWorld/App/AppModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/App/AppModel.cs -------------------------------------------------------------------------------- /samples/KOWorld/App/HelloPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/App/HelloPage.cs -------------------------------------------------------------------------------- /samples/KOWorld/App/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/App/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/KOWorld/App/Properties/FxCop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/App/Properties/FxCop.ruleset -------------------------------------------------------------------------------- /samples/KOWorld/App/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/App/packages.config -------------------------------------------------------------------------------- /samples/KOWorld/KOWorld.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/KOWorld.sln -------------------------------------------------------------------------------- /samples/KOWorld/Web/Hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/Web/Hello.html -------------------------------------------------------------------------------- /samples/KOWorld/Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/KOWorld/Web/Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/Web/Web.csproj -------------------------------------------------------------------------------- /samples/KOWorld/Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/Web/packages.config -------------------------------------------------------------------------------- /samples/KOWorld/packages/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/packages/nuget.exe -------------------------------------------------------------------------------- /samples/KOWorld/packages/nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/packages/nuget.targets -------------------------------------------------------------------------------- /samples/KOWorld/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/KOWorld/packages/repositories.config -------------------------------------------------------------------------------- /samples/Photos/Flickr/Flickr.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Flickr/Flickr.csproj -------------------------------------------------------------------------------- /samples/Photos/Flickr/FlickrClient/Flickr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Flickr/FlickrClient/Flickr.cs -------------------------------------------------------------------------------- /samples/Photos/Flickr/FlickrClient/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Flickr/FlickrClient/Json.cs -------------------------------------------------------------------------------- /samples/Photos/Flickr/FlickrPhotoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Flickr/FlickrPhotoService.cs -------------------------------------------------------------------------------- /samples/Photos/Flickr/IPhotoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Flickr/IPhotoService.cs -------------------------------------------------------------------------------- /samples/Photos/Flickr/Photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Flickr/Photo.cs -------------------------------------------------------------------------------- /samples/Photos/Flickr/Properties/FxCop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Flickr/Properties/FxCop.ruleset -------------------------------------------------------------------------------- /samples/Photos/Flickr/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Flickr/packages.config -------------------------------------------------------------------------------- /samples/Photos/PhotoGrid/PhotoGrid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoGrid/PhotoGrid.csproj -------------------------------------------------------------------------------- /samples/Photos/PhotoGrid/PhotoGridPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoGrid/PhotoGridPage.cs -------------------------------------------------------------------------------- /samples/Photos/PhotoGrid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoGrid/packages.config -------------------------------------------------------------------------------- /samples/Photos/PhotoList/GalleryPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoList/GalleryPlugin.cs -------------------------------------------------------------------------------- /samples/Photos/PhotoList/ListPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoList/ListPage.cs -------------------------------------------------------------------------------- /samples/Photos/PhotoList/PhotoList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoList/PhotoList.csproj -------------------------------------------------------------------------------- /samples/Photos/PhotoList/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoList/packages.config -------------------------------------------------------------------------------- /samples/Photos/PhotoListTests.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoListTests.testsettings -------------------------------------------------------------------------------- /samples/Photos/PhotoListTests/Web/QUnit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoListTests/Web/QUnit.css -------------------------------------------------------------------------------- /samples/Photos/PhotoListTests/Web/QUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoListTests/Web/QUnit.js -------------------------------------------------------------------------------- /samples/Photos/PhotoListTests/Web/QUnitExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoListTests/Web/QUnitExt.js -------------------------------------------------------------------------------- /samples/Photos/PhotoListTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoListTests/packages.config -------------------------------------------------------------------------------- /samples/Photos/PhotoTiles/PhotoTiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoTiles/PhotoTiles.csproj -------------------------------------------------------------------------------- /samples/Photos/PhotoTiles/PhotoTilesPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoTiles/PhotoTilesPage.cs -------------------------------------------------------------------------------- /samples/Photos/PhotoTiles/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotoTiles/packages.config -------------------------------------------------------------------------------- /samples/Photos/Photos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Photos.sln -------------------------------------------------------------------------------- /samples/Photos/PhotosWeb/PhotoGrid.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotosWeb/PhotoGrid.htm -------------------------------------------------------------------------------- /samples/Photos/PhotosWeb/PhotoList.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotosWeb/PhotoList.htm -------------------------------------------------------------------------------- /samples/Photos/PhotosWeb/PhotoTiles.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotosWeb/PhotoTiles.htm -------------------------------------------------------------------------------- /samples/Photos/PhotosWeb/PhotosWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotosWeb/PhotosWeb.csproj -------------------------------------------------------------------------------- /samples/Photos/PhotosWeb/Scripts/jquery.bbq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotosWeb/Scripts/jquery.bbq.js -------------------------------------------------------------------------------- /samples/Photos/PhotosWeb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/PhotosWeb/packages.config -------------------------------------------------------------------------------- /samples/Photos/Plugins/Gridster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Plugins/Gridster.cs -------------------------------------------------------------------------------- /samples/Photos/Plugins/Isotope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Plugins/Isotope.cs -------------------------------------------------------------------------------- /samples/Photos/Plugins/LightBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Plugins/LightBox.cs -------------------------------------------------------------------------------- /samples/Photos/Plugins/Plugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Plugins/Plugins.csproj -------------------------------------------------------------------------------- /samples/Photos/Plugins/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/Plugins/packages.config -------------------------------------------------------------------------------- /samples/Photos/packages/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/packages/nuget.exe -------------------------------------------------------------------------------- /samples/Photos/packages/nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/packages/nuget.targets -------------------------------------------------------------------------------- /samples/Photos/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Photos/packages/repositories.config -------------------------------------------------------------------------------- /samples/Todo/Todo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/Todo.sln -------------------------------------------------------------------------------- /samples/Todo/Todo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/Todo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Todo/Todo/Properties/FxCop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/Todo/Properties/FxCop.ruleset -------------------------------------------------------------------------------- /samples/Todo/Todo/Todo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/Todo/Todo.csproj -------------------------------------------------------------------------------- /samples/Todo/Todo/TodoApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/Todo/TodoApplication.cs -------------------------------------------------------------------------------- /samples/Todo/Todo/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/Todo/TodoItem.cs -------------------------------------------------------------------------------- /samples/Todo/Todo/TodoList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/Todo/TodoList.cs -------------------------------------------------------------------------------- /samples/Todo/Todo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/Todo/packages.config -------------------------------------------------------------------------------- /samples/Todo/TodoWeb/Assets/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/TodoWeb/Assets/Background.png -------------------------------------------------------------------------------- /samples/Todo/TodoWeb/Assets/Todo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/TodoWeb/Assets/Todo.css -------------------------------------------------------------------------------- /samples/Todo/TodoWeb/Default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/TodoWeb/Default.htm -------------------------------------------------------------------------------- /samples/Todo/TodoWeb/Scripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/TodoWeb/Scripts/jquery.min.js -------------------------------------------------------------------------------- /samples/Todo/TodoWeb/Scripts/jquery.tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/TodoWeb/Scripts/jquery.tmpl.js -------------------------------------------------------------------------------- /samples/Todo/TodoWeb/TodoWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/TodoWeb/TodoWeb.csproj -------------------------------------------------------------------------------- /samples/Todo/TodoWeb/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/TodoWeb/favicon.ico -------------------------------------------------------------------------------- /samples/Todo/TodoWeb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/TodoWeb/packages.config -------------------------------------------------------------------------------- /samples/Todo/packages/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/packages/nuget.exe -------------------------------------------------------------------------------- /samples/Todo/packages/nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/packages/nuget.targets -------------------------------------------------------------------------------- /samples/Todo/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/Todo/packages/repositories.config -------------------------------------------------------------------------------- /samples/WebREPL/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/App.cs -------------------------------------------------------------------------------- /samples/WebREPL/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/CommandHandler.cs -------------------------------------------------------------------------------- /samples/WebREPL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/WebREPL/Properties/FxCop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/Properties/FxCop.ruleset -------------------------------------------------------------------------------- /samples/WebREPL/WebCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/WebCommand.cs -------------------------------------------------------------------------------- /samples/WebREPL/WebREPL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/WebREPL.csproj -------------------------------------------------------------------------------- /samples/WebREPL/WebREPL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/WebREPL.sln -------------------------------------------------------------------------------- /samples/WebREPL/WebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/WebRequest.cs -------------------------------------------------------------------------------- /samples/WebREPL/WebResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/WebResponse.cs -------------------------------------------------------------------------------- /samples/WebREPL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/packages.config -------------------------------------------------------------------------------- /samples/WebREPL/packages/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/packages/nuget.exe -------------------------------------------------------------------------------- /samples/WebREPL/packages/nuget.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/packages/nuget.targets -------------------------------------------------------------------------------- /samples/WebREPL/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/samples/WebREPL/packages/repositories.config -------------------------------------------------------------------------------- /src/Core/App/App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/App/App.csproj -------------------------------------------------------------------------------- /src/Core/App/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/App/Application.cs -------------------------------------------------------------------------------- /src/Core/App/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/App/CommandLine.cs -------------------------------------------------------------------------------- /src/Core/App/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/App/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Core/Build/Build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Build/Build.csproj -------------------------------------------------------------------------------- /src/Core/Build/Generators/ResXCodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Build/Generators/ResXCodeBuilder.cs -------------------------------------------------------------------------------- /src/Core/Build/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Build/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Core/Build/ScriptSharp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Build/ScriptSharp.targets -------------------------------------------------------------------------------- /src/Core/Build/Tasks/ResXCodeGeneratorTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Build/Tasks/ResXCodeGeneratorTask.cs -------------------------------------------------------------------------------- /src/Core/Build/Tasks/ScriptCompilerExecTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Build/Tasks/ScriptCompilerExecTask.cs -------------------------------------------------------------------------------- /src/Core/Build/Tasks/ScriptCompilerTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Build/Tasks/ScriptCompilerTask.cs -------------------------------------------------------------------------------- /src/Core/Compiler/CodeModel/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/CodeModel/Modifiers.cs -------------------------------------------------------------------------------- /src/Core/Compiler/CodeModel/Names/NameNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/CodeModel/Names/NameNode.cs -------------------------------------------------------------------------------- /src/Core/Compiler/CodeModel/ParseNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/CodeModel/ParseNode.cs -------------------------------------------------------------------------------- /src/Core/Compiler/CodeModel/ParseNodeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/CodeModel/ParseNodeList.cs -------------------------------------------------------------------------------- /src/Core/Compiler/CodeModel/ParseNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/CodeModel/ParseNodeType.cs -------------------------------------------------------------------------------- /src/Core/Compiler/CodeModel/Tokens/IntToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/CodeModel/Tokens/IntToken.cs -------------------------------------------------------------------------------- /src/Core/Compiler/CodeModel/Tokens/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/CodeModel/Tokens/Token.cs -------------------------------------------------------------------------------- /src/Core/Compiler/CodeModel/Types/TypeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/CodeModel/Types/TypeNode.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Compiler.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Compiler.csproj -------------------------------------------------------------------------------- /src/Core/Compiler/Compiler/CodeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Compiler/CodeBuilder.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Compiler/MetadataBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Compiler/MetadataBuilder.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Compiler/ResourcesBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Compiler/ResourcesBuilder.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Compiler/StatementBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Compiler/StatementBuilder.cs -------------------------------------------------------------------------------- /src/Core/Compiler/CompilerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/CompilerOptions.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Generator/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Generator/CodeGenerator.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Generator/MemberGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Generator/MemberGenerator.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Generator/ScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Generator/ScriptGenerator.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Generator/TestGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Generator/TestGenerator.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Generator/TypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Generator/TypeGenerator.cs -------------------------------------------------------------------------------- /src/Core/Compiler/IErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/IErrorHandler.cs -------------------------------------------------------------------------------- /src/Core/Compiler/IStreamSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/IStreamSource.cs -------------------------------------------------------------------------------- /src/Core/Compiler/IStreamSourceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/IStreamSourceResolver.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/ArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/ArrayType.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/AssemblyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/AssemblyFlags.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/CallSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/CallSite.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Cil/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Cil/Code.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Cil/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Cil/Document.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Cil/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Cil/OpCode.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Cil/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Cil/OpCodes.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Cil/Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Cil/Symbols.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/ExportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/ExportedType.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Import.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/MarshalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/MarshalInfo.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Metadata/Heap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Metadata/Heap.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Metadata/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Metadata/Row.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Modifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Modifiers.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/ModuleKind.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/NativeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/NativeType.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/PE/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/PE/ByteBuffer.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/PE/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/PE/Image.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/PE/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/PE/Section.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/PE/TextMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/PE/TextMap.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/PInvokeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/PInvokeInfo.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/PinnedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/PinnedType.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/PointerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/PointerType.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/ReferenceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/ReferenceType.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Resource.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/SentinelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/SentinelType.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/TargetRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/TargetRuntime.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/TypeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/TypeParser.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/TypeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/TypeReference.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/TypeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/TypeSystem.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/Utility/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/Utility/Empty.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/IL/VariantType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/IL/VariantType.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/Interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/Interop.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/MetadataHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/MetadataHelpers.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/MetadataImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/MetadataImporter.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/MetadataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/MetadataSource.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Importer/SignatureParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Importer/SignatureParser.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/BufferPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/BufferPosition.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/Error.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/ErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/ErrorEventArgs.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/ErrorEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/ErrorEventHandler.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/FileErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/FileErrorEventArgs.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/FileLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/FileLexer.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/FileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/FileParser.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/FilePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/FilePosition.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/Keywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/Keywords.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/LexError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/LexError.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/Lexer.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/LineMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/LineMap.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/Name.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/NameTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/NameTable.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/ParseError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/ParseError.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/Parser.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/PreprocessorError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/PreprocessorError.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/PreprocessorIfLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/PreprocessorIfLine.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/PreprocessorLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/PreprocessorLexer.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/PreprocessorLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/PreprocessorLine.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/PreprocessorTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/PreprocessorTokens.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Parser/TextBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Parser/TextBuffer.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Core/Compiler/ScriptCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/ScriptCompiler.cs -------------------------------------------------------------------------------- /src/Core/Compiler/ScriptInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/ScriptInfo.cs -------------------------------------------------------------------------------- /src/Core/Compiler/ScriptReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/ScriptReference.cs -------------------------------------------------------------------------------- /src/Core/Compiler/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Compiler/Utility.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Action.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Arguments.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Array.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Boolean.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Byte.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Callback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Callback.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/CancelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/CancelEventArgs.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Char.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/ArrayCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/ArrayCallback.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/ArrayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/ArrayList.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/Dictionary.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/Generic/List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/Generic/List.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/Generic/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/Generic/Queue.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/Generic/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/Generic/Stack.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/ICollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/ICollection.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/IEnumerable.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/IEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/IEnumerator.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/Queue.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Collections/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Collections/Stack.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/CompareCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/CompareCallback.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/ComponentModel/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/ComponentModel/IContainer.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/ComponentModel/IObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/ComponentModel/IObserver.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/ComponentModel/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/ComponentModel/Observable.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/CoreLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/CoreLib.csproj -------------------------------------------------------------------------------- /src/Core/CoreLib/Date.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Date.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Decimal.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Delegate.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Diagnostics/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Diagnostics/Debug.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Double.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Enum.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/EventArgs.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/EventHandler.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Exception.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Export.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Export.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Func.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Func.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Function.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Globalization/CultureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Globalization/CultureInfo.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/IDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/IDisposable.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Int16.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Int32.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Int64.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Math.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Nullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Nullable.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Number.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Number.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Object.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/RegExp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/RegExp.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Runtime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Runtime.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/SByte.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Script.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/ScriptMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/ScriptMetadata.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Serialization/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Serialization/Json.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Single.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/String.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/StringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/StringBuilder.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/StringReplaceCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/StringReplaceCallback.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Testing/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Testing/Assert.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Testing/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Testing/TestClass.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Testing/TestEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Testing/TestEngine.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Threading/Deferred.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Threading/Deferred.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Threading/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Threading/Task.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Threading/TaskStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Threading/TaskStatus.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Tuple.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Type.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/UInt16.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/UInt32.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/UInt64.cs -------------------------------------------------------------------------------- /src/Core/CoreLib/Void.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/CoreLib/Void.cs -------------------------------------------------------------------------------- /src/Core/FileInputStreamSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/FileInputStreamSource.cs -------------------------------------------------------------------------------- /src/Core/FileOutputStreamSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/FileOutputStreamSource.cs -------------------------------------------------------------------------------- /src/Core/ResXItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/ResXItem.cs -------------------------------------------------------------------------------- /src/Core/ResXParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/ResXParser.cs -------------------------------------------------------------------------------- /src/Core/ResourceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/ResourceFile.cs -------------------------------------------------------------------------------- /src/Core/Scripts/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Loader.js -------------------------------------------------------------------------------- /src/Core/Scripts/Package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Package/package.json -------------------------------------------------------------------------------- /src/Core/Scripts/Package/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Package/readme.md -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/Collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/Collections.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/Contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/Contracts.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/Culture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/Culture.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/Delegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/Delegate.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/EventArgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/EventArgs.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/Format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/Format.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/Misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/Misc.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/Observable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/Observable.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/String.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/String.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/StringBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/StringBuilder.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/Task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/Task.js -------------------------------------------------------------------------------- /src/Core/Scripts/Runtime/TypeSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Runtime/TypeSystem.js -------------------------------------------------------------------------------- /src/Core/Scripts/Scripts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Core/Scripts/Scripts.csproj -------------------------------------------------------------------------------- /src/Libraries/Knockout/BindingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/BindingContext.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/BindingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/BindingHandler.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/CompareResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/CompareResult.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/CompareResultStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/CompareResultStatus.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/ComputedObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/ComputedObservable.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/Knockout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/Knockout.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/Knockout.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/Knockout.csproj -------------------------------------------------------------------------------- /src/Libraries/Knockout/KnockoutMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/KnockoutMapping.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/KnockoutUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/KnockoutUtils.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/Observable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/Observable.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/ObservableArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/ObservableArray.cs -------------------------------------------------------------------------------- /src/Libraries/Knockout/Subscribable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Knockout/Subscribable.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/Map.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapBounds.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapColor.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapEntity.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapEvents.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapInfobox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapInfobox.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapModule.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapOptions.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapPoint.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapPolygon.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapPushpin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapPushpin.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapShape.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapTile.cs -------------------------------------------------------------------------------- /src/Libraries/Microsoft/BingMaps/MapType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Microsoft/BingMaps/MapType.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Azure/Azure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Azure/Azure.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Azure/Runtime/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Azure/Runtime/Role.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/AsyncCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/AsyncCallback.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/Compute/OS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/Compute/OS.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IEventEmitter.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/Buffer.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/Console.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/Encoding.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/FileAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/FileAccess.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/FileStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/FileStats.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/FileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/FileSystem.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/LineReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/LineReader.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/Path.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/REPL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/REPL.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/REPLOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/REPLOptions.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/ReadStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/ReadStream.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/IO/WriteStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/IO/WriteStream.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/Network/Http.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/Network/Http.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/Network/Https.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/Network/Https.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/Network/Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/Network/Net.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/Network/Socket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/Network/Socket.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/Network/Url.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/Network/Url.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/Node.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/Node.Core.csproj -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Core/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Core/Node.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Express/Express.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Express/Express.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Mongo/MongoClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Mongo/MongoClient.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Mongo/MongoCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Mongo/MongoCursor.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Mongo/MongoDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Mongo/MongoDatabase.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Mongo/MongoServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Mongo/MongoServer.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Neo4j/GraphDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Neo4j/GraphDatabase.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Neo4j/GraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Neo4j/GraphNode.cs -------------------------------------------------------------------------------- /src/Libraries/Node/Node.Neo4j/GraphPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Node/Node.Neo4j/GraphPath.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ActiveXObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ActiveXObject.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/AnchorElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/AnchorElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/AreaElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/AreaElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/AudioElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/AudioElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/CanvasElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/CanvasElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/CheckBoxElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/CheckBoxElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ClientRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ClientRect.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ClientRectList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ClientRectList.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/CustomEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/CustomEvent.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Data/Files/Blob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Data/Files/Blob.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Data/Files/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Data/Files/File.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Data/Files/FileError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Data/Files/FileError.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Data/Files/FileList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Data/Files/FileList.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Data/Sql/SqlDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Data/Sql/SqlDatabase.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Data/Sql/SqlError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Data/Sql/SqlError.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Data/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Data/Storage.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/DataFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/DataFormat.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/DataTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/DataTransfer.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/DivElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/DivElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Document.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/DocumentFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/DocumentFragment.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/DocumentInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/DocumentInstance.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/DropEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/DropEffect.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/DropEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/DropEffects.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Editing/ControlRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Editing/ControlRange.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Editing/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Editing/Range.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Editing/Selection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Editing/Selection.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Editing/TextRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Editing/TextRange.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Element.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Element.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ElementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ElementAttribute.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ElementAttributeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ElementAttributeName.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ElementCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ElementCollection.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ElementEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ElementEvent.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ElementEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ElementEventHandler.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ElementEventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ElementEventListener.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ElementType.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ErrorHandler.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/FileInputElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/FileInputElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/FormElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/FormElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/GestureEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/GestureEvent.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/History.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/IElementEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/IElementEventHandler.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/IFrameElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/IFrameElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ImageElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ImageElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/InputElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/InputElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/LinkElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/LinkElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Location.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/MapElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/MapElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/MessageEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/MessageEvent.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/MutableEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/MutableEvent.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Navigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Navigator.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/OptionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/OptionElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Orientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Orientation.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Plugin.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/PluginArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/PluginArray.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Screen.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/ScriptElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/ScriptElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/SelectElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/SelectElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Services/Geolocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Services/Geolocation.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Style.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Style.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/TableCellElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/TableCellElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/TableElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/TableElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/TableRowElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/TableRowElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/TableSectionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/TableSectionElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/TextAreaElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/TextAreaElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/TextElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/TextElement.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/TokenList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/TokenList.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/TouchEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/TouchEvent.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/TouchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/TouchInfo.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/Window.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Html/WindowInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Html/WindowInstance.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Net/HttpVerb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Net/HttpVerb.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Net/ReadyState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Net/ReadyState.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Net/XmlHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Net/XmlHttpRequest.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Web.csproj -------------------------------------------------------------------------------- /src/Libraries/Web/Xml/XmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Xml/XmlAttribute.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Xml/XmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Xml/XmlDocument.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Xml/XmlDocumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Xml/XmlDocumentParser.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Xml/XmlNamedNodeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Xml/XmlNamedNodeMap.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Xml/XmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Xml/XmlNode.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Xml/XmlNodeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Xml/XmlNodeList.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Xml/XmlNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Xml/XmlNodeType.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Xml/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Xml/XmlSerializer.cs -------------------------------------------------------------------------------- /src/Libraries/Web/Xml/XmlText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/Web/Xml/XmlText.cs -------------------------------------------------------------------------------- /src/Libraries/jQuery/jQuery.Core/IDeferred.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/jQuery/jQuery.Core/IDeferred.cs -------------------------------------------------------------------------------- /src/Libraries/jQuery/jQuery.Core/jQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/jQuery/jQuery.Core/jQuery.cs -------------------------------------------------------------------------------- /src/Libraries/jQuery/jQuery.UI/WidgetEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/jQuery/jQuery.UI/WidgetEvents.cs -------------------------------------------------------------------------------- /src/Libraries/jQuery/jQuery.UI/WidgetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/jQuery/jQuery.UI/WidgetMethod.cs -------------------------------------------------------------------------------- /src/Libraries/jQuery/jQuery.UI/WidgetObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/jQuery/jQuery.UI/WidgetObject.cs -------------------------------------------------------------------------------- /src/Libraries/jQuery/jQuery.UI/WidgetOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/jQuery/jQuery.UI/WidgetOption.cs -------------------------------------------------------------------------------- /src/Libraries/jQuery/jQuery.UI/WidgetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/jQuery/jQuery.UI/WidgetType.cs -------------------------------------------------------------------------------- /src/Libraries/jQuery/jQuery.UI/jQueryUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Libraries/jQuery/jQuery.UI/jQueryUI.cs -------------------------------------------------------------------------------- /src/ScriptSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ScriptSharp.cs -------------------------------------------------------------------------------- /src/ScriptSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ScriptSharp.sln -------------------------------------------------------------------------------- /src/ScriptSharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ScriptSharp.snk -------------------------------------------------------------------------------- /src/Tools/Deployment/Deployment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Deployment/Deployment.csproj -------------------------------------------------------------------------------- /src/Tools/Deployment/ScriptDeployTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Deployment/ScriptDeployTask.cs -------------------------------------------------------------------------------- /src/Tools/Deployment/ScriptSharpWeb.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Deployment/ScriptSharpWeb.targets -------------------------------------------------------------------------------- /src/Tools/FxCop/FxCop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/FxCop/FxCop.csproj -------------------------------------------------------------------------------- /src/Tools/FxCop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/FxCop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/FxCop/RuleData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/FxCop/RuleData.xml -------------------------------------------------------------------------------- /src/Tools/FxCop/ScriptAvoidEval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/FxCop/ScriptAvoidEval.cs -------------------------------------------------------------------------------- /src/Tools/FxCop/ScriptAvoidLiteralScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/FxCop/ScriptAvoidLiteralScript.cs -------------------------------------------------------------------------------- /src/Tools/FxCop/ScriptUnusedFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/FxCop/ScriptUnusedFields.cs -------------------------------------------------------------------------------- /src/Tools/Testing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Testing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tools/Testing/Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Testing/Testing.csproj -------------------------------------------------------------------------------- /src/Tools/Testing/WebBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Testing/WebBrowser.cs -------------------------------------------------------------------------------- /src/Tools/Testing/WebServer/HttpMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Testing/WebServer/HttpMessage.cs -------------------------------------------------------------------------------- /src/Tools/Testing/WebServer/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Testing/WebServer/HttpServer.cs -------------------------------------------------------------------------------- /src/Tools/Testing/WebTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Testing/WebTest.cs -------------------------------------------------------------------------------- /src/Tools/Testing/WebTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/Tools/Testing/WebTestResult.cs -------------------------------------------------------------------------------- /src/ZipX/ItemTemplates/Class/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ItemTemplates/Class/Class.cs -------------------------------------------------------------------------------- /src/ZipX/ItemTemplates/Class/Class.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ItemTemplates/Class/Class.vstemplate -------------------------------------------------------------------------------- /src/ZipX/ItemTemplates/Page/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ItemTemplates/Page/Page.cs -------------------------------------------------------------------------------- /src/ZipX/ItemTemplates/Page/Page.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ItemTemplates/Page/Page.vstemplate -------------------------------------------------------------------------------- /src/ZipX/ItemTemplates/Resource/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ItemTemplates/Resource/Resource.resx -------------------------------------------------------------------------------- /src/ZipX/ItemTemplates/TestClass/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ItemTemplates/TestClass/TestClass.cs -------------------------------------------------------------------------------- /src/ZipX/ItemTemplates/jQueryPage/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ItemTemplates/jQueryPage/Page.cs -------------------------------------------------------------------------------- /src/ZipX/ItemTemplates/jQueryPlugin/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ItemTemplates/jQueryPlugin/Plugin.cs -------------------------------------------------------------------------------- /src/ZipX/Packages/Core.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Core.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Core/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Core/Install.ps1 -------------------------------------------------------------------------------- /src/ZipX/Packages/Core/Reset.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Core/Reset.psm1 -------------------------------------------------------------------------------- /src/ZipX/Packages/Core/ScriptSharp.PlaceHolder.txt: -------------------------------------------------------------------------------- 1 | Script# Project PlaceHolder File 2 | -------------------------------------------------------------------------------- /src/ZipX/Packages/Core/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Core/Uninstall.ps1 -------------------------------------------------------------------------------- /src/ZipX/Packages/FxCop.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/FxCop.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/FxCop/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/FxCop/Install.ps1 -------------------------------------------------------------------------------- /src/ZipX/Packages/FxCop/ScriptSharp.PlaceHolder.txt: -------------------------------------------------------------------------------- 1 | Script# Project PlaceHolder File 2 | -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.BingMaps.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.BingMaps.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.HTML.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.HTML.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.Knockout.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.Knockout.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.Node.Azure.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.Node.Azure.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.Node.Express.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.Node.Express.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.Node.Mongo.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.Node.Mongo.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.Node.Neo4j.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.Node.Neo4j.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.Node.Restify.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.Node.Restify.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.Node.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.Node.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.jQuery.History.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.jQuery.History.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.jQuery.Templating.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.jQuery.Templating.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.jQuery.UI.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.jQuery.UI.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.jQuery.Validation.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.jQuery.Validation.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Lib.jQuery.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Lib.jQuery.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Runtime.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Runtime.nuspec -------------------------------------------------------------------------------- /src/ZipX/Packages/Runtime/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Runtime/Install.ps1 -------------------------------------------------------------------------------- /src/ZipX/Packages/Runtime/Reset.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Runtime/Reset.psm1 -------------------------------------------------------------------------------- /src/ZipX/Packages/Runtime/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Runtime/Uninstall.ps1 -------------------------------------------------------------------------------- /src/ZipX/Packages/Testing.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/Packages/Testing.nuspec -------------------------------------------------------------------------------- /src/ZipX/ProjectTemplates/HTMLModule/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ProjectTemplates/HTMLModule/Class1.cs -------------------------------------------------------------------------------- /src/ZipX/ProjectTemplates/NodeModule/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ProjectTemplates/NodeModule/Class1.cs -------------------------------------------------------------------------------- /src/ZipX/ProjectTemplates/UnitTest/QUnit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ProjectTemplates/UnitTest/QUnit.css -------------------------------------------------------------------------------- /src/ZipX/ProjectTemplates/UnitTest/QUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ProjectTemplates/UnitTest/QUnit.js -------------------------------------------------------------------------------- /src/ZipX/ProjectTemplates/UnitTest/QUnitExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ProjectTemplates/UnitTest/QUnitExt.js -------------------------------------------------------------------------------- /src/ZipX/VSIX/Extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/VSIX/Extension.vsixmanifest -------------------------------------------------------------------------------- /src/ZipX/VSIX/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/VSIX/Logo.png -------------------------------------------------------------------------------- /src/ZipX/VSIX/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/VSIX/[Content_Types].xml -------------------------------------------------------------------------------- /src/ZipX/ZipX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/src/ZipX/ZipX.csproj -------------------------------------------------------------------------------- /tests/BasicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/BasicTests.cs -------------------------------------------------------------------------------- /tests/Core/BrowserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Core/BrowserTest.cs -------------------------------------------------------------------------------- /tests/Core/Compilation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Core/Compilation.cs -------------------------------------------------------------------------------- /tests/Core/CompilationInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Core/CompilationInput.cs -------------------------------------------------------------------------------- /tests/Core/CompilationOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Core/CompilationOutput.cs -------------------------------------------------------------------------------- /tests/Core/CompilationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Core/CompilationTest.cs -------------------------------------------------------------------------------- /tests/Core/SimpleCompilation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Core/SimpleCompilation.cs -------------------------------------------------------------------------------- /tests/ExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/ExpressionTests.cs -------------------------------------------------------------------------------- /tests/LibraryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/LibraryTests.cs -------------------------------------------------------------------------------- /tests/MemberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/MemberTests.cs -------------------------------------------------------------------------------- /tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/ScriptTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/ScriptTests.cs -------------------------------------------------------------------------------- /tests/StatementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/StatementTests.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Conditionals/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Conditionals/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Code1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Code1.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Code2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Code2.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Code3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Code3.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Code4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Code4.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Lib.bat -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Lib1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Lib1.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Lib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Lib1.dll -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Lib2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Lib2.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Lib2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Lib2.dll -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Lib3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Lib3.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Dependencies/Lib3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Dependencies/Lib3.dll -------------------------------------------------------------------------------- /tests/TestCases/Basic/DocComments/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/DocComments/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Basic/DocComments/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/DocComments/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Flags/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Flags/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Basic/Flags/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Flags/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Includes/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Includes/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Includes/Post.js: -------------------------------------------------------------------------------- 1 | // post script 2 | -------------------------------------------------------------------------------- /tests/TestCases/Basic/Includes/Pre.js: -------------------------------------------------------------------------------- 1 | // pre script 2 | -------------------------------------------------------------------------------- /tests/TestCases/Basic/Metadata/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Metadata/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Basic/Metadata/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Metadata/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Metadata/Sample.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Metadata/Sample.bat -------------------------------------------------------------------------------- /tests/TestCases/Basic/Metadata/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Metadata/Sample.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Metadata/Sample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Metadata/Sample.dll -------------------------------------------------------------------------------- /tests/TestCases/Basic/Minimization/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Minimization/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Minimization/Lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Minimization/Lib.bat -------------------------------------------------------------------------------- /tests/TestCases/Basic/Minimization/Lib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Minimization/Lib.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Minimization/Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Minimization/Lib.dll -------------------------------------------------------------------------------- /tests/TestCases/Basic/Resources/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Resources/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Basic/Resources/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Resources/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/Resources/Strings1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Resources/Strings1.resx -------------------------------------------------------------------------------- /tests/TestCases/Basic/Resources/Strings2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Resources/Strings2.resx -------------------------------------------------------------------------------- /tests/TestCases/Basic/Simple/AMDBaseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Simple/AMDBaseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Basic/Simple/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/Simple/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Basic/UnitTest/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Basic/UnitTest/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Arguments/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Arguments/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Array/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Array/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Array/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Array/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Base/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Base/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Base/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Base/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Binary/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Binary/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Binary/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Binary/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Cast/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Cast/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Cast/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Cast/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Conditional/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Conditional/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Date/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Date/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Date/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Date/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Delegates/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Delegates/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Dictionary/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Dictionary/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Events/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Events/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Events/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Events/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Generics/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Generics/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/GetType/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/GetType/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/LateBound/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/LateBound/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Literals/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Literals/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Locals/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Locals/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Locals/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Locals/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Members/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Members/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/New/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/New/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/New/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/New/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Number/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Number/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Number/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Number/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Script/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Script/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Script/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Script/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/String/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/String/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/String/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/String/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Tasks/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Tasks/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Tasks/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Tasks/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Truthy/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Truthy/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Truthy/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Truthy/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Tuples/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Tuples/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Tuples/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Tuples/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Expression/Unary/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Unary/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Expression/Unary/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Expression/Unary/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Library/Node/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Library/Node/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Library/Node/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Library/Node/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Library/jQuery/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Library/jQuery/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Library/jQuery/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Library/jQuery/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Member/Constructors/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Constructors/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Member/Events/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Events/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Member/Events/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Events/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Member/Fields/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Fields/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Member/Fields/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Fields/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Member/Indexers/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Indexers/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Member/Indexers/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Indexers/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Member/Methods/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Methods/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Member/Methods/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Methods/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Member/Overloads/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Overloads/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Member/Overloads/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Overloads/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Member/Properties/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Properties/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Member/Properties/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Member/Properties/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Statement/Exceptions/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/Exceptions/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Statement/Expression/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/Expression/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Statement/For/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/For/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Statement/For/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/For/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Statement/Foreach/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/Foreach/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Statement/Foreach/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/Foreach/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Statement/IfElse/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/IfElse/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Statement/IfElse/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/IfElse/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Statement/Return/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/Return/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Statement/Return/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/Return/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Statement/Switch/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/Switch/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Statement/Switch/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/Switch/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Statement/Variables/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/Variables/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Statement/While/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/While/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Statement/While/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Statement/While/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Classes/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Classes/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Classes/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Classes/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Delegates/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Delegates/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Delegates/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Delegates/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Enumerator/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Enumerator/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Enumerator/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Enumerator/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Enums/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Enums/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Enums/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Enums/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Globals/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Globals/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Globals/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Globals/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Imported/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Imported/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Imported/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Imported/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Interfaces/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Interfaces/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Interfaces/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Interfaces/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Modules/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Modules/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Modules/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Modules/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Namespaces/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Namespaces/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Namespaces/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Namespaces/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Nullable/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Nullable/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Nullable/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Nullable/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Partials/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Partials/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Partials/Code1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Partials/Code1.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Partials/Code2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Partials/Code2.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/Records/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Records/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/Records/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/Records/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Type/UsingAlias/Baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/UsingAlias/Baseline.txt -------------------------------------------------------------------------------- /tests/TestCases/Type/UsingAlias/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Type/UsingAlias/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Validation/Exceptions/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Validation/Exceptions/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Validation/Keywords/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Validation/Keywords/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Validation/Modules/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Validation/Modules/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Validation/NestedTypes/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Validation/NestedTypes/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Validation/Overloads/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Validation/Overloads/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Validation/Properties/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Validation/Properties/Code.cs -------------------------------------------------------------------------------- /tests/TestCases/Validation/Records/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestCases/Validation/Records/Code.cs -------------------------------------------------------------------------------- /tests/TestSite/Bases.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Bases.htm -------------------------------------------------------------------------------- /tests/TestSite/Code/OOP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Code/OOP.cs -------------------------------------------------------------------------------- /tests/TestSite/Date.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Date.htm -------------------------------------------------------------------------------- /tests/TestSite/Delegates.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Delegates.htm -------------------------------------------------------------------------------- /tests/TestSite/Dictionary.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Dictionary.htm -------------------------------------------------------------------------------- /tests/TestSite/Enumerator.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Enumerator.htm -------------------------------------------------------------------------------- /tests/TestSite/Globals.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Globals.htm -------------------------------------------------------------------------------- /tests/TestSite/Loader.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Loader.htm -------------------------------------------------------------------------------- /tests/TestSite/LoaderChain.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/LoaderChain.htm -------------------------------------------------------------------------------- /tests/TestSite/LoaderCombined.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/LoaderCombined.htm -------------------------------------------------------------------------------- /tests/TestSite/LoaderConfig.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/LoaderConfig.htm -------------------------------------------------------------------------------- /tests/TestSite/LoaderNonAMD.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/LoaderNonAMD.htm -------------------------------------------------------------------------------- /tests/TestSite/Observable.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Observable.htm -------------------------------------------------------------------------------- /tests/TestSite/QUnit/QUnit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/QUnit/QUnit.css -------------------------------------------------------------------------------- /tests/TestSite/QUnit/QUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/QUnit/QUnit.js -------------------------------------------------------------------------------- /tests/TestSite/QUnit/QUnitExt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/QUnit/QUnitExt.js -------------------------------------------------------------------------------- /tests/TestSite/Queue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Queue.htm -------------------------------------------------------------------------------- /tests/TestSite/Scripts/A.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Scripts/A.js -------------------------------------------------------------------------------- /tests/TestSite/Scripts/AB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Scripts/AB.js -------------------------------------------------------------------------------- /tests/TestSite/Scripts/B.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Scripts/B.js -------------------------------------------------------------------------------- /tests/TestSite/Scripts/C.js: -------------------------------------------------------------------------------- 1 | window.c = { "script": 'c' }; 2 | -------------------------------------------------------------------------------- /tests/TestSite/Stack.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Stack.htm -------------------------------------------------------------------------------- /tests/TestSite/String.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/String.htm -------------------------------------------------------------------------------- /tests/TestSite/StringBuilder.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/StringBuilder.htm -------------------------------------------------------------------------------- /tests/TestSite/Tasks.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/Tasks.htm -------------------------------------------------------------------------------- /tests/TestSite/TypeSystem.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TestSite/TypeSystem.htm -------------------------------------------------------------------------------- /tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Tests.csproj -------------------------------------------------------------------------------- /tests/Tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Tests.sln -------------------------------------------------------------------------------- /tests/Tests.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/Tests.testsettings -------------------------------------------------------------------------------- /tests/TypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/TypeTests.cs -------------------------------------------------------------------------------- /tests/ValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tests/ValidationTests.cs -------------------------------------------------------------------------------- /tools/Preprocessor/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/Application.cs -------------------------------------------------------------------------------- /tools/Preprocessor/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/CommandLine.cs -------------------------------------------------------------------------------- /tools/Preprocessor/FileInputStreamSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/FileInputStreamSource.cs -------------------------------------------------------------------------------- /tools/Preprocessor/FileOutputStreamSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/FileOutputStreamSource.cs -------------------------------------------------------------------------------- /tools/Preprocessor/IErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/IErrorHandler.cs -------------------------------------------------------------------------------- /tools/Preprocessor/IStreamResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/IStreamResolver.cs -------------------------------------------------------------------------------- /tools/Preprocessor/IStreamSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/IStreamSource.cs -------------------------------------------------------------------------------- /tools/Preprocessor/Preprocessor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/Preprocessor.csproj -------------------------------------------------------------------------------- /tools/Preprocessor/Preprocessor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/Preprocessor.sln -------------------------------------------------------------------------------- /tools/Preprocessor/PreprocessorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/PreprocessorOptions.cs -------------------------------------------------------------------------------- /tools/Preprocessor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/Preprocessor/ScriptPreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/Preprocessor/ScriptPreprocessor.cs -------------------------------------------------------------------------------- /tools/ZipBuilder/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/ZipBuilder/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /tools/ZipBuilder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/ZipBuilder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/ZipBuilder/Zip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/ZipBuilder/Zip.cs -------------------------------------------------------------------------------- /tools/ZipBuilder/ZipBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/ZipBuilder/ZipBuilder.csproj -------------------------------------------------------------------------------- /tools/ZipBuilder/ZipBuilder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/ZipBuilder/ZipBuilder.sln -------------------------------------------------------------------------------- /tools/bin/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /tools/bin/ScriptSharp.Internal.ZipBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/ScriptSharp.Internal.ZipBuilder.dll -------------------------------------------------------------------------------- /tools/bin/VsSDK/CreateExpInstance.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/CreateExpInstance.exe -------------------------------------------------------------------------------- /tools/bin/VsSDK/CreateExpInstance.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/CreateExpInstance.exe.config -------------------------------------------------------------------------------- /tools/bin/VsSDK/CreatePkgDef.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/CreatePkgDef.exe -------------------------------------------------------------------------------- /tools/bin/VsSDK/CreatePkgDef.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/CreatePkgDef.exe.config -------------------------------------------------------------------------------- /tools/bin/VsSDK/Microsoft.VsSDK.Common.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/Microsoft.VsSDK.Common.targets -------------------------------------------------------------------------------- /tools/bin/VsSDK/Microsoft.VsSDK.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/Microsoft.VsSDK.targets -------------------------------------------------------------------------------- /tools/bin/VsSDK/ResetExpInstance.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/ResetExpInstance.bat -------------------------------------------------------------------------------- /tools/bin/VsSDK/VSCTCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/VSCTCompress.dll -------------------------------------------------------------------------------- /tools/bin/VsSDK/VSCTLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/VSCTLibrary.dll -------------------------------------------------------------------------------- /tools/bin/VsSDK/VSIXManifestSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/VSIXManifestSchema.xsd -------------------------------------------------------------------------------- /tools/bin/VsSDK/vsct.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/vsct.exe -------------------------------------------------------------------------------- /tools/bin/VsSDK/vsshlids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/VsSDK/vsshlids.h -------------------------------------------------------------------------------- /tools/bin/ajaxmin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/ajaxmin.exe -------------------------------------------------------------------------------- /tools/bin/diff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/diff.exe -------------------------------------------------------------------------------- /tools/bin/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/nuget.exe -------------------------------------------------------------------------------- /tools/bin/sspp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/sspp.exe -------------------------------------------------------------------------------- /tools/bin/windiff.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/bin/windiff.exe -------------------------------------------------------------------------------- /tools/ext/AjaxMin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilk/scriptsharp/HEAD/tools/ext/AjaxMin.dll --------------------------------------------------------------------------------