commit
stringlengths
40
40
subject
stringlengths
4
1.73k
repos
stringlengths
5
127k
old_file
stringlengths
2
751
new_file
stringlengths
2
751
new_contents
stringlengths
1
8.98k
old_contents
stringlengths
0
6.59k
license
stringclasses
13 values
lang
stringclasses
23 values
556bcb160d741c8d76c686cabd999fc688dedfff
Add console write to algo runner
tzaavi/Lean,Neoracle/Lean,Mendelone/forex_trading,andrewhart098/Lean,jameschch/Lean,jameschch/Lean,bizcad/LeanJJN,racksen/Lean,jameschch/Lean,bizcad/LeanAbhi,andrewhart098/Lean,iamkingmaker/Lean,squideyes/Lean,AnObfuscator/Lean,wowgeeker/Lean,iamkingmaker/Lean,dpavlenkov/Lean,mabeale/Lean,QuantConnect/Lean,desimonk/Lea...
Tests/AlgorithmRunner.cs
Tests/AlgorithmRunner.cs
/* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy ...
/* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy ...
apache-2.0
C#
db1220bfb312d48fcc93436e2e0a5dd0b92e1a6c
Add comment.
eriawan/roslyn,xasx/roslyn,tmat/roslyn,tmeschter/roslyn,genlu/roslyn,wvdd007/roslyn,jmarolf/roslyn,physhi/roslyn,wvdd007/roslyn,DustinCampbell/roslyn,jamesqo/roslyn,cston/roslyn,VSadov/roslyn,mgoertz-msft/roslyn,diryboy/roslyn,swaroop-sridhar/roslyn,brettfo/roslyn,agocke/roslyn,AmadeusW/roslyn,physhi/roslyn,jasonmalino...
src/EditorFeatures/Core/Implementation/BraceMatching/AbstractEmbeddedLanguageBraceMatcher.cs
src/EditorFeatures/Core/Implementation/BraceMatching/AbstractEmbeddedLanguageBraceMatcher.cs
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.EmbeddedLanguages.LanguageServices; using Microsoft.CodeAnalysis.Shared.Ex...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.EmbeddedLanguages.LanguageServices; using Microsoft.CodeAnalysis.Shared.Ex...
mit
C#
9e5fa3c8b9d45a0d2433976252c09ebd61995966
Add AuthenticationProvider unit-tests
CogniStreamer/owin-security-cognistreamer
tests/Owin.Security.CogniStreamer.Tests/Provider/CogniStreamerAuthenticationProviderTests.cs
tests/Owin.Security.CogniStreamer.Tests/Provider/CogniStreamerAuthenticationProviderTests.cs
using System; using System.Security.Claims; using System.Threading.Tasks; using Microsoft.Owin; using Microsoft.Owin.Security; using Moq; using Newtonsoft.Json.Linq; using NUnit.Framework; using Owin.Security.CogniStreamer.Provider; namespace Owin.Security.CogniStreamer.Tests.Provider { [TestFixture] public c...
using NUnit.Framework; namespace Owin.Security.CogniStreamer.Tests.Provider { [TestFixture] public class CogniStreamerAuthenticationProviderTests { // TODO } }
apache-2.0
C#
15ff204f462af8ad048d9d6c8286ccbcccb2fa31
Remove todo comment
RubenLaube-Pohto/asp.net-project
Views/ChatView.cshtml
Views/ChatView.cshtml
@model ChatApp.Controllers.ChatMessagesViewModel @addTagHelper "*, Microsoft.AspNetCore.Mvc.TagHelpers" @using ChatApp.Models <!DOCTYPE html> <html> <head> <title>ChatApp</title> </head> <body> <table> @foreach (Message msg in Model.OldMessages) { <tr> <td class="aut...
@model ChatApp.Controllers.ChatMessagesViewModel @addTagHelper "*, Microsoft.AspNetCore.Mvc.TagHelpers" @using ChatApp.Models <!DOCTYPE html> <html> <head> <title>ChatApp</title> </head> <body> <table> @foreach (Message msg in Model.OldMessages) { <tr> <td class="aut...
mit
C#
7daf045076640b65ba82693a3b01c1b911601073
Validate invariant.
srivatsn/roslyn,CyrusNajmabadi/roslyn,ErikSchierboom/roslyn,aelij/roslyn,weltkante/roslyn,xasx/roslyn,KevinH-MS/roslyn,heejaechang/roslyn,DustinCampbell/roslyn,tvand7093/roslyn,eriawan/roslyn,diryboy/roslyn,amcasey/roslyn,lorcanmooney/roslyn,mattscheffer/roslyn,tvand7093/roslyn,heejaechang/roslyn,robinsedlaczek/roslyn,...
src/Features/Core/Portable/FindReferences/DefinitionsAndReferences.cs
src/Features/Core/Portable/FindReferences/DefinitionsAndReferences.cs
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; using Roslyn.Utilities; namespace Microsoft.CodeAnalysis.FindReferences { /// <summary> /// A coll...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; namespace Microsoft.CodeAnalysis.FindReferences { /// <summary> /// A collection of <see cref="DefinitionItem"/>...
mit
C#
c6c22122c515c32609523174b1110cd11fdaa1c7
Address feedback
nunit/nunit,nunit/nunit,mjedrzejek/nunit,mjedrzejek/nunit
src/NUnitFramework/framework/Constraints/Comparers/ComparisonState.cs
src/NUnitFramework/framework/Constraints/Comparers/ComparisonState.cs
using System; using NUnit.Framework.Internal; namespace NUnit.Framework.Constraints.Comparers { internal struct ComparisonState { /// <summary> /// Flag indicating whether or not this is the top level comparison. /// </summary> public bool TopLevelComparison { get; } //...
using System; using NUnit.Framework.Internal; namespace NUnit.Framework.Constraints.Comparers { internal struct ComparisonState { /// <summary> /// Flag indicating whether or not this is the top level comparison. /// </summary> public readonly bool TopLevelComparison; /...
mit
C#
b48fd188d27f6b9d7077164257a0df86373cbfad
Change log level of duplicate event reference id check.
exceptionless/Exceptionless,exceptionless/Exceptionless,exceptionless/Exceptionless,exceptionless/Exceptionless
src/Exceptionless.Core/Plugins/EventProcessor/Default/05_CheckForDuplicateReferenceIdPlugin.cs
src/Exceptionless.Core/Plugins/EventProcessor/Default/05_CheckForDuplicateReferenceIdPlugin.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Exceptionless.Core.Extensions; using Exceptionless.Core.Pipeline; using Foundatio.Caching; using Microsoft.Extensions.Logging; namespace Exceptionless.Core.Plugins.EventProcessor { [Priority(5)] public seale...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Exceptionless.Core.Extensions; using Exceptionless.Core.Pipeline; using Foundatio.Caching; using Microsoft.Extensions.Logging; namespace Exceptionless.Core.Plugins.EventProcessor { [Priority(5)] public seale...
apache-2.0
C#
e8333ab38256b9bf171da011064bc80c8b80ea67
bump versions
hudl/HudlFfmpeg
Hudl.Ffmpeg/Properties/AssemblyInfo.cs
Hudl.Ffmpeg/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Hu...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Hu...
apache-2.0
C#
c3e667b31ec51e849dbe202141e32c4c9e78d32f
update version
jefking/King.Mapper
King.Mapper/Properties/AssemblyInfo.cs
King.Mapper/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("King.Mapper")] [assembly: AssemblyDescription("Simple model mapping")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("King.Mapper")] [assembly: AssemblyCopyright("Copyright © Jef...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("King.Mapper")] [assembly: AssemblyDescription("High performance model mapping.")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("King.Mapper")] [assembly: AssemblyCopyright("Copy...
mit
C#
6683b591144b7f1d36761955b3a626264e652096
Document QR code prefixes.
predictive-technology-laboratory/sensus,predictive-technology-laboratory/sensus,predictive-technology-laboratory/sensus,predictive-technology-laboratory/sensus,predictive-technology-laboratory/sensus,predictive-technology-laboratory/sensus
Sensus.Shared/QrCodePrefix.cs
Sensus.Shared/QrCodePrefix.cs
// Copyright 2014 The Rector & Visitors of the University of Virginia // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless re...
// Copyright 2014 The Rector & Visitors of the University of Virginia // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless re...
apache-2.0
C#
f229c2925263cc2a3ee191767f5536764a21c646
increment patch version,
jwChung/Experimentalism,jwChung/Experimentalism
build/CommonAssemblyInfo.cs
build/CommonAssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
mit
C#
58300d887a2400e644fe91a5fdf4d4939b807876
increment patch version,
jwChung/Experimentalism,jwChung/Experimentalism
build/CommonAssemblyInfo.cs
build/CommonAssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
using System.Reflection; using System.Resources; using System.Runtime.InteropServices; [assembly: AssemblyCompany("Jin-Wook Chung")] [assembly: AssemblyCopyright("Copyright (c) 2014, Jin-Wook Chung")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: Co...
mit
C#
490693c161686018e5de0d19e3d76a71861464a1
refactor scope to public for test method
mattherman/MbDotNet,mattherman/MbDotNet,SuperDrew/MbDotNet
MbDotNet.Acceptance.Tests/AcceptanceTest.cs
MbDotNet.Acceptance.Tests/AcceptanceTest.cs
 using System; using MbDotNet.Acceptance.Tests.AcceptanceTests; namespace MbDotNet.Acceptance.Tests { internal static class AcceptanceTest { public static void CanCreateImposter(MountebankClient client) => new CanCreateImposterTest(client).Run(); public static void CanDeleteImposter(Mountebank...
 using System; using MbDotNet.Acceptance.Tests.AcceptanceTests; namespace MbDotNet.Acceptance.Tests { internal static class AcceptanceTest { internal static void CanCreateImposter(MountebankClient client) => new CanCreateImposterTest(client).Run(); public static void CanDeleteImposter(Mounteba...
mit
C#
81dde7cc3b2dd02aff81a3703839c7776ba6ee3a
Increase the timeout used when checking for valid RPC API endpoints
IWBWbiz/MultiMiner,nwoolls/MultiMiner,nwoolls/MultiMiner,IWBWbiz/MultiMiner
MultiMiner.Xgminer.Discovery/MinerFinder.cs
MultiMiner.Xgminer.Discovery/MinerFinder.cs
using MultiMiner.Utility.Net; using System; using System.Collections.Generic; using System.Net; using MultiMiner.Xgminer.Api; namespace MultiMiner.Xgminer.Discovery { public class MinerFinder { public static List<IPEndPoint> Find(string ipRange, int startingPort, int endingPort) { ...
using MultiMiner.Utility.Net; using System; using System.Collections.Generic; using System.Net; using MultiMiner.Xgminer.Api; namespace MultiMiner.Xgminer.Discovery { public class MinerFinder { public static List<IPEndPoint> Find(string ipRange, int startingPort, int endingPort) { ...
mit
C#
fa60d9582c4c57101b328f4770e0e37b8fa4385e
add class method PostponeNextTime()
NDark/ndinfrastructure,NDark/ndinfrastructure
Unity/Timer/CountDownTimer.cs
Unity/Timer/CountDownTimer.cs
/** MIT License Copyright (c) 2017 NDark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distr...
/** MIT License Copyright (c) 2017 NDark Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distr...
mit
C#
6d432764ad69872c245967843304546b03e7c8ef
Add missing reference
ppy/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,ppy/osu-framework,ZLima12/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,ZLima12/osu-framework,ppy/osu-framework,EVAST9919/osu-framework
osu.Framework.iOS/GameViewController.cs
osu.Framework.iOS/GameViewController.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using CoreGraphics; using UIKit; namespace osu.Framework.iOS { internal class GameViewController : UIViewController { public override bool...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using CoreGraphics; using UIKit; namespace osu.Framework.iOS { internal class GameViewController : UIViewController { public override bool PrefersStatus...
mit
C#
0acc86f75724e6d1e5f348ee7878b7249be6078c
Split line for readability
UselessToucan/osu,peppy/osu,ppy/osu,peppy/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu-new,NeoAdonis/osu,UselessToucan/osu,ppy/osu,UselessToucan/osu,smoogipooo/osu,smoogipoo/osu,ppy/osu
osu.Game/Skinning/LegacyScoreCounter.cs
osu.Game/Skinning/LegacyScoreCounter.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Game.Graphics.Sprites; using osu.Game.Graphics.UserInterface; using osuTK; namespace osu.Game.Skin...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Game.Graphics.Sprites; using osu.Game.Graphics.UserInterface; using osuTK; namespace osu.Game.Skin...
mit
C#
ac4bdc87d8425c678f881673798a05a2c01a94fb
Update the version number.
rockfordlhotka/csla,JasonBock/csla,ronnymgm/csla-light,MarimerLLC/csla,rockfordlhotka/csla,JasonBock/csla,jonnybee/csla,ronnymgm/csla-light,MarimerLLC/csla,BrettJaner/csla,BrettJaner/csla,MarimerLLC/csla,jonnybee/csla,rockfordlhotka/csla,BrettJaner/csla,jonnybee/csla,JasonBock/csla,ronnymgm/csla-light
csla20cs/Csla/Properties/AssemblyInfo.cs
csla20cs/Csla/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("CS...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("CS...
mit
C#
16ad4597ac023fc55fc86a30741c53b837f5356a
Update to use private setters as auto setters are not present pre C# 6.0
dwhelan/atdd_training,dwhelan/atdd_training
cs/WebSpecs/Support/Page.cs
cs/WebSpecs/Support/Page.cs
using System.Collections.Generic; using System.Linq; namespace WebSpecs.Support { public abstract class Page { public string Host { get; private set; } public List<string> HostAliases { get; private set; } public string Path { get; private set; } public bool SSL { get;...
using System.Collections.Generic; using System.Linq; namespace WebSpecs.Support { public abstract class Page { public string Host { get; private set; } public List<string> HostAliases { get; } public string Path { get; } public bool SSL { get; } protected re...
mit
C#
f8054b7cd5b5e9581cf18a217727caa72d4146de
add EventStreamAppendReadTest
IvanZheng/IFramework,IvanZheng/IFramework,IvanZheng/IFramework
Src/IFramework.Test/EventStoreTests.cs
Src/IFramework.Test/EventStoreTests.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using IFramework.Config; using IFramework.DependencyInjection; using IFramework.DependencyInjection.Autofac; using IFramework.Event; using IFramework.EventStore.Client; using IFramework....
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using IFramework.Config; using IFramework.DependencyInjection; using IFramework.DependencyInjection.Autofac; using IFramework.Event; using IFramework.EventStore.Client; using IFramework....
mit
C#
1ef597afd9ea95c2bb6dfd56174b98ff1e3879c4
Configure context.
beta-tank/TicTacToe,beta-tank/TicTacToe,beta-tank/TicTacToe
TicTacToe/Data/ApplicationDbContext.cs
TicTacToe/Data/ApplicationDbContext.cs
using System.Data.Entity; using TicTacToe.Core; namespace TicTacToe.Web.Data { public class ApplicationDbContext : DbContext { public ApplicationDbContext() : base("DefaultConnection") { Database.SetInitializer<ApplicationDbContext>(new DropCreateDatabaseIfModelChanges<ApplicationD...
using System.Data.Entity; namespace TicTacToe.Web.Data { public class ApplicationDbContext : DbContext { } }
mit
C#
c3e4a08b007a00ac848f89d6a10b580bc1997032
Fix using for Release build
qianlifeng/Wox,lances101/Wox,qianlifeng/Wox,Wox-launcher/Wox,lances101/Wox,Wox-launcher/Wox,qianlifeng/Wox
Wox.Infrastructure/Logger/Log.cs
Wox.Infrastructure/Logger/Log.cs
using NLog; using Wox.Infrastructure.Exception; namespace Wox.Infrastructure.Logger { public class Log { private static NLog.Logger logger = LogManager.GetCurrentClassLogger(); public static void Error(System.Exception e) { #if DEBUG throw e; #else while (e.Inn...
using NLog; namespace Wox.Infrastructure.Logger { public class Log { private static NLog.Logger logger = LogManager.GetCurrentClassLogger(); public static void Error(System.Exception e) { #if DEBUG throw e; #else while (e.InnerException != null) { ...
mit
C#
2079ba3f4de4b204ac2f60531f79a8d63ff60159
Bump version to 1.1.1
rosolko/WebDriverManager.Net
WebDriverManager/Properties/AssemblyInfo.cs
WebDriverManager/Properties/AssemblyInfo.cs
using System; using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("WebDriverManager.Net")] [ass...
using System; using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("WebDriverManager.Net")] [ass...
mit
C#
0de2961330df2f953ad52d7630c908cdcdd7b6d7
Change the location of where the Enums are generated to be at the same level as the types.
AlexGhiondea/SmugMug.NET
src/tools/SmugMugCodeGen/Options.cs
src/tools/SmugMugCodeGen/Options.cs
// Copyright (c) Alex Ghiondea. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.IO; namespace SmugMugCodeGen { public class Options { public string OutputDir { get; private set; } public stri...
// Copyright (c) Alex Ghiondea. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.IO; namespace SmugMugCodeGen { public class Options { public string OutputDir { get; private set; } public stri...
mit
C#
51951e5e4f1dcfbce2b7c98786fb22406fd4c3b6
修改 Delete view (加入Rating欄位).
NemoChenTW/MvcMovie,NemoChenTW/MvcMovie,NemoChenTW/MvcMovie
src/MvcMovie/Views/Movies/Delete.cshtml
src/MvcMovie/Views/Movies/Delete.cshtml
@model MvcMovie.Models.Movie @{ ViewData["Title"] = "Delete"; } <h2>Delete</h2> <h3>Are you sure you want to delete this?</h3> <div> <h4>Movie</h4> <hr /> <dl class="dl-horizontal"> <dt> @Html.DisplayNameFor(model => model.Genre) </dt> <dd> @Html.Displa...
@model MvcMovie.Models.Movie @{ ViewData["Title"] = "Delete"; } <h2>Delete</h2> <h3>Are you sure you want to delete this?</h3> <div> <h4>Movie</h4> <hr /> <dl class="dl-horizontal"> <dt> @Html.DisplayNameFor(model => model.Genre) </dt> <dd> @Html.Displa...
apache-2.0
C#
90878c296e003053d424b361421acc02ad7038a2
Update NewOrderResponse.cs
ilkerulutas/BinanceSdk
M3C.Finance.BinanceSdk/ResponseObjects/NewOrderResponse.cs
M3C.Finance.BinanceSdk/ResponseObjects/NewOrderResponse.cs
using Newtonsoft.Json; namespace M3C.Finance.BinanceSdk.ResponseObjects { public class NewOrderResponse { [JsonProperty("symbol")] public string Symbol { get; set; } [JsonProperty("orderId")] public long OrderId { get; set; } [JsonProperty("clientOrderId")] pu...
using Newtonsoft.Json; namespace M3C.Finance.BinanceSdk.ResponseObjects { public class NewOrderResponse { [JsonProperty("symbol")] public string Symbol { get; set; } [JsonProperty("orderId")] public int OrderId { get; set; } [JsonProperty("clientOrderId")] pub...
mit
C#
aec395a0b20bb945c1e59ea23f97546e3f033e4a
Update Specular.cs
matt77hias/cs-smallpt
cs-smallpt/core/Specular.cs
cs-smallpt/core/Specular.cs
using System; namespace cs_smallpt { public static class Specular { public static double Reflectance0(double n1, double n2) { double sqrt_R0 = (n1 - n2) / (n1 + n2); return sqrt_R0 * sqrt_R0; } public static double SchlickReflectance(double n1, double n2, double ...
using System; namespace cs_smallpt { public class Specular { public static double Reflectance0(double n1, double n2) { double sqrt_R0 = (n1 - n2) / (n1 + n2); return sqrt_R0 * sqrt_R0; } public static double SchlickReflectance(double n1, double n2, double c) { ...
mit
C#
2263b65f9d92c0e7e6d4573e95ab7a83156a720c
Update ASP.NET Core sample code to match actual
NickCraver/StackExchange.Exceptional,NickCraver/StackExchange.Exceptional
samples/Samples.AspNetCore/Startup.cs
samples/Samples.AspNetCore/Startup.cs
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; namespace Samples.AspNetCore { public class Startup { public Startup(IConfiguration configuration, IHostingEnvironment env) { ...
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; namespace Samples.AspNetCore { public class Startup { public Startup(IConfiguration configuration, IHostingEnvironment env) { ...
apache-2.0
C#
35affff08eabce3c14acbaa4f7e74c3bac3486fc
add P1_headset
Fangh/LoveLetter
Assets/Scripts/LevelManager.cs
Assets/Scripts/LevelManager.cs
using UnityEngine; using System.Collections; using DG.Tweening; using UnityStandardAssets.ImageEffects; public class LevelManager : MonoBehaviour { public static LevelManager Instance; [HideInInspector] public int currentLevel = 0; public GameObject[] levelsContainer; public Vector3[...
using UnityEngine; using System.Collections; using DG.Tweening; using UnityStandardAssets.ImageEffects; public class LevelManager : MonoBehaviour { public static LevelManager Instance; [HideInInspector] public int currentLevel = 0; public GameObject[] levelsContainer; public Vector3[...
unlicense
C#
2f22973d61f2b25c6e26955faa7b59039ec4e338
fix script according to code standard
NataliaDSmirnova/CGAdvanced2017
Assets/Scripts/RenderObject.cs
Assets/Scripts/RenderObject.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class RenderObject : MonoBehaviour { // input objects public Camera mainCamera; public GameObject renderObject; // private objects private RawImage image; private RenderTexture renderTe...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class RenderObject : MonoBehaviour { // input objects public GameObject renderObject; public Camera mainCamera; // private objects private RenderTexture renderTexture; private RawImage ...
mit
C#
9669e2ab51154d44897c78ed6d6c11b67423f1fd
use nancy
lache/RacingKingLee,lache/RacingKingLee,lache/RacingKingLee,lache/RacingKingLee,lache/RacingKingLee,lache/RacingKingLee,lache/RacingKingLee,lache/RacingKingLee
server/core/api_server/Program.cs
server/core/api_server/Program.cs
namespace api_server { using System; using Nancy.Hosting.Self; class Program { static void Main(string[] args) { var service = new ApiService(ServiceType.NancyFX); service.start(); } } }
namespace api_server { using System; using Nancy.Hosting.Self; class Program { static void Main(string[] args) { var service = new ApiService(ServiceType.AsyncServer); service.start(); } } }
mit
C#
95cad10c973817aba3c033c25a07338883d69682
Add absolute mouse position and selected tile debug values to debug screen.
mitchfizz05/Citysim,pigant/Citysim
Citysim/Views/DebugView.cs
Citysim/Views/DebugView.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using MonoGame.Extended.BitmapFonts; namespace Citysim....
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using MonoGame.Extended.BitmapFonts; namespace Citysim....
mit
C#
862514300b155910d3f8314c39bd59051fa5861f
Update AcceptTermsViewModel
lucasdavid/Gamedalf,lucasdavid/Gamedalf
Gamedalf/ViewModels/TermsViewModels.cs
Gamedalf/ViewModels/TermsViewModels.cs
using Gamedalf.Core.Attributes; using Gamedalf.Core.Models; using System; using System.ComponentModel.DataAnnotations; namespace Gamedalf.ViewModels { public class TermsCreateViewModel { [Required] [StringLength(100, MinimumLength = 1)] public string Title { get; set; } ...
using Gamedalf.Core.Attributes; using System; using System.ComponentModel.DataAnnotations; namespace Gamedalf.ViewModels { public class TermsCreateViewModel { [Required] [StringLength(100, MinimumLength = 1)] public string Title { get; set; } [Required] pu...
mit
C#
49f94ee865c569a113bb6ff5fc744e07ff27e929
add graph output
Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen
Dashen.Tests/Scratchpad.cs
Dashen.Tests/Scratchpad.cs
using System; using System.Diagnostics; using System.Linq; using System.Threading; using Dashen.Components; using Xunit; namespace Dashen.Tests { public class Scratchpad { [Fact] public void When_running_the_dashboard() { if (Debugger.IsAttached == false) { return; } var dashboard = Dashboard...
using System; using System.Diagnostics; using System.Linq; using System.Threading; using Dashen.Components; using Xunit; namespace Dashen.Tests { public class Scratchpad { [Fact] public void When_running_the_dashboard() { if (Debugger.IsAttached == false) { return; } var dashboard = Dashboard...
lgpl-2.1
C#
e3d59616c97e4cb6aa2024ead41442d5c62a717b
Add file version use SemVer (for Squirrel)
CalebChalmers/KAGTools
KAGTools/Properties/AssemblyInfo.cs
KAGTools/Properties/AssemblyInfo.cs
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated ...
mit
C#
6a0fd0c0d7378200681ddaed6886104e76d0c47b
bump version to 2.9.1
piwik/piwik-dotnet-tracker,piwik/piwik-dotnet-tracker,piwik/piwik-dotnet-tracker
Piwik.Tracker/Properties/AssemblyInfo.cs
Piwik.Tracker/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("PiwikTracker")] [assembly: Assembl...
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("PiwikTracker")] [assembly: Assembl...
bsd-3-clause
C#
228950e6ed9e49797f04c4392ba05a21addfa350
Add a few stubbed out methods to the AssemblyLoadContext class (#3606)
krytarowski/corert,gregkalapos/corert,tijoytom/corert,shrah/corert,yizhang82/corert,gregkalapos/corert,gregkalapos/corert,yizhang82/corert,tijoytom/corert,krytarowski/corert,shrah/corert,krytarowski/corert,krytarowski/corert,gregkalapos/corert,shrah/corert,yizhang82/corert,tijoytom/corert,tijoytom/corert,shrah/corert,y...
src/System.Private.CoreLib/src/System/Runtime/Loader/AssemblyLoadContext.cs
src/System.Private.CoreLib/src/System/Runtime/Loader/AssemblyLoadContext.cs
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Reflection; using Internal.Reflection.Augments; // This type is just stubbed out to be harmonious with...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Reflection; using Internal.Reflection.Augments; // This type is just stubbed out to be harmonious with...
mit
C#
308480bfdc39634cc715989abb312edaf8f84c4b
Remove stray integration test call.
AltspaceVR/UnityGLTF,robertlong/UnityGLTFLoader
Assets/GLTF/Scripts/GLTFComponent.cs
Assets/GLTF/Scripts/GLTFComponent.cs
using System; using System.Collections; using UnityEngine; using System.Threading; using UnityEngine.Networking; namespace GLTF { class GLTFComponent : MonoBehaviour { public string Url; public Shader Shader; public bool Multithreaded = true; IEnumerator Start() { ...
using System; using System.Collections; using UnityEngine; using System.Threading; using UnityEngine.Networking; namespace GLTF { class GLTFComponent : MonoBehaviour { public string Url; public Shader Shader; public bool Multithreaded = true; IEnumerator Start() { ...
mit
C#
7577187dfb1abd67bb932385f649c4d3994511df
Update PopupNumber
bunashibu/kikan
Assets/Scripts/Effect/PopupNumber.cs
Assets/Scripts/Effect/PopupNumber.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Bunashibu.Kikan { public class PopupNumber : MonoBehaviour { void Start() { Destroy(gameObject, 1.5f); _subtractColor = new Color(0, 0, 0, 0.01f); MonoUtility.Instance.DelaySec(0.5f, () => { _ShouldFadeOut...
using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Bunashibu.Kikan { public class PopupNumber : MonoBehaviour { void Start() { Destroy(gameObject, 1.0f); _subtractColor = new Color(0, 0, 0, 0.008f); } void Update() { MoveUp(); FadeOut(); ...
mit
C#
3fabf453ddab310197cfc301d7e2350c862bfe36
Fix for missing username and password in http to https hop test
InishTech/Sp.Api
Sp.Web.Acceptance/ItemManagementFacts.cs
Sp.Web.Acceptance/ItemManagementFacts.cs
namespace Sp.Web.Acceptance { using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Net; using Ploeh.AutoFixture; using RestSharp; using Sp.Web.Acceptance.Wrappers; using Xunit; using Xunit.Extensions; public static class ItemManagementFacts { [Theory, WebData] p...
namespace Sp.Web.Acceptance { using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Net; using Ploeh.AutoFixture; using RestSharp; using Sp.Web.Acceptance.Wrappers; using Xunit; using Xunit.Extensions; public static class ItemManagementFacts { [Theory, WebData] p...
bsd-3-clause
C#
28fdb85e273c84a2f316b56a4c1244b4c02fa11b
Remove private setters of UpdateStatus's properties.
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/Models/UpdateStatus.cs
WalletWasabi/Models/UpdateStatus.cs
using System; using System.Collections.Generic; using System.Text; namespace WalletWasabi.Models { public class UpdateStatus : IEquatable<UpdateStatus> { public UpdateStatus(bool backendCompatible, bool clientUpToDate, Version legalDocumentsVersion, ushort currentBackendMajorVersion) { BackendCompatible = bac...
using System; using System.Collections.Generic; using System.Text; namespace WalletWasabi.Models { public class UpdateStatus : IEquatable<UpdateStatus> { public UpdateStatus(bool backendCompatible, bool clientUpToDate, Version legalDocumentsVersion, ushort currentBackendMajorVersion) { BackendCompatible = bac...
mit
C#
19d9288adc76936af0e641c321f3b091140e7235
Fix srv msg
gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer
Common/Message/Server/AdminSrvMsg.cs
Common/Message/Server/AdminSrvMsg.cs
using Lidgren.Network; using LunaCommon.Enums; using LunaCommon.Message.Data.Admin; using LunaCommon.Message.Server.Base; using LunaCommon.Message.Types; using System; using System.Collections.Generic; namespace LunaCommon.Message.Server { public class AdminSrvMsg : SrvMsgBase<AdminBaseMsgData> { /// ...
using Lidgren.Network; using LunaCommon.Enums; using LunaCommon.Message.Data.Admin; using LunaCommon.Message.Data.Chat; using LunaCommon.Message.Server.Base; using LunaCommon.Message.Types; using System; using System.Collections.Generic; namespace LunaCommon.Message.Server { public class AdminSrvMsg : SrvMsgBase<...
mit
C#
0bda6e8b723112d1e153c1f77a1e86a3646595df
test github hook to jenkins
MassDebaters/DebateApp,MassDebaters/DebateApp,MassDebaters/DebateApp
DebateApp/DebateApp.Domain/Casual.cs
DebateApp/DebateApp.Domain/Casual.cs
using System; using System.Collections.Generic; using System.Text; namespace DebateApp.Domain { public class Casual : Debate { public Casual(int CreatedBy) { //set the default debate state //test commit } } }
using System; using System.Collections.Generic; using System.Text; namespace DebateApp.Domain { public class Casual : Debate { public Casual(int CreatedBy) { //set the default debate state } } }
mit
C#
d8f767eab537a257ac0559b82109acb06fb11485
Fix New-AzureRoleTemplate to use complete path
markcowl/azure-sdk-tools,akromm/azure-sdk-tools,DinoV/azure-sdk-tools,akromm/azure-sdk-tools,akromm/azure-sdk-tools,Madhukarc/azure-sdk-tools,johnkors/azure-sdk-tools,antonba/azure-sdk-tools,markcowl/azure-sdk-tools,Madhukarc/azure-sdk-tools,johnkors/azure-sdk-tools,Madhukarc/azure-sdk-tools,DinoV/azure-sdk-tools,anton...
WindowsAzurePowershell/src/Management.CloudService/Cmdlet/NewAzureRoleTemplate.cs
WindowsAzurePowershell/src/Management.CloudService/Cmdlet/NewAzureRoleTemplate.cs
// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apa...
// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apa...
apache-2.0
C#
9457d1bd778ab8fb4eed16d39ab7709694f130bb
Remove mde.js (#8046)
stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2
src/OrchardCore.Modules/OrchardCore.Markdown/Views/MarkdownBodyPart-Wysiwyg.Edit.cshtml
src/OrchardCore.Modules/OrchardCore.Markdown/Views/MarkdownBodyPart-Wysiwyg.Edit.cshtml
@model MarkdownBodyPartViewModel @using OrchardCore.ContentLocalization @using OrchardCore.ContentManagement.Metadata.Models @using OrchardCore.Markdown.ViewModels @using OrchardCore.Markdown.Settings @{ var settings = Model.TypePartDefinition.GetSettings<MarkdownBodyPartSettings>(); var culture = await Orchar...
@model MarkdownBodyPartViewModel @using OrchardCore.ContentLocalization @using OrchardCore.ContentManagement.Metadata.Models @using OrchardCore.Markdown.ViewModels @using OrchardCore.Markdown.Settings @{ var settings = Model.TypePartDefinition.GetSettings<MarkdownBodyPartSettings>(); var culture = await Orchar...
bsd-3-clause
C#
8bb9dd4657a98543c531944513badf8c95e9ff35
Update "Insert Include Field" example
asposewords/Aspose_Words_NET,aspose-words/Aspose.Words-for-.NET,aspose-words/Aspose.Words-for-.NET,asposewords/Aspose_Words_NET,aspose-words/Aspose.Words-for-.NET,aspose-words/Aspose.Words-for-.NET,asposewords/Aspose_Words_NET,asposewords/Aspose_Words_NET
Examples/CSharp/Programming-Documents/Fields/InsertIncludeFieldWithoutDocumentBuilder.cs
Examples/CSharp/Programming-Documents/Fields/InsertIncludeFieldWithoutDocumentBuilder.cs
using Aspose.Words.Fields; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Aspose.Words.Examples.CSharp.Programming_Documents.Working_with_Fields { class InsertIncludeFieldWithoutDocumentBuilder { public static void Run() ...
using Aspose.Words.Fields; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Aspose.Words.Examples.CSharp.Programming_Documents.Working_with_Fields { class InsertIncludeFieldWithoutDocumentBuilder { public static void Run() ...
mit
C#
93adb5269530a8e06869dd63f710a61bf7214a36
Implement GoogleTaskMapper, map subject, body, due date, completed and status property
aluxnimm/outlookcaldavsynchronizer
CalDavSynchronizer/Implementation/GoogleTasks/GoogleTaskMapper.cs
CalDavSynchronizer/Implementation/GoogleTasks/GoogleTaskMapper.cs
// This file is Part of CalDavSynchronizer (http://outlookcaldavsynchronizer.sourceforge.net/) // Copyright (c) 2015 Gerhard Zehetbauer // Copyright (c) 2015 Alexander Nimmervoll // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License a...
// This file is Part of CalDavSynchronizer (http://outlookcaldavsynchronizer.sourceforge.net/) // Copyright (c) 2015 Gerhard Zehetbauer // Copyright (c) 2015 Alexander Nimmervoll // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License a...
agpl-3.0
C#
be72bd466889f95b6d48a62cd98a666f4461062e
修复文本编辑区控件不能生成内容的错误。
Zongsoft/Zongsoft.Web
src/Controls/Editor.cs
src/Controls/Editor.cs
/* * Authors: * 钟峰(Popeye Zhong) <zongsoft@gmail.com> * * Copyright (C) 2011-2015 Zongsoft Corporation <http://www.zongsoft.com> * * This file is part of Zongsoft.Web. * * Zongsoft.Web is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as...
/* * Authors: * 钟峰(Popeye Zhong) <zongsoft@gmail.com> * * Copyright (C) 2011-2015 Zongsoft Corporation <http://www.zongsoft.com> * * This file is part of Zongsoft.Web. * * Zongsoft.Web is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as...
lgpl-2.1
C#
872a3596355b5a43219121112800e63771d3aabe
add of pm fix desc
Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal
Master/Appleseed/Projects/PortableAreas/PageManagerTree/Properties/AssemblyInfo.cs
Master/Appleseed/Projects/PortableAreas/PageManagerTree/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Pa...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Pa...
apache-2.0
C#
257307bef70feabeac9d3019566c5080869e89a2
Fix safety bubble
gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer
Client/Harmony/Vessel_Load.cs
Client/Harmony/Vessel_Load.cs
using Harmony; using LunaClient.Systems.SafetyBubble; // ReSharper disable All namespace LunaClient.Harmony { /// <summary> /// This harmony patch is intended to avoid loading a vessel if it's in safety bubble /// </summary> [HarmonyPatch(typeof(Vessel))] [HarmonyPatch("Load")] public class Ve...
using Harmony; using LunaClient.Systems.SafetyBubble; // ReSharper disable All namespace LunaClient.Harmony { /// <summary> /// This harmony patch is intended to avoid loading a vessel if it's in safety bubble /// </summary> [HarmonyPatch(typeof(Vessel))] [HarmonyPatch("Load")] public class Ve...
mit
C#
42782299604bd6aa4ad57fef56700434d46685e1
Add the track number to the song
flagbug/Espera.Network
Espera.Network/NetworkSong.cs
Espera.Network/NetworkSong.cs
using System; namespace Espera.Network { public class NetworkSong { public string Album { get; set; } public string Artist { get; set; } public TimeSpan Duration { get; set; } public string Genre { get; set; } public Guid Guid { get; set; } public NetworkSo...
using System; namespace Espera.Network { public class NetworkSong { public string Album { get; set; } public string Artist { get; set; } public TimeSpan Duration { get; set; } public string Genre { get; set; } public Guid Guid { get; set; } public NetworkSo...
mit
C#
30d88a1628d6375e5eb7389a972617270de2a033
Remove PaginatorModule.FromFunc
DotNetKit/DotNetKit.Wpf.Printing
DotNetKit.Wpf.Printing/Windows/Documents/Paginators/IPaginator.cs
DotNetKit.Wpf.Printing/Windows/Documents/Paginators/IPaginator.cs
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace DotNetKit.Windows.Documents { /// <summary> /// Provides <see cref="Paginate(Size)"/>. /// </summary> public interface IPaginato...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace DotNetKit.Windows.Documents { /// <summary> /// Provides <see cref="Paginate(Size)"/>. /// </summary> public interface IPaginato...
mit
C#
c93b3b2cc436e5c5779bc17e3b069459f6278beb
Fix incorrect field name retrieval
klightspeed/EDDiscovery,EDDiscovery/EDDiscovery,klightspeed/EDDiscovery,klightspeed/EDDiscovery,EDDiscovery/EDDiscovery,EDDiscovery/EDDiscovery,andreaspada/EDDiscovery,andreaspada/EDDiscovery
EDDiscovery/EliteDangerous/JournalEvents/JournalEndCrewSession.cs
EDDiscovery/EliteDangerous/JournalEvents/JournalEndCrewSession.cs
/* * Copyright © 2017 EDDiscovery development team * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this * file except in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law ...
/* * Copyright © 2017 EDDiscovery development team * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this * file except in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law ...
apache-2.0
C#
056a6b452e8669f9b788d2ce7cd8de95745beb3f
Add filter property to most played shows request.
henrikfroehling/TraktApiSharp
Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Shows/Common/TraktShowsMostPlayedRequest.cs
Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Shows/Common/TraktShowsMostPlayedRequest.cs
namespace TraktApiSharp.Requests.WithoutOAuth.Shows.Common { using Base; using Base.Get; using Enums; using Objects.Basic; using Objects.Get.Shows.Common; using System.Collections.Generic; internal class TraktShowsMostPlayedRequest : TraktGetRequest<TraktPaginationListResult<TraktMostPlaye...
namespace TraktApiSharp.Requests.WithoutOAuth.Shows.Common { using Base.Get; using Enums; using Objects.Basic; using Objects.Get.Shows.Common; using System.Collections.Generic; internal class TraktShowsMostPlayedRequest : TraktGetRequest<TraktPaginationListResult<TraktMostPlayedShow>, TraktMos...
mit
C#
1ffaa7b4579c44a74456d0de69555fe6e6cdd9a3
Use FormattedLogValues as the event state
serilog/serilog-extensions-logging,serilog/serilog-framework-logging,serilog/serilog-extensions-logging
src/Serilog.Extensions.Logging/Extensions/Logging/LoggerProviderCollectionSink.cs
src/Serilog.Extensions.Logging/Extensions/Logging/LoggerProviderCollectionSink.cs
// Copyright 2019 Serilog Contributors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agr...
// Copyright 2019 Serilog Contributors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agr...
apache-2.0
C#
b3f6e2193f91789de54f4c11b8008e0039c83338
remove unused FailWithException
acple/ParsecSharp
ParsecSharp/Parser/Parser/Implementations/PrimitiveParser.Fail.cs
ParsecSharp/Parser/Parser/Implementations/PrimitiveParser.Fail.cs
using System; namespace ParsecSharp.Internal.Parsers { internal sealed class ParseError<TToken, T> : PrimitiveParser<TToken, T> { protected sealed override Result<TToken, T> Run<TState>(TState state) => Result.Failure<TToken, TState, T>(state); } internal sealed class FailWithMessa...
using System; namespace ParsecSharp.Internal.Parsers { internal sealed class ParseError<TToken, T> : PrimitiveParser<TToken, T> { protected sealed override Result<TToken, T> Run<TState>(TState state) => Result.Failure<TToken, TState, T>(state); } internal sealed class FailWithMessa...
mit
C#
1d709abc10bbd7b1f9307a331921541d673a14a6
add Identification Code to viewModel
KristianMariyanov/VotingSystem,KristianMariyanov/VotingSystem,KristianMariyanov/VotingSystem
VotingSystem.Web/ViewModels/Votes/VoteWithCandidatesInputModel.cs
VotingSystem.Web/ViewModels/Votes/VoteWithCandidatesInputModel.cs
namespace VotingSystem.Web.ViewModels.Votes { using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using VotingSystem.Models; using VotingSystem.Web.Infrastructure.Mapping; using VotingSystem.Web.ViewModels.Candidates; public class VoteWithCandidatesInputMod...
namespace VotingSystem.Web.ViewModels.Votes { using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using VotingSystem.Models; using VotingSystem.Web.Infrastructure.Mapping; using VotingSystem.Web.ViewModels.Candidates; public class VoteWithCandidatesInputMod...
mit
C#
ed95391687a5d23e115d72c1ef96d1ec5097f7d7
increment cache version
JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity
resharper/resharper-unity/src/CacheVersion.cs
resharper/resharper-unity/src/CacheVersion.cs
using JetBrains.Annotations; using JetBrains.Application.PersistentMap; using JetBrains.Serialization; namespace JetBrains.ReSharper.Plugins.Unity { // Cache version [PolymorphicMarshaller(17)] public class CacheVersion { [UsedImplicitly] public static UnsafeReader.ReadDelegate<object> ReadDele...
using JetBrains.Annotations; using JetBrains.Application.PersistentMap; using JetBrains.Serialization; namespace JetBrains.ReSharper.Plugins.Unity { // Cache version [PolymorphicMarshaller(16)] public class CacheVersion { [UsedImplicitly] public static UnsafeReader.ReadDelegate<object> ReadDele...
apache-2.0
C#
05c98a8e14ad1eca8a8d14167f079571e10aa1e6
resolve arguments against current directory
maxtoroq/sandcastle-md
src/sandcastle-md/Program.cs
src/sandcastle-md/Program.cs
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using Saxon.Api; namespace sandcastle_md { class Program { static void Main(string[] args) { var proc = new Processor(); proc.RegisterExtensionFunction(new MakeRelativeUriExtensionFu...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using Saxon.Api; namespace sandcastle_md { class Program { static void Main(string[] args) { var proc = new Processor(); proc.RegisterExtensionFunction(new MakeRelativeUriExtensionFu...
apache-2.0
C#
af2ac438b672435af3630e27e8b8c8e7d4d25b93
remove database out of constants since it should be private and not a constant
Appleseed/base,Appleseed/base
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/Constants.cs
Applications/Appleseed.Base.Alerts.Console/Appleseed.Base.Alerts/Model/Constants.cs
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Appleseed.Base.Alerts.Model { class Constants { #region App Config Values // Test Settings ...
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Appleseed.Base.Alerts.Model { class Constants { #region App Config Values // Test Settings ...
apache-2.0
C#
ef3ca907c7d3cc81dc8e221e4c8c13fd4414de97
Remove editor completely when adding a fieldset to the layout editor.
angelapper/Orchard,Anton-Am/Orchard,cooclsee/Orchard,SzymonSel/Orchard,m2cms/Orchard,qt1/Orchard,stormleoxia/Orchard,DonnotRain/Orchard,sebastienros/msc,andyshao/Orchard,planetClaire/Orchard-LETS,m2cms/Orchard,phillipsj/Orchard,hbulzy/Orchard,hhland/Orchard,yonglehou/Orchard,Codinlab/Orchard,cooclsee/Orchard,neTp9c/Orc...
src/Orchard.Web/Modules/Orchard.DynamicForms/Elements/Fieldset.cs
src/Orchard.Web/Modules/Orchard.DynamicForms/Elements/Fieldset.cs
using Orchard.Layouts.Helpers; using Orchard.Layouts.Elements; namespace Orchard.DynamicForms.Elements { public class Fieldset : Container { public override string Category { get { return "Forms"; } } public override bool HasEditor { get { return false; } }...
using Orchard.Layouts.Helpers; using Orchard.Layouts.Elements; namespace Orchard.DynamicForms.Elements { public class Fieldset : Container { public override string Category { get { return "Forms"; } } public string Legend { get { return this.Retrieve(f => f.Legend)...
bsd-3-clause
C#
7d51d0deffc7ebc150ec608cb0c1dcae12d7e1af
Add logging to Program.cs
Kingloo/Pingy
src/Program.cs
src/Program.cs
using System; using System.Globalization; using Pingy.Common; using Pingy.Gui; namespace Pingy { public static class Program { [STAThread] public static int Main() { App app = new App(); int exitCode = app.Run(); if (exitCode != 0) { ...
using System; using Pingy.Gui; namespace Pingy { public static class Program { [STAThread] public static int Main() { App app = new App(); int exitCode = app.Run(); if (exitCode != 0) { // log } r...
unlicense
C#
1dc81232db728b58c3eb9479afeb4569062e58e6
Add comment
sonvister/Binance
src/Binance/Extensions/TimestampExtensions.cs
src/Binance/Extensions/TimestampExtensions.cs
using System; // ReSharper disable once CheckNamespace namespace Binance { public static class TimestampExtensions { /// <summary> /// Convert a timestamp to UTC <see cref="DateTime"/>. /// </summary> /// <param name="timestamp"></param> /// <returns></returns> ...
using System; namespace Binance { public static class TimestampExtensions { /// <summary> /// Convert a timestamp to UTC <see cref="DateTime"/>. /// </summary> /// <param name="timestamp"></param> /// <returns></returns> public static DateTime ToDateTime(this lo...
mit
C#
c712760841ea71574cfb8ea3bbf6462b51e55a52
Convert scrap errors to warnings
PowerShell/PSScriptAnalyzer
PSCompatibilityAnalyzer/Microsoft.PowerShell.CrossCompatibility/Commands/CommandUtilities.cs
PSCompatibilityAnalyzer/Microsoft.PowerShell.CrossCompatibility/Commands/CommandUtilities.cs
using System; using System.IO; using System.Management.Automation; namespace Microsoft.PowerShell.CrossCompatibility.Commands { internal static class CommandUtilities { private const string COMPATIBILITY_ERROR_ID = "CompatibilityAnalysisError"; public const string MODULE_PREFIX = "PSCompatibil...
using System; using System.IO; using System.Management.Automation; namespace Microsoft.PowerShell.CrossCompatibility.Commands { internal static class CommandUtilities { private const string COMPATIBILITY_ERROR_ID = "CompatibilityAnalysisError"; public const string MODULE_PREFIX = "PSCompatibil...
mit
C#
72086345cbae639e98ab8d8a976f90228100b439
fix #1626 parsed datetimes on datehistogram should be datetimekind.utc
adam-mccoy/elasticsearch-net,adam-mccoy/elasticsearch-net,TheFireCookie/elasticsearch-net,azubanov/elasticsearch-net,TheFireCookie/elasticsearch-net,UdiBen/elasticsearch-net,elastic/elasticsearch-net,TheFireCookie/elasticsearch-net,RossLieberman/NEST,RossLieberman/NEST,RossLieberman/NEST,adam-mccoy/elasticsearch-net,Ud...
src/Nest/Aggregations/Bucket/DateHistogram/DateHistogramBucket.cs
src/Nest/Aggregations/Bucket/DateHistogram/DateHistogramBucket.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Nest { public class DateHistogramBucket : HistogramBucket { // Get a DateTime form of the returned key public DateTime Date => DateTime.SpecifyKind(new DateTime(1970, 1, 1).AddMillisecon...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Nest { public class DateHistogramBucket : HistogramBucket { // Get a DateTime form of the returned key public DateTime Date => new DateTime(1970, 1, 1).AddMilliseconds(0 + this.Key); } ...
apache-2.0
C#
5f2ea51b36e53e264fb2368cdfe7f53491b2f29d
Remove TabTypeUtilities class.
GetTabster/Tabster
Tabster.Core/Types/TabType.cs
Tabster.Core/Types/TabType.cs
namespace Tabster.Core.Types { public enum TabType { Guitar, Chords, Bass, Drum, Ukulele } public static class TabTypeExtensions { public static string ToFriendlyString(this TabType type) { switch (type) ...
#region using System; #endregion namespace Tabster.Core.Types { public enum TabType { Guitar, Chords, Bass, Drum, Ukulele } public static class TabTypeUtilities { internal static readonly string[] _typeStrings = new[] {"Guitar T...
apache-2.0
C#
71c0f2fc5ed57a01a34e1ace43afc5438e200f42
switch edge transition to Cubic In for exit
OliveTreeBible/Xamarin.Transitions
Transitions/EdgeTransition.cs
Transitions/EdgeTransition.cs
using System; using OliveTree.Transitions.Curves; using Xamarin.Forms; namespace OliveTree.Transitions { public class EdgeTransition : LayoutTransition { private static readonly AnimationCurve Enter = new Spring { Friction = 5 }; private static readonly AnimationCurve Exit = new EasingCurve { E...
using System; using OliveTree.Transitions.Curves; using Xamarin.Forms; namespace OliveTree.Transitions { public class EdgeTransition : LayoutTransition { private static readonly AnimationCurve Enter = new Spring { Friction = 5 }; private static readonly AnimationCurve Exit = new BackCurve { Amp...
mit
C#
ad04dd175089b050afd34b89ac9be7bd1557d5f9
Work around CoreCLR issue
aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore
samples/angular/MusicStore/Apis/Models/Album.cs
samples/angular/MusicStore/Apis/Models/Album.cs
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace MusicStore.Models { public class Album { public Album() { // TODO: Temporary hack to populate the orderdetails until EF does this automatically. OrderDetails = new List<OrderDetail...
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace MusicStore.Models { public class Album { public Album() { // TODO: Temporary hack to populate the orderdetails until EF does this automatically. OrderDetails = new List<OrderDetail...
apache-2.0
C#
3bac6ad93820e9710c0cebb8678b3ddc4e81ff1a
Check associated object parameter for null. Throw ArgumentNullException if it is null
PedroLamas/XamlBehaviors,PedroLamas/XamlBehaviors,Microsoft/XamlBehaviors,PedroLamas/XamlBehaviors,Microsoft/XamlBehaviors,Microsoft/XamlBehaviors
src/BehaviorsSDKManaged/Microsoft.Xaml.Interactivity/Behavior.cs
src/BehaviorsSDKManaged/Microsoft.Xaml.Interactivity/Behavior.cs
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using Windows.UI.Xaml; namespace Microsoft.Xaml.Interactivity { /// <summary> /// A base class for behaviors, implementing the basic plumbing of...
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using Windows.UI.Xaml; namespace Microsoft.Xaml.Interactivity { /// <summary> /// A base class for behaviors, implementing the basic plumbing of IBehavior ...
mit
C#
119af7877f5a026dbd9d333be267dd0dbbeb94ba
Update ConvertWorksheetToImageByPage.cs
aspose-cells/Aspose.Cells-for-.NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,aspose-cells/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,asposecells/Aspose_Cells_NET,maria-shahid-aspose/Aspose.Cells-for-.NET,aspose-cells/Aspose.Cells-for-.NET,ma...
Examples/CSharp/Articles/ConvertingWorksheetToImage/ConvertWorksheetToImageByPage.cs
Examples/CSharp/Articles/ConvertingWorksheetToImage/ConvertWorksheetToImageByPage.cs
using System.IO; using Aspose.Cells; using Aspose.Cells.Rendering; namespace Aspose.Cells.Examples.Articles.ConvertingWorksheetToImage { public class ConvertWorksheetToImageByPage { public static void Main(string[] args) { //ExStart:1 // The path to the documents direct...
using System.IO; using Aspose.Cells; using Aspose.Cells.Rendering; namespace Aspose.Cells.Examples.Articles.ConvertingWorksheetToImage { public class ConvertWorksheetToImageByPage { public static void Main(string[] args) { // The path to the documents directory. string ...
mit
C#
13c7355163c6b15cc67229d41d123f8fbccfbd91
Add Binary TypeMap with maxSize for PostgreSQL.
itn3000/fluentmigrator,wolfascu/fluentmigrator,barser/fluentmigrator,mstancombe/fluentmig,vgrigoriu/fluentmigrator,modulexcite/fluentmigrator,vgrigoriu/fluentmigrator,MetSystem/fluentmigrator,drmohundro/fluentmigrator,wolfascu/fluentmigrator,DefiSolutions/fluentmigrator,amroel/fluentmigrator,fluentmigrator/fluentmigrat...
src/FluentMigrator.Runner/Generators/Postgres/PostgresTypeMap.cs
src/FluentMigrator.Runner/Generators/Postgres/PostgresTypeMap.cs
using System.Data; using FluentMigrator.Runner.Generators.Base; namespace FluentMigrator.Runner.Generators.Postgres { internal class PostgresTypeMap : TypeMapBase { private const int DecimalCapacity = 1000; private const int PostgresMaxVarcharSize = 10485760; protected override void S...
using System.Data; using FluentMigrator.Runner.Generators.Base; namespace FluentMigrator.Runner.Generators.Postgres { internal class PostgresTypeMap : TypeMapBase { private const int DecimalCapacity = 1000; private const int PostgresMaxVarcharSize = 10485760; protected override void S...
apache-2.0
C#
7f7468800095b2febd969e3d599538964dd92456
Add bindings
Branimir123/ZobShop,Branimir123/ZobShop,Branimir123/ZobShop
src/ZobShop.Web/App_Start/NinjectModules/DefaultNinjectModule.cs
src/ZobShop.Web/App_Start/NinjectModules/DefaultNinjectModule.cs
using System.IO; using System.Reflection; using System.Web; using Ninject; using Ninject.Activation; using Ninject.Extensions.Conventions; using Ninject.Extensions.Factory; using Ninject.Modules; using ZobShop.Authentication; using ZobShop.ModelViewPresenter.ShoppingCart.Add; using ZobShop.ModelViewPresenter.ShoppingC...
using System.IO; using System.Reflection; using System.Web; using Ninject; using Ninject.Activation; using Ninject.Extensions.Conventions; using Ninject.Extensions.Factory; using Ninject.Modules; using ZobShop.ModelViewPresenter.ShoppingCart.Add; using ZobShop.ModelViewPresenter.ShoppingCart.Summary; using ZobShop.Ord...
mit
C#
1dc9143f968ef601094f59cfc9924f342ba3b563
Add missing namespace.
aspnetboilerplate/module-zero-core-template,aspnetboilerplate/module-zero-core-template,aspnetboilerplate/module-zero-core-template,aspnetboilerplate/module-zero-core-template,aspnetboilerplate/module-zero-core-template
aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Controllers/AboutController.cs
aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Controllers/AboutController.cs
using Abp.AspNetCore.Mvc.Authorization; using AbpCompanyName.AbpProjectName.Controllers; using Microsoft.AspNetCore.Mvc; namespace AbpCompanyName.AbpProjectName.Web.Controllers { [AbpMvcAuthorize] public class AboutController : AbpProjectNameControllerBase { public ActionResult Index() { ...
using AbpCompanyName.AbpProjectName.Controllers; using Microsoft.AspNetCore.Mvc; namespace AbpCompanyName.AbpProjectName.Web.Controllers { [AbpMvcAuthorize] public class AboutController : AbpProjectNameControllerBase { public ActionResult Index() { return View(); } } }
mit
C#
d4ca010043554051944be353e367b2b165504161
Update to Version 0.1.7
akordowski/Cake.Compression,akordowski/Cake.Compression
src/Cake.Compression/Properties/AssemblyInfo.cs
src/Cake.Compression/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Allgemeine Informationen über eine Assembly werden über die folgenden // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, // die einer Assembly zugeordnet sind. [assembly: Asse...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Allgemeine Informationen über eine Assembly werden über die folgenden // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, // die einer Assembly zugeordnet sind. [assembly: Asse...
mit
C#
92022f2cba0240a6fe25bc5607eeb2ff9e5e9225
add Separator component in OsuMarkdownSeparator
ppy/osu,UselessToucan/osu,peppy/osu,ppy/osu,UselessToucan/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,smoogipoo/osu,smoogipooo/osu,NeoAdonis/osu,peppy/osu-new,ppy/osu,UselessToucan/osu,NeoAdonis/osu,peppy/osu,smoogipoo/osu
osu.Game/Graphics/Containers/Markdown/OsuMarkdownSeparator.cs
osu.Game/Graphics/Containers/Markdown/OsuMarkdownSeparator.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers.Markdown; using osu.Framework.Graphics.Shapes; using osu.Game.Overla...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Allocation; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers.Markdown; using osu.Game.Overlays; namespace osu.Game.Graphics.Cont...
mit
C#
3741b39e099df472236fc6f6f4185a2dc83f67ed
Use extension syntax
khellang/nancy-bootstrapper-prototype
src/Nancy.AspNet/ServiceCollectionExtensions.cs
src/Nancy.AspNet/ServiceCollectionExtensions.cs
namespace Nancy.AspNet { using System; using Microsoft.Extensions.DependencyInjection; using Nancy.Bootstrappers.AspNet; using Nancy.Core; using Nancy.Core.Configuration; public static class ServiceCollectionExtensions { public static IServiceCollection AddNancy(this IServiceCollect...
namespace Nancy.AspNet { using System; using Microsoft.Extensions.DependencyInjection; using Nancy.Bootstrappers.AspNet; using Nancy.Core; using Nancy.Core.Configuration; public static class ServiceCollectionExtensions { public static IServiceCollection AddNancy(this IServiceCollect...
apache-2.0
C#
a6cdd160deb8e0cf57a210905f7f017e934d3714
Fix the subscription drop script
NServiceBusSqlPersistence/NServiceBus.SqlPersistence
src/ScriptBuilder/Writers/SubscriptionWriter.cs
src/ScriptBuilder/Writers/SubscriptionWriter.cs
using System.IO; using NServiceBus.Persistence.Sql.ScriptBuilder; class SubscriptionWriter { public static void WriteSubscriptionScript(string scriptPath, BuildSqlDialect sqlDialect) { var createPath = Path.Combine(scriptPath, "Subscription_Create.sql"); File.Delete(createPath); using ...
using System.IO; using NServiceBus.Persistence.Sql.ScriptBuilder; class SubscriptionWriter { public static void WriteSubscriptionScript(string scriptPath, BuildSqlDialect sqlDialect) { var createPath = Path.Combine(scriptPath, "Subscription_Create.sql"); File.Delete(createPath); using ...
mit
C#
1cad2bdc29d94af2190f83393d9466b4b1598cc4
Make addin version assembly to 0.1.
jzeferino/jzeferino.XSAddin,jzeferino/jzeferino.XSAddin
src/jzeferino.XSAddin/Properties/AddinInfo.cs
src/jzeferino.XSAddin/Properties/AddinInfo.cs
using Mono.Addins; using Mono.Addins.Description; [assembly: Addin( Id = "jzeferino.XSAddin", Namespace = "jzeferino.XSAddin", Version = "0.1" )] [assembly: AddinName("jzeferino.XSAddin")] [assembly: AddinCategory("IDE extensions")] [assembly: AddinDescription("This add-in let you create a Xamarin Cross ...
using Mono.Addins; using Mono.Addins.Description; [assembly: Addin( Id = "jzeferino.XSAddin", Namespace = "jzeferino.XSAddin", Version = "0.0.1" )] [assembly: AddinName("jzeferino.XSAddin")] [assembly: AddinCategory("IDE extensions")] [assembly: AddinDescription("This add-in let you create a Xamarin Cros...
mit
C#
1f3fbf148f7b26b7a6a416e38e833d6f03f02aab
Fix MemberwiseClone calls being generated for .GetEnumerator() on dictionary keys/values collections.
sq/JSIL,volkd/JSIL,sq/JSIL,volkd/JSIL,hach-que/JSIL,sander-git/JSIL,volkd/JSIL,mispy/JSIL,acourtney2015/JSIL,mispy/JSIL,x335/JSIL,x335/JSIL,volkd/JSIL,iskiselev/JSIL,acourtney2015/JSIL,x335/JSIL,antiufo/JSIL,antiufo/JSIL,acourtney2015/JSIL,acourtney2015/JSIL,volkd/JSIL,Trattpingvin/JSIL,dmirmilshteyn/JSIL,FUSEEProjectT...
Proxies/Collections.cs
Proxies/Collections.cs
using System; using System.Collections; using System.Collections.Generic; using JSIL.Meta; using JSIL.Proxy; namespace JSIL.Proxies { [JSProxy( new[] { "System.Collections.ArrayList", "System.Collections.Hashtable", "System.Collections.Generic.List`1", "Syst...
using System; using System.Collections; using System.Collections.Generic; using JSIL.Meta; using JSIL.Proxy; namespace JSIL.Proxies { [JSProxy( new[] { "System.Collections.ArrayList", "System.Collections.Hashtable", "System.Collections.Generic.List`1", "Syst...
mit
C#
c33dc1045c2642347359b035987c352294c8d87e
Update comment
killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity
Assets/MRTK/Core/Interfaces/Devices/IMixedRealityHapticFeedback.cs
Assets/MRTK/Core/Interfaces/Devices/IMixedRealityHapticFeedback.cs
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Input { /// <summary> /// Provides access to the haptic capabilities of a device. /// </summary> public interface IMixedRealityHapticFeedback { /// <summary> /// Star...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Input { /// <summary> /// Provides access to the haptic capabilities of a device. /// </summary> public interface IMixedRealityHapticFeedback { /// <summary> /// Star...
mit
C#
207d8421e9a5ec91cae2650f3e1c44b2a6b7bebe
fix error
fanwentao/CustomHeaderValueProvider
src/ValueProviders/CustomHeaderValueProvider.cs
src/ValueProviders/CustomHeaderValueProvider.cs
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Text; using System.Web.Http.ValueProviders; using System.Web.Http.ValueProviders.Providers; namespace ValueProviders { public class CustomHeaderValuePro...
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net.Http; using System.Net.Http.Headers; using System.Text; using System.Web.Http.ValueProviders; using System.Web.Http.ValueProviders.Providers; namespace ValueProviders { public class CustomHeaderValuePro...
mit
C#
0f6f000188680ec7a375b3b244d7abe8557376ef
Remove difficulty spike nerf
ppy/osu,peppy/osu,peppy/osu,peppy/osu,ppy/osu,ppy/osu
osu.Game.Rulesets.Osu/Difficulty/Skills/Flashlight.cs
osu.Game.Rulesets.Osu/Difficulty/Skills/Flashlight.cs
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System; using System.Linq; using osu.Game.Rulesets.Difficulty.Preprocessing; using osu.Game.Rulesets.Mods; using osu.Game.Rulesets.Osu.Difficult...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using System; using System.Linq; using osu.Game.Rulesets.Difficulty.Preprocessing; using osu.Game.Rulesets.Mods; using osu.Game.Rulesets.Osu.Difficult...
mit
C#
6d6cb3b934a8bf7edbe3c60083c359c36d6db73e
index discriminator
caleblloyd/Pomelo.EntityFrameworkCore.MySql,PomeloFoundation/Pomelo.EntityFrameworkCore.MySql,caleblloyd/Pomelo.EntityFrameworkCore.MySql,PomeloFoundation/Pomelo.EntityFrameworkCore.MySql
test/Pomelo.EntityFrameworkCore.MySql.PerfTests/Models/People.cs
test/Pomelo.EntityFrameworkCore.MySql.PerfTests/Models/People.cs
using System.Collections.Generic; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; namespace Pomelo.EntityFrameworkCore.MySql.PerfTests.Models { public static class PeopleMeta { public static void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<PersonKid>(en...
using System.Collections.Generic; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata; namespace Pomelo.EntityFrameworkCore.MySql.PerfTests.Models { public static class PeopleMeta { public static void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity<PersonKid>(en...
mit
C#
04fca8129b384ecc1fe1b910378fde74b9347fd9
Clean up
os2kitos/kitos,miracle-as/kitos,os2kitos/kitos,os2kitos/kitos,miracle-as/kitos,miracle-as/kitos,os2kitos/kitos,miracle-as/kitos
Core.ApplicationServices/CryptoService.cs
Core.ApplicationServices/CryptoService.cs
using System.Security.Cryptography; using System.Text; using System.Web; using Core.DomainServices; namespace Core.ApplicationServices { public class CryptoService : ICryptoService { private readonly SHA256Managed _crypt; public CryptoService() { _crypt = new SHA256Managed...
using System; using System.Security.Cryptography; using System.Text; using System.Web; using Core.DomainServices; namespace Core.ApplicationServices { public class CryptoService : ICryptoService { private readonly SHA256Managed _crypt; public CryptoService() { _crypt = new...
mpl-2.0
C#
1fae099a4edc60d44636051c66f6a7606515f379
Change artist in tags test
bettiolo/SevenDigital.Api.Wrapper,luiseduardohdbackup/SevenDigital.Api.Wrapper,AnthonySteele/SevenDigital.Api.Wrapper,raoulmillais/SevenDigital.Api.Wrapper,emashliles/SevenDigital.Api.Wrapper,danbadge/SevenDigital.Api.Wrapper,bnathyuw/SevenDigital.Api.Wrapper,mattgray/SevenDigital.Api.Wrapper,danhaller/SevenDigital.Api...
src/SevenDigital.Api.Wrapper.Integration.Tests/EndpointTests/TagsEndpoint/ArtistTagsTests.cs
src/SevenDigital.Api.Wrapper.Integration.Tests/EndpointTests/TagsEndpoint/ArtistTagsTests.cs
using System.Linq; using NUnit.Framework; using SevenDigital.Api.Schema.Tags; namespace SevenDigital.Api.Wrapper.Integration.Tests.EndpointTests.TagsEndpoint { [TestFixture] public class ArtistTagsTests { [Test] public void Can_hit_endpoint() { ArtistTags tags = Api<ArtistTags>.Create .WithParame...
using System.Linq; using NUnit.Framework; using SevenDigital.Api.Schema.Tags; namespace SevenDigital.Api.Wrapper.Integration.Tests.EndpointTests.TagsEndpoint { [TestFixture] public class ArtistTagsTests { [Test] public void Can_hit_endpoint() { ArtistTags tags = Api<ArtistTags>.Create .WithParame...
mit
C#
d8423af4fbb5ef30ffa75f9358b578495003c5ba
Make beauty to extensions API
sunloving/photosphere-mapping
src/Photosphere.Mapping/Extensions/MappingObjectExtensions.cs
src/Photosphere.Mapping/Extensions/MappingObjectExtensions.cs
using Photosphere.Mapping.Static; namespace Photosphere.Mapping.Extensions { public static class MappingObjectExtensions { /// <summary> Map from source to existent object target</summary> public static void MapTo<TSource, TTarget>(this TSource source, TTarget target) where TTarget...
using Photosphere.Mapping.Static; namespace Photosphere.Mapping.Extensions { public static class MappingObjectExtensions { /// <summary> Map from source to existent object target</summary> public static void MapTo<TSource, TTarget>(this TSource source, TTarget target) where TTarget...
mit
C#
5835ce59d7f974da5d62fc57356f082cabec2a20
Update SplashScreenActivity.cs
MugenMvvmToolkitDocs/HelloLinker
HelloLinker/Views/SplashScreenActivity.cs
HelloLinker/Views/SplashScreenActivity.cs
using Android.App; using MugenMvvmToolkit.Android.Infrastructure; using MugenMvvmToolkit.Android.Views.Activities; namespace HelloLinker.Views { [Activity(Label = "HelloLinker", Theme = "@android:style/Theme.NoTitleBar", MainLauncher = true, Icon = "@drawable/icon", NoHistory = true)] public class Spl...
using Android.App; using MugenMvvmToolkit.Android.Infrastructure; using MugenMvvmToolkit.Android.Views.Activities; namespace HelloLinker.Views { [Activity(Label = "HelloValidation", Theme = "@android:style/Theme.NoTitleBar", MainLauncher = true, Icon = "@drawable/icon", NoHistory = true)] public class...
mit
C#
b794cd41011a536f5a649eb9f30abff5a96ec691
improve test case, add a message
splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net
IPTables.Net.Tests/CheckInternalTables.cs
IPTables.Net.Tests/CheckInternalTables.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using IPTables.Net.Iptables; using NUnit.Framework; namespace IPTables.Net.Tests { [TestFixture] class CheckInternalTables { [Test] public void TestChains() { TestChain("filter", "INPU...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using IPTables.Net.Iptables; using NUnit.Framework; namespace IPTables.Net.Tests { [TestFixture] class CheckInternalTables { [Test] public void TestChains() { TestChain("filter", "INPU...
apache-2.0
C#
2a47af6af08810a57e3553e2ce118fb4084b5e8f
Update the validation messages for uln and cost
SkillsFundingAgency/das-providerapprenticeshipsservice,SkillsFundingAgency/das-providerapprenticeshipsservice,SkillsFundingAgency/das-providerapprenticeshipsservice
src/SFA.DAS.ProviderApprenticeshipsService.Web/Validation/ApprenticeshipViewModelValidator.cs
src/SFA.DAS.ProviderApprenticeshipsService.Web/Validation/ApprenticeshipViewModelValidator.cs
using FluentValidation; using SFA.DAS.ProviderApprenticeshipsService.Web.Models; namespace SFA.DAS.ProviderApprenticeshipsService.Web.Validation { public sealed class ApprenticeshipViewModelValidator : AbstractValidator<ApprenticeshipViewModel> { public ApprenticeshipViewModelValidator() { ...
using FluentValidation; using SFA.DAS.ProviderApprenticeshipsService.Web.Models; namespace SFA.DAS.ProviderApprenticeshipsService.Web.Validation { public sealed class ApprenticeshipViewModelValidator : AbstractValidator<ApprenticeshipViewModel> { public ApprenticeshipViewModelValidator() { ...
mit
C#
ad2206175492154f8e79b5ca98a211875ad01ee0
Build and publish nuget package
bfriesen/Rock.Messaging,RockFramework/Rock.Messaging
Rock.Messaging/Properties/AssemblyInfo.cs
Rock.Messaging/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Ro...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Ro...
mit
C#
69b0daff5248d9aed8c557238b85c9061508c9b7
Update new-blog.cshtml
daveaglick/daveaglick,mishrsud/sudhanshutheone.com,mishrsud/sudhanshutheone.com,daveaglick/daveaglick,mishrsud/sudhanshutheone.com
Somedave/Views/Blog/Posts/new-blog.cshtml
Somedave/Views/Blog/Posts/new-blog.cshtml
@{ Title = "New Blog"; Lead = "Look, Ma, no database!"; //Published = new DateTime(2014, 9, 4); Tags = new[] { "blog", "meta" }; } <p>It's been a little while coming, but I'm finally launching my new blog. It's built from scratch in ASP.NET MVC. Why go to all the trouble to build a blog engine from scr...
@{ Title = "New Blog"; Lead = "Look, Ma, no database!" //Published = new DateTime(2014, 9, 4); Tags = new[] { "blog", "meta" }; } <p>It's been a little while coming, but I'm finally launching my new blog. It's built from scratch in ASP.NET MVC. Why go to all the trouble to build a blog engine from scra...
mit
C#
3bd052db68eeb121e608d2c04e5dc1daf2db0715
Add InsightsApiKey to conf file.
masterrr/mobile,ZhangLeiCharles/mobile,ZhangLeiCharles/mobile,peeedge/mobile,eatskolnikov/mobile,peeedge/mobile,eatskolnikov/mobile,eatskolnikov/mobile,masterrr/mobile
Phoebe/Build.cs
Phoebe/Build.cs
using System; namespace Toggl.Phoebe { public static class Build { #warning Please fill in build settings and make git assume this file is unchanged. #region Phoebe build config public static readonly Uri ApiUrl = new Uri ("https://toggl.com/api/"); public static readonly Uri ReportsAp...
using System; namespace Toggl.Phoebe { public static class Build { #warning Please fill in build settings and make git assume this file is unchanged. #region Phoebe build config public static readonly Uri ApiUrl = new Uri ("https://toggl.com/api/"); public static readonly Uri ReportsAp...
bsd-3-clause
C#
7e64b3a449126b288233d0873ea2780bfac3f3fe
Add code documentation to the EnumPalmValue
haefele/PalmDB
src/PalmDB/Serialization/EnumPalmValue.cs
src/PalmDB/Serialization/EnumPalmValue.cs
using System; using System.Threading.Tasks; namespace PalmDB.Serialization { /// <summary> /// Represents a <see cref="int"/> based <see cref="Enum"/> value inside a palm database. /// </summary> /// <typeparam name="T"></typeparam> internal class EnumPalmValue<T> : IPalmValue<T> where T :...
using System.Threading.Tasks; namespace PalmDB.Serialization { internal class EnumPalmValue<T> : IPalmValue<T> where T : struct { public int Length { get; } public EnumPalmValue(int length) { Guard.NotNegative(length, nameof(length)); this.Length = len...
mit
C#
333f64ad717d612120ba8df16f2d7a2b7d49171d
bump version
rabbit-link/rabbit-link,rabbit-link/rabbit-link
src/RabbitLink/Properties/AssemblyInfo.cs
src/RabbitLink/Properties/AssemblyInfo.cs
#region Usings using System.Reflection; using System.Runtime.InteropServices; #endregion // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("R...
#region Usings using System.Reflection; using System.Runtime.InteropServices; #endregion // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("R...
mit
C#
b44f67e5457fb4847825096d7cf82a7a2e7cd8cc
Update Version : 1.7.171.0 URL Changes + Fix User Manager Delete
Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal,Appleseed/portal
Master/Appleseed/WebSites/Appleseed/Properties/AssemblyInfo.cs
Master/Appleseed/WebSites/Appleseed/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; using System.Resources; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Appleseed Portal"...
using System.Reflection; using System.Runtime.InteropServices; using System.Resources; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Appleseed Portal"...
apache-2.0
C#
1a5951a7fa3a193b1aebd894a4e10156124ea980
add event code
NCTU-Isolated-Island/Isolated-Island-Game
IsolatedIslandGame/IsolatedIslandGame.Protocol.Communication/EventCodes/PlayerEventCode.cs
IsolatedIslandGame/IsolatedIslandGame.Protocol.Communication/EventCodes/PlayerEventCode.cs
namespace IsolatedIslandGame.Protocol.Communication.EventCodes { public enum PlayerEventCode : byte { SyncData, GetBlueprint } }
namespace IsolatedIslandGame.Protocol.Communication.EventCodes { public enum PlayerEventCode : byte { SyncData } }
apache-2.0
C#
11bb6c2680f47ab15163b830cf24985d15cc631f
Fix the wrapper for tests to pass Models.Th155AllScoreDataTests
y-iihoshi/ThScoreFileConverter,y-iihoshi/ThScoreFileConverter
ThScoreFileConverterTests/Models/Wrappers/Th155StoryWrapper.cs
ThScoreFileConverterTests/Models/Wrappers/Th155StoryWrapper.cs
using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Diagnostics.CodeAnalysis; using ThScoreFileConverter.Models; namespace ThScoreFileConverterTests.Models.Wrappers { // NOTE: Setting the accessibility as public causes CS0053. internal sealed class Th155StoryWrapper { pr...
using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using System.Diagnostics.CodeAnalysis; using ThScoreFileConverter.Models; namespace ThScoreFileConverterTests.Models.Wrappers { // NOTE: Setting the accessibility as public causes CS0053. internal sealed class Th155StoryWrapper { pr...
bsd-2-clause
C#
afbe0e28ab6c0b00ba7365675c36898a984851c4
Fix typo
picklesdoc/pickles,dirkrombauts/pickles,magicmonty/pickles,picklesdoc/pickles,magicmonty/pickles,magicmonty/pickles,picklesdoc/pickles,picklesdoc/pickles,ludwigjossieaux/pickles,magicmonty/pickles,dirkrombauts/pickles,ludwigjossieaux/pickles,dirkrombauts/pickles,dirkrombauts/pickles,ludwigjossieaux/pickles
src/Pickles/Pickles.TestFrameworks.UnitTests/CucumberJson/WhenParsingCucumberJsonResultsFile.cs
src/Pickles/Pickles.TestFrameworks.UnitTests/CucumberJson/WhenParsingCucumberJsonResultsFile.cs
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="WhenParsingCucumberJsonResultsFile.cs" company="PicklesDoc"> // Copyright 2011 Jeffrey Cameron // Copyright 2012-present PicklesDoc team and community contributors // // // L...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="WhenParsingCucumberJsonResultsFile.cs" company="PicklesDoc"> // Copyright 2011 Jeffrey Cameron // Copyright 2012-present PicklesDoc team and community contributors // // // L...
apache-2.0
C#
8e938e3d131663ac9b3c45b3109ef128f649caec
Bump version to 0.1.5.
FacilityApi/Facility,ejball/Facility
SolutionInfo.cs
SolutionInfo.cs
using System.Reflection; [assembly: AssemblyVersion("0.1.5.0")] [assembly: AssemblyCompany("")] [assembly: AssemblyCopyright("Copyright 2016 Ed Ball")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")]
using System.Reflection; [assembly: AssemblyVersion("0.1.4.0")] [assembly: AssemblyCompany("")] [assembly: AssemblyCopyright("Copyright 2016 Ed Ball")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")]
mit
C#
7735a42a85e021fce5f56d03437cef2c54ad82bc
Remove unused wrapper
james-andrewsmith/consul-net,yonglehou/consul-net
src/Consul.Net/Services/Client.cs
src/Consul.Net/Services/Client.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net; using System.Net.Http; using System.Net.Http.Headers; namespace Consul.Net { public sealed partial class ConsulClient { // constructor #region /...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Net; using System.Net.Http; using System.Net.Http.Headers; namespace Consul.Net { public sealed class ConsulRequest { // wait public stri...
apache-2.0
C#