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
58640f4fa70845116bd13df041611a21b222dce4
Set up and connect client/server.
SmartCasual/ksp-multiplayer
KSPMultiplayer.cs
KSPMultiplayer.cs
using System; using UnityEngine; namespace SC { [KSPAddon(KSPAddon.Startup.Flight, false)] public class KSPMultiplayer : MonoBehaviour { private Vessel currVessel; private Vessel prevVessel; public void Awake() { RenderingManager.AddToPostDrawQueue (3, new Callback (drawGUI)); } public void Update() {...
using System; using UnityEngine; namespace SC { [KSPAddon(KSPAddon.Startup.Flight, false)] public class KSPMultiplayer : MonoBehaviour { private Vessel currVessel; private Vessel prevVessel; public void Update() { if (currVessel == null || FlightGlobals.ActiveVessel != currVessel) { prevVessel = currVe...
mit
C#
c9c28603a7f1d0fa01f65782e26108242c0fa2d8
Remove code which logs empty responses
canton7/SyncTrayzor,canton7/SyncTrayzor,canton7/SyncTrayzor
src/SyncTrayzor/Syncthing/ApiClient/SyncthingHttpClientHandler.cs
src/SyncTrayzor/Syncthing/ApiClient/SyncthingHttpClientHandler.cs
using NLog; using System.Net.Http; using System.Threading; using System.Threading.Tasks; using System; namespace SyncTrayzor.Syncthing.ApiClient { public class SyncthingHttpClientHandler : WebRequestHandler { private static readonly Logger logger = LogManager.GetCurrentClassLogger(); public S...
using NLog; using System.Net.Http; using System.Threading; using System.Threading.Tasks; using System; namespace SyncTrayzor.Syncthing.ApiClient { public class SyncthingHttpClientHandler : WebRequestHandler { private static readonly Logger logger = LogManager.GetCurrentClassLogger(); public S...
mit
C#
9b6b29b27a4efa238fc55b462ade3dbefbb89616
Add documentation
SimpleStack/simplestack.orm,SimpleStack/simplestack.orm
src/SimpleStack.Orm/ColumnDefinition.cs
src/SimpleStack.Orm/ColumnDefinition.cs
using System.Data; namespace SimpleStack.Orm { public interface IColumnDefinition { /// <summary> /// Column Name /// </summary> string Name { get; } /// <summary> /// Is nullable or not /// </summary> bool Nullable { get; } ...
using System.Data; namespace SimpleStack.Orm { public interface IColumnDefinition { string Name { get; } bool Nullable { get; } int? Length { get; } int? Precision { get; } int? Scale { get; } string Definition { get; } DbType DbType { get; } boo...
bsd-3-clause
C#
d3541816a637f8ccb105622ac71027a096b9009c
Reset console color on exit.
sqc1999/LxRunOffline
LxRunOffline/Program.cs
LxRunOffline/Program.cs
using System; using System.Diagnostics; using EasyHook; namespace LxRunOffline { class Program { static void Main(string[] args) { int pId = 0; try { RemoteHooking.CreateAndInject(@"C:\Windows\System32\LxRun.exe", string.Join(" ", args), 0, "LxRunHook.dll", "LxRunHook.dll", out pId); } catch ...
using System; using System.Diagnostics; using EasyHook; namespace LxRunOffline { class Program { static void Main(string[] args) { int pId = 0; try { RemoteHooking.CreateAndInject(@"C:\Windows\System32\LxRun.exe", string.Join(" ", args), 0, "LxRunHook.dll", "LxRunHook.dll", out pId); } catch ...
mit
C#
a0d6e8cb97848c490ca51d802768a68996c3f2ca
Allow suppression of colour for specific glyphs.
SirSengir/QuickFont
QuickFont/QFontGlyph.cs
QuickFont/QFontGlyph.cs
using System; using System.Collections.Generic; using System.Text; using System.Drawing; namespace QuickFont { public sealed class QFontGlyph { /// <summary> /// Which texture page the glyph is on /// </summary> public int Page { get; private set; }...
using System; using System.Collections.Generic; using System.Text; using System.Drawing; namespace QuickFont { public sealed class QFontGlyph { /// <summary> /// Which texture page the glyph is on /// </summary> public int Page { get; private set; }...
mit
C#
97236e5d260c8adfe8d3aeeff4ac7a37217d057b
Fix issue with PhiAccrualFailureDetector
cdmdotnet/akka.net,skotzko/akka.net,ashic/akka.net,akoshelev/akka.net,MAOliver/akka.net,bruinbrown/akka.net,JeffCyr/akka.net,thelegendofando/akka.net,alexvaluyskiy/akka.net,tillr/akka.net,chris-ray/akka.net,naveensrinivasan/akka.net,d--g/akka.net,linearregression/akka.net,akoshelev/akka.net,eloraiby/akka.net,ali-ince/a...
src/core/Akka.Remote/FailureDetector.cs
src/core/Akka.Remote/FailureDetector.cs
using System; using Akka.Configuration; using Akka.Event; namespace Akka.Remote { /// <summary> /// A failure detector must be a thread-safe, mutable construct that registers heartbeat events of a resource and /// is able to decide the availability of that monitored resource /// </summary> public ...
using System; using Akka.Configuration; using Akka.Event; namespace Akka.Remote { /// <summary> /// A failure detector must be a thread-safe, mutable construct that registers heartbeat events of a resource and /// is able to decide the availability of that monitored resource /// </summary> public ...
apache-2.0
C#
7caea52e3075dbef6ea60aade33bb9ae49c65985
Add header for video steramer section
dmweis/DynamixelServo,dmweis/DynamixelServo,dmweis/DynamixelServo,dmweis/DynamixelServo
Quadruped.WebInterface/Pages/SettingsPage.cshtml
Quadruped.WebInterface/Pages/SettingsPage.cshtml
@page @using Quadruped.WebInterface.Pages @model global::Quadruped.WebInterface.Pages.SettingsPageModel @{ ViewData["Title"] = "SettingsPage"; } <h2>SettingsPage</h2> <div> <form method="post"> <h3>Video streamer settings</h3> <div>Framerate <input asp-for="StreamConfiguration.Framerate" /></d...
@page @using Quadruped.WebInterface.Pages @model global::Quadruped.WebInterface.Pages.SettingsPageModel @{ ViewData["Title"] = "SettingsPage"; } <h2>SettingsPage</h2> <div> <form method="post"> <div>Framerate <input asp-for="StreamConfiguration.Framerate" /></div> <div>HorizontalResolution <in...
apache-2.0
C#
58c71090998ae40865ef236c9b570b1f91eb75ea
Move config.Configure to BeforeStart which gives the overloads the chance to change it before it throw because it dose not found an configuration.
hibernating-rhinos/rhino-esb,ketiko/rhino-esb
Rhino.ServiceBus/Hosting/AbstractBootStrapper.cs
Rhino.ServiceBus/Hosting/AbstractBootStrapper.cs
using System; using System.Reflection; using Rhino.ServiceBus.Config; using Rhino.ServiceBus.Impl; namespace Rhino.ServiceBus.Hosting { public abstract class AbstractBootStrapper : IDisposable { private AbstractRhinoServiceBusConfiguration config; public virtual Assembly Assembly ...
using System; using System.Reflection; using Rhino.ServiceBus.Config; using Rhino.ServiceBus.Impl; namespace Rhino.ServiceBus.Hosting { public abstract class AbstractBootStrapper : IDisposable { private AbstractRhinoServiceBusConfiguration config; public virtual Assembly Assembly ...
bsd-3-clause
C#
38fbcfb50a1159a2f07828a96005ed606a6123a2
Update ModuleMirror from mono/mono
Unity-Technologies/debugger-libs,mono/debugger-libs,Unity-Technologies/debugger-libs,mono/debugger-libs
Mono.Debugger.Soft/Mono.Debugger.Soft/ModuleMirror.cs
Mono.Debugger.Soft/Mono.Debugger.Soft/ModuleMirror.cs
using System; using Mono.Debugger; namespace Mono.Debugger.Soft { public class ModuleMirror : Mirror { ModuleInfo info; Guid guid; AssemblyMirror assembly; internal ModuleMirror (VirtualMachine vm, long id) : base (vm, id) { } void ReadInfo () { if (info == null) info = vm.conn.Module_GetInf...
using System; using Mono.Debugger; using Mono.Cecil; namespace Mono.Debugger.Soft { public class ModuleMirror : Mirror { ModuleInfo info; Guid guid; AssemblyMirror assembly; internal ModuleMirror (VirtualMachine vm, long id) : base (vm, id) { } void ReadInfo () { if (info == null) info = vm.conn...
mit
C#
2eaffc7fc4487ac0fb8c83f7d650c0954eee0439
Update IExchangeRateRepository.cs
tiksn/TIKSN-Framework
TIKSN.Core/Finance/ForeignExchange/Data/IExchangeRateRepository.cs
TIKSN.Core/Finance/ForeignExchange/Data/IExchangeRateRepository.cs
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using TIKSN.Data; namespace TIKSN.Finance.ForeignExchange.Data { public interface IExchangeRateRepository : IQueryRepository<ExchangeRateEntity, Guid>, IRepository<ExchangeRateEntity> { Task<IR...
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using TIKSN.Data; namespace TIKSN.Finance.ForeignExchange.Data { public interface IExchangeRateRepository : IQueryRepository<ExchangeRateEntity, Guid>, IRepository<ExchangeRateEntity> { Task<Ex...
mit
C#
a88391b52fb9dc6c615461b9d53f797461b85c55
remove unused usings
tugberkugurlu/AspNetCore.Identity.MongoDB,tugberkugurlu/AspNetCore.Identity.MongoDB
samples/IdentitySample.Mvc/Program.cs
samples/IdentitySample.Mvc/Program.cs
using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; namespace IdentitySample { public static class Program { public static void Main(string[] args) => BuildWebHost(args).Run(); public static IWebHost BuildWebHost(string[] args) => WebHost.CreateDefaultBuilder(args) ...
using System.IO; using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; namespace IdentitySample { public static class Program { public static void Main(string[] args) => BuildWebHost(args).Run(); public static IWebHost BuildWebHost(string[] args) => WebHost.CreateDefaultB...
mit
C#
09f63b7b0d8c056c3a28da1ed85c8ac1d54c8b11
Initialize InfoAppCommand with an IApplicationConfiguration
appharbor/appharbor-cli
src/AppHarbor/Commands/InfoAppCommand.cs
src/AppHarbor/Commands/InfoAppCommand.cs
using System; namespace AppHarbor.Commands { public class InfoAppCommand : ICommand { private readonly IAppHarborClient _client; private readonly IApplicationConfiguration _applicationConfiguration; public InfoAppCommand(IAppHarborClient client, IApplicationConfiguration applicationConfiguration) { _cli...
using System; namespace AppHarbor.Commands { public class InfoAppCommand : ICommand { private readonly IAppHarborClient _client; public InfoAppCommand(IAppHarborClient client) { _client = client; } public void Execute(string[] arguments) { throw new NotImplementedException(); } } }
mit
C#
505a63f8e05692c0b65cfc005b6e07a39b2b47fd
Update IMessage.cs
AntiTcb/Discord.Net,LassieME/Discord.Net,Confruggy/Discord.Net,RogueException/Discord.Net
src/Discord.Net.Core/Entities/Messages/IMessage.cs
src/Discord.Net.Core/Entities/Messages/IMessage.cs
using System; using System.Collections.Generic; namespace Discord { public interface IMessage : ISnowflakeEntity, IDeletable { /// <summary> Gets the type of this system message. </summary> MessageType Type { get; } /// <summary> Returns true if this message was sent as a text-to-speec...
using System; using System.Collections.Generic; namespace Discord { public interface IMessage : ISnowflakeEntity { /// <summary> Gets the type of this system message. </summary> MessageType Type { get; } /// <summary> Returns true if this message was sent as a text-to-speech message. <...
mit
C#
72c830cc1c7e2b598b9891d23ca58088d880e0a5
increment minor 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#
b9e5ff94ef042bc52420d712b2813d4ce804778b
add release note for ConstructingMemberAssertionTestCases.
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#
104b12550922ecc7fed4869dd831a0d998e32255
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#
68c5f208b6597a36cef07fd2450e8dc59bf529df
Fix for Google Analytics Service name
SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice
src/SFA.DAS.EAS.Web/Models/GoogleAnalyticsModel.cs
src/SFA.DAS.EAS.Web/Models/GoogleAnalyticsModel.cs
using System; using System.Configuration; using Microsoft.Azure; using SFA.DAS.Configuration; using SFA.DAS.Configuration.AzureTableStorage; using SFA.DAS.Configuration.FileStorage; using SFA.DAS.EAS.Domain.Configuration; namespace SFA.DAS.EAS.Web.Models { public class GoogleAnalyticsModel { private c...
using System; using System.Configuration; using Microsoft.Azure; using SFA.DAS.Configuration; using SFA.DAS.Configuration.AzureTableStorage; using SFA.DAS.Configuration.FileStorage; using SFA.DAS.EAS.Domain.Configuration; namespace SFA.DAS.EAS.Web.Models { public class GoogleAnalyticsModel { private c...
mit
C#
3031b6692e08973469fc3b4d7ec2734dd0a8c8d1
fix dispose warning
bcuff/dd-trace-csharp
src/DataDog.Tracing/TraceContextScope.cs
src/DataDog.Tracing/TraceContextScope.cs
using System; using System.Collections.Generic; using System.Text; namespace DataDog.Tracing { /// <summary> /// Sets up the TraceContext.Current with the specified trace. /// </summary> public sealed class TraceContextScope : IDisposable { readonly ISpan _old; ISpan _span; ...
using System; using System.Collections.Generic; using System.Text; namespace DataDog.Tracing { /// <summary> /// Sets up the TraceContext.Current with the specified trace. /// </summary> public class TraceContextScope : IDisposable { readonly ISpan _old; ISpan _span; publi...
apache-2.0
C#
3fbd9ddd6b2fc0db207ca625038ba9db0e50aa7e
Remove unused usings
lecaillon/Evolve
src/Evolve/Migration/MigrationVersion.cs
src/Evolve/Migration/MigrationVersion.cs
using Evolve.Utilities; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Evolve.Migration { public class MigrationVersion { public MigrationVersion(string version) { Check.NotNullOrEmpty(version, nameof(version)); ...
using Evolve.Utilities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; namespace Evolve.Migration { public class MigrationVersion { public MigrationVersion(string version) { Check.NotNullOrEmpty(version, n...
mit
C#
5733e00c4077eeef2a5f14cdd471960063d660a4
Move timing in program
fluttert/AdventOfCode
AdventOfCode/Program.cs
AdventOfCode/Program.cs
using System; using System.Diagnostics; namespace AdventOfCode { internal class AdventOfCode { private static void Main() { var aoc = new AdventOfCode(); // Change this to the day you want to run aoc.Solve(new Year2015.Day08()); //aoc.Solve(new...
using System; using System.Diagnostics; namespace AdventOfCode { internal class AdventOfCode { private static void Main() { var aoc = new AdventOfCode(); var stopwatch = new Stopwatch(); stopwatch.Start(); // Change this to the day you want to r...
mit
C#
aea03409a37d3f35379bcbb94d2e68bb5abb6746
Fix url of api test
andrew-polk/BloomDesktop,JohnThomson/BloomDesktop,StephenMcConnel/BloomDesktop,StephenMcConnel/BloomDesktop,BloomBooks/BloomDesktop,gmartin7/myBloomFork,andrew-polk/BloomDesktop,gmartin7/myBloomFork,JohnThomson/BloomDesktop,gmartin7/myBloomFork,gmartin7/myBloomFork,JohnThomson/BloomDesktop,andrew-polk/BloomDesktop,gmar...
src/BloomTests/web/ReadersApiTests.cs
src/BloomTests/web/ReadersApiTests.cs
using Bloom.Api; using Bloom.Book; using Bloom.Collection; using NUnit.Framework; namespace BloomTests.web { [TestFixture] public class ReadersApiTests { private EnhancedImageServer _server; [SetUp] public void Setup() { var bookSelection = new BookSelection(); bookSelection.SelectBook(new Bloom.Book...
using Bloom.Api; using Bloom.Book; using Bloom.Collection; using NUnit.Framework; namespace BloomTests.web { [TestFixture] public class ReadersApiTests { private EnhancedImageServer _server; [SetUp] public void Setup() { var bookSelection = new BookSelection(); bookSelection.SelectBook(new Bloom.Book...
mit
C#
c4fa3e6b20259addf3893c7003c6d3bbdfc816a8
clean xml
kleberksms/StaticCommons
src/StaticCommons/Class/Inflector/XML.cs
src/StaticCommons/Class/Inflector/XML.cs
 using System.Xml; using System.Xml.Serialization; namespace StaticCommons.Class.Inflector { /** * Base * https://stackoverflow.com/questions/11447529/convert-an-object-to-an-xml-string */ public static class Xml { public static string ToXml(this object obj) { va...
 using System.Xml.Serialization; namespace StaticCommons.Class.Inflector { /** * Base * https://stackoverflow.com/questions/11447529/convert-an-object-to-an-xml-string */ public static class Xml { public static string ToXml(this object obj) { var stringwriter = n...
mit
C#
5eb8aea74ab40f77a9b23a4c5a620b769ca0d84b
fix line endings in findreplace code
c960657/dd-agent,zendesk/dd-agent,AniruddhaSAtre/dd-agent,indeedops/dd-agent,guruxu/dd-agent,urosgruber/dd-agent,takus/dd-agent,zendesk/dd-agent,JohnLZeller/dd-agent,Wattpad/dd-agent,GabrielNicolasAvellaneda/dd-agent,joelvanvelden/dd-agent,zendesk/dd-agent,takus/dd-agent,eeroniemi/dd-agent,amalakar/dd-agent,benmccann/d...
packaging/datadog-agent/win32/wix/FindReplace/Program.cs
packaging/datadog-agent/win32/wix/FindReplace/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace FindReplace { class Program { static void Main(string[] args) { if (args.Length != 3) { Console.Write("Usage: FindReplace.exe pat...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace FindReplace { class Program { static void Main(string[] args) { if (args.Length != 3) { Console.Write("Usage: FindR...
bsd-3-clause
C#
238eb1a964f6a8ac2f4a0cbb62dbfa6af7b7ae47
Update RyanYates.cs
planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell
src/Firehose.Web/Authors/RyanYates.cs
src/Firehose.Web/Authors/RyanYates.cs
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using System.Web; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class RyanYatesMVP : IFilterMyBlogPosts, IAmAMicrosoftMVP { public string FirstName => "Ryan"; p...
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using System.Web; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class RyanYatesMVP : IFilterMyBlogPosts, IAmAMicrosoftMVP { public string FirstName => "Ryan"; p...
mit
C#
dc6c18a6e0672a1677746a847d8e19b123dc5726
Update QuorumAccount.cs
Nethereum/Nethereum,Nethereum/Nethereum,Nethereum/Nethereum,Nethereum/Nethereum,Nethereum/Nethereum
src/Nethereum.Quorum/QuorumAccount.cs
src/Nethereum.Quorum/QuorumAccount.cs
using Nethereum.Signer; using Nethereum.Web3.Accounts; using System.Numerics; namespace Nethereum.Quorum { public class QuorumAccount : Account { public QuorumAccount(EthECKey key) : base(key) { } public QuorumAccount(string privateKey, BigInteger? chainId = null) : base(pri...
using Nethereum.Signer; using Nethereum.Web3.Accounts; namespace Nethereum.Quorum { public class QuorumAccount : Account { public QuorumAccount(EthECKey key):base(key) { } public QuorumAccount(string privateKey):base(privateKey) { } ...
mit
C#
606c3b4a7849b259a33e8e79952b5dbb6d283003
Refactor deserialization
mstrother/BmpListener
src/BmpListener/Bmp/BmpHeader.cs
src/BmpListener/Bmp/BmpHeader.cs
using BmpListener.MiscUtil.Conversion; using System; namespace BmpListener.Bmp { public class BmpHeader { public BmpHeader() { } public BmpHeader(byte[] data) { Decode(data); } public byte Version { get; private set; } publi...
using BmpListener.MiscUtil.Conversion; using System; using System.Linq; namespace BmpListener.Bmp { public class BmpHeader { public BmpHeader() { } public BmpHeader(byte[] data) { Decode(data); } private readonly int bmpVersion = 3; ...
mit
C#
3c8728124e4e5090ee371e8aa30bdeaf4901e57e
Rename FQDN Tag cmdlet to include AzureRMPrefix
ClogenyTechnologies/azure-powershell,AzureAutomationTeam/azure-powershell,ClogenyTechnologies/azure-powershell,AzureAutomationTeam/azure-powershell,ClogenyTechnologies/azure-powershell,ClogenyTechnologies/azure-powershell,AzureAutomationTeam/azure-powershell,AzureAutomationTeam/azure-powershell,ClogenyTechnologies/azur...
src/ResourceManager/Network/Commands.Network/AzureFirewallFqdnTag/GetAzureFirewallFqdnTagCmdlet.cs
src/ResourceManager/Network/Commands.Network/AzureFirewallFqdnTag/GetAzureFirewallFqdnTagCmdlet.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#
33a34c6678e7b63d7a1f1a3996ac73e2ff47405f
update version to 1.3.56.0
agileharbor/shipStationAccess
src/Global/GlobalAssemblyInfo.cs
src/Global/GlobalAssemblyInfo.cs
using System; using System.Reflection; using System.Runtime.InteropServices; [ assembly : ComVisible( false ) ] [ assembly : AssemblyProduct( "ShipStationAccess" ) ] [ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ] [ assembly : AssemblyCopyright( "Copyright (C) Agile Harbor, LLC" ) ] [ assembly : Assembly...
using System; using System.Reflection; using System.Runtime.InteropServices; [ assembly : ComVisible( false ) ] [ assembly : AssemblyProduct( "ShipStationAccess" ) ] [ assembly : AssemblyCompany( "Agile Harbor, LLC" ) ] [ assembly : AssemblyCopyright( "Copyright (C) Agile Harbor, LLC" ) ] [ assembly : Assembly...
bsd-3-clause
C#
0fe07e157f982c8c211585a331b047ad3c61bf63
prepend "is" to bool
smbc-digital/iag-contentapi
src/StockportContentApi/Model/Link.cs
src/StockportContentApi/Model/Link.cs
namespace StockportContentApi.Model { public record Link(string Url, string Text, bool IsExternal); }
namespace StockportContentApi.Model { public record Link(string Url, string Text, bool External); }
mit
C#
2d43338495ac47c430903dcedd29e0c75260d3db
Fix PullRequest property to be long.
nuke-build/nuke,nuke-build/nuke,nuke-build/nuke,nuke-build/nuke
source/Nuke.Common/BuildServers/Bitrise.cs
source/Nuke.Common/BuildServers/Bitrise.cs
// Copyright Matthias Koch, Sebastian Karasek 2018. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.Linq; using JetBrains.Annotations; using static Nuke.Common.EnvironmentInfo; namespace Nuke.Common.BuildServers { /// <summary> /// In...
// Copyright Matthias Koch, Sebastian Karasek 2018. // Distributed under the MIT License. // https://github.com/nuke-build/nuke/blob/master/LICENSE using System; using System.Linq; using JetBrains.Annotations; using static Nuke.Common.EnvironmentInfo; namespace Nuke.Common.BuildServers { /// <summary> /// In...
mit
C#
4fb4f788217c7ace6c59e5ded38c6dfdbf774130
remove unused using statements
kreeben/resin,kreeben/resin
src/ResinCore/DocumentPosting.cs
src/ResinCore/DocumentPosting.cs
using System.Diagnostics; namespace Resin { [DebuggerDisplay("{DocumentId}:{Position}")] public class DocumentPosting { public int DocumentId { get; private set; } public int Position { get; set; } public DocumentPosting(int documentId, int position) { DocumentI...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace Resin { [DebuggerDisplay("{DocumentId}:{Position}")] public class DocumentPosting { public int DocumentId { get; private set; } public int Position { get; set; } public DocumentPo...
mit
C#
a1bfaeca53fa2ffd48084449487988f16022a224
Make AppDeleteCommand implement ICommand
appharbor/appharbor-cli
src/AppHarbor/Commands/AppDeleteCommand.cs
src/AppHarbor/Commands/AppDeleteCommand.cs
using System; namespace AppHarbor.Commands { public class AppDeleteCommand : ICommand { public void Execute(string[] arguments) { throw new NotImplementedException(); } } }
namespace AppHarbor.Commands { public class AppDeleteCommand { } }
mit
C#
e443594a291f434921dfa5fabdef0e6a8ab6ec04
Prepare for 2017.0.0 beta1.
sshnet/SSH.NET
src/Renci.SshNet/Properties/CommonAssemblyInfo.cs
src/Renci.SshNet/Properties/CommonAssemblyInfo.cs
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyDescription("SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.")] [assembly: AssemblyCompany("Renci")] [assembly: AssemblyProduct("SSH.NET")] [assembly: AssemblyCopyright("Copyright Renci 2010-20...
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyDescription("SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.")] [assembly: AssemblyCompany("Renci")] [assembly: AssemblyProduct("SSH.NET")] [assembly: AssemblyCopyright("Copyright Renci 2010-20...
mit
C#
9aede25a9ea7cddf2d28e8f68cf23572881c0940
Make ETag readonly and update the GetHashCode method.
ayeletshpigelman/azure-sdk-for-net,hyonholee/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,stankovski/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,hyonholee/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,ayeletshpigelman/...
src/SDKs/Azure.Core/data-plane/Azure.Core/ETag.cs
src/SDKs/Azure.Core/data-plane/Azure.Core/ETag.cs
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using System.ComponentModel; using System.Text; namespace Azure.Core { public readonly struct ETag : IEquatable<ETag> { readonly byte[] _ascii; public ETag(string etag) => _ascii = E...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using System.ComponentModel; using System.Text; namespace Azure.Core { public struct ETag : IEquatable<ETag> { byte[] _ascii; public ETag(string etag) => _ascii = Encoding.ASCII.GetB...
mit
C#
ca3775529edb05e40f72c6477e725bfe0c109cab
introduce constructor with Android.Drawing.Typeface
lytico/xwt-mobile,lytico/xwt-mobile
src/Xwt.Droid/Xwt.DroidBackend/FontData.cs
src/Xwt.Droid/Xwt.DroidBackend/FontData.cs
// // FontData.cs // // Author: // Lytico // // Copyright (c) 2014 Lytico (http://www.limada.org) // // 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, includ...
// // FontData.cs // // Author: // Lytico // // Copyright (c) 2014 Lytico (http://www.limada.org) // // 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, includ...
mit
C#
aa2277d8319842acdab6dc4df0dbda28d62b0481
Update server side API for single multiple answer question
Promact/trappist,Promact/trappist,Promact/trappist,Promact/trappist,Promact/trappist
Trappist/src/Promact.Trappist.Repository/Questions/QuestionRepository.cs
Trappist/src/Promact.Trappist.Repository/Questions/QuestionRepository.cs
using System.Collections.Generic; using Promact.Trappist.DomainModel.Models.Question; using System.Linq; using Promact.Trappist.DomainModel.DbContext; namespace Promact.Trappist.Repository.Questions { public class QuestionRepository : IQuestionRepository { private readonly TrappistDbContext _dbContext...
using System.Collections.Generic; using Promact.Trappist.DomainModel.Models.Question; using System.Linq; using Promact.Trappist.DomainModel.DbContext; namespace Promact.Trappist.Repository.Questions { public class QuestionRepository : IQuestionRepository { private readonly TrappistDbContext _dbContext...
mit
C#
441ab4d231404f77b65f1ff884d1e1460dbc0697
Move local function.
FacilityApi/FacilityCSharp
tools/Build/Build.cs
tools/Build/Build.cs
using System; using System.IO; using System.Linq; using System.Text.RegularExpressions; using Faithlife.Build; using static Faithlife.Build.AppRunner; using static Faithlife.Build.BuildUtility; using static Faithlife.Build.DotNetRunner; internal static class Build { public static int Main(string[] args) => BuildRunne...
using System; using System.IO; using System.Linq; using System.Text.RegularExpressions; using Faithlife.Build; using static Faithlife.Build.AppRunner; using static Faithlife.Build.BuildUtility; using static Faithlife.Build.DotNetRunner; internal static class Build { public static int Main(string[] args) => BuildRunne...
mit
C#
8353ced91f636bb7f994de7719d41b360153d9cc
use BenchmarkSwitcher
benjamin-hodgson/Pidgin
Pidgin.Bench/Program.cs
Pidgin.Bench/Program.cs
using BenchmarkDotNet.Running; namespace Pidgin.Bench { public class Program { static void Main() { BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).RunAll(); } } }
using BenchmarkDotNet.Running; namespace Pidgin.Bench { public class Program { static void Main() { BenchmarkRunner.Run<StringBench>(); BenchmarkRunner.Run<NumberBench>(); BenchmarkRunner.Run<JsonBench>(); BenchmarkRunner.Run<ExpressionBench>(); ...
mit
C#
cc576b16fc5ca00bdcd55f51a58f85163f6cddd4
Remove unused variable.
queueit/FeatureSwitcher.AwsConfiguration
src/FeatureSwitcher.AwsConfiguration/Behaviours/InStringListBehaviour.cs
src/FeatureSwitcher.AwsConfiguration/Behaviours/InStringListBehaviour.cs
using System.Collections.Generic; using Microsoft.CSharp.RuntimeBinder; namespace FeatureSwitcher.AwsConfiguration.Behaviours { public abstract class InStringListBehaviour : IBehaviour { private HashSet<string> _list = new HashSet<string>(); public bool? Behaviour(Feature.Name name) ...
using System.Collections.Generic; using Microsoft.CSharp.RuntimeBinder; namespace FeatureSwitcher.AwsConfiguration.Behaviours { public abstract class InStringListBehaviour : IBehaviour { private HashSet<string> _list = new HashSet<string>(); public bool? Behaviour(Feature.Name name) ...
apache-2.0
C#
6d98b17df9a8be4c3ad17d0c0c979a9e1f4e096c
Update ThemingFileProvider.cs (#868)
stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,OrchardCMS/Brochard,lukaskabrt/Orchard2,petedavis/Orchard2,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,lukaskabrt/Orchard2,OrchardCMS/Broc...
src/OrchardCore/Orchard.DisplayManagement/Theming/ThemingFileProvider.cs
src/OrchardCore/Orchard.DisplayManagement/Theming/ThemingFileProvider.cs
using Microsoft.Extensions.FileProviders; using Microsoft.Extensions.Primitives; namespace Orchard.DisplayManagement.Theming { /// <summary> /// This custom <see cref="IFileProvider"/> implementation provides the file contents /// necessary to override the default Layout system from Razor with a Shape bas...
using Microsoft.Extensions.FileProviders; using Microsoft.Extensions.Primitives; namespace Orchard.DisplayManagement.Theming { /// <summary> /// This custom <see cref="IFileProvider"/> implementation provides the file contents /// necessary to override the default Layout system from Razor with a Shape bas...
bsd-3-clause
C#
01a963ebc2413de4c438a1b13fb62420b3134a98
Fix for model namespace issue following latest master merge
SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice,SkillsFundingAgency/das-employerapprenticeshipsservice
src/SFA.DAS.EmployerAccounts.Web/ViewModels/AccountDashboardViewModel.cs
src/SFA.DAS.EmployerAccounts.Web/ViewModels/AccountDashboardViewModel.cs
using System; using System.Collections.Generic; using System.Linq; using SFA.DAS.Authorization; using SFA.DAS.EAS.Portal.Client.Types; using SFA.DAS.EmployerAccounts.Models.Account; namespace SFA.DAS.EmployerAccounts.Web.ViewModels { public class AccountDashboardViewModel { public EmployerAccounts.Mod...
using System; using System.Collections.Generic; using System.Linq; using SFA.DAS.Authorization; using SFA.DAS.EAS.Portal.Client.Types; using SFA.DAS.EmployerAccounts.Models.Account; namespace SFA.DAS.EmployerAccounts.Web.ViewModels { public class AccountDashboardViewModel { public Models.Account.Accou...
mit
C#
db5824d99099ca9fb990e8f1c08811184410cdd5
Add tracing to awesomium closing on exception
sjoerd222888/MVVM.CEF.Glue,David-Desmaisons/Neutronium,NeutroniumCore/Neutronium,sjoerd222888/MVVM.CEF.Glue,NeutroniumCore/Neutronium,sjoerd222888/MVVM.CEF.Glue,David-Desmaisons/Neutronium,NeutroniumCore/Neutronium,David-Desmaisons/Neutronium
HTMLEngine/Awesomium/HTMLEngine.Awesomium/AwesomiumWPFWebWindowFactory.cs
HTMLEngine/Awesomium/HTMLEngine.Awesomium/AwesomiumWPFWebWindowFactory.cs
using System.Diagnostics; using System.Threading; using Awesomium.Core; using HTML_WPF.Component; namespace HTMLEngine.Awesomium { public class AwesomiumWPFWebWindowFactory : IWPFWebWindowFactory { private static WebConfig _WebConfig = new WebConfig() { RemoteDebuggingPort = 8001, RemoteDebuggingHost ...
using System.Threading; using Awesomium.Core; using HTML_WPF.Component; namespace HTMLEngine.Awesomium { public class AwesomiumWPFWebWindowFactory : IWPFWebWindowFactory { private static WebConfig _WebConfig = new WebConfig() { RemoteDebuggingPort = 8001, RemoteDebuggingHost = "127.0.0.1" }; ...
mit
C#
e7f41982bea4131c761844fb54c17a18e092996f
Update CreateObjectAction.cs
UnityTechnologies/PlaygroundProject,UnityTechnologies/PlaygroundProject
PlaygroundProject/Assets/Scripts/Conditions/Actions/CreateObjectAction.cs
PlaygroundProject/Assets/Scripts/Conditions/Actions/CreateObjectAction.cs
using UnityEngine; using System.Collections; [AddComponentMenu("Playground/Actions/Create Object")] public class CreateObjectAction : Action { public GameObject prefabToCreate; public Vector2 newPosition; public bool relativeToThisObject; void Update () { if (relativeToThisObject) { newPosition = (Vector...
using UnityEngine; using System.Collections; [AddComponentMenu("Playground/Actions/Create Object")] public class CreateObjectAction : Action { public GameObject prefabToCreate; public Vector2 newPosition; public bool relative; void Update () { if (relative) { newPosition = transform.localPosition; } }...
mit
C#
465dbce4bc38b4069131503a21bf2e84dc4ff8d8
Order accommodations by PublishedDate
ahmedmatem/vs-bgb,ahmedmatem/vs-bgb,ahmedmatem/vs-bgb
BGB.WebAPI/Controllers/AccommodationsController.cs
BGB.WebAPI/Controllers/AccommodationsController.cs
namespace BGB.WebAPI.Controllers { using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; using Data.Common.Repository; using Models; using ViewModels; using System.Data.Entity; using Data; [R...
namespace BGB.WebAPI.Controllers { using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; using Data.Common.Repository; using Models; using ViewModels; using System.Data.Entity; using Data; [R...
mit
C#
de891b0fd26c129d54de9328b82b02124217e51a
use rx.net for dataflow toenumerable in tests
ArsenShnurkov/BitSharp
BitSharp.Common.Test/ExtensionMethods.cs
BitSharp.Common.Test/ExtensionMethods.cs
using System.Collections.Generic; using System.Threading; using System.Threading.Tasks.Dataflow; using System.Reactive.Linq; namespace BitSharp.Common.Test { public static class ExtensionMethods { public static IEnumerable<T> ToEnumerable<T>(this ISourceBlock<T> source, CancellationToken canc...
using System.Collections.Generic; using System.Threading; using System.Threading.Tasks.Dataflow; namespace BitSharp.Common.Test { public static class ExtensionMethods { public static IEnumerable<T> ToEnumerable<T>(this ISourceBlock<T> source, CancellationToken cancelToken = default(Cancellatio...
unlicense
C#
4e2ec8e80edabe5ca425c348adec65cd09f5f870
fix using #2
phonicmouse/SharpPaste,phonicmouse/SharpPaste
Bootstrappers/StaticServeBootstrapper.cs
Bootstrappers/StaticServeBootstrapper.cs
/* * Created by SharpDevelop. * User: Phonic Mouse * Date: 02/08/2016 * Time: 17:32 */ using Nancy using Nancy.Conventions namespace SharpPaste { public class StaticServeBootstrapper : DefaultNancyBootstrapper { protected override void ConfigureConventions(NancyConventions nancyConventions) { nancyConve...
/* * Created by SharpDevelop. * User: Phonic Mouse * Date: 02/08/2016 * Time: 17:32 */ using Nancy.Conventions namespace SharpPaste { public class StaticServeBootstrapper : DefaultNancyBootstrapper { protected override void ConfigureConventions(NancyConventions nancyConventions) { nancyConventions.Stat...
mit
C#
bdf6733e26544e5f521638ede360e8ee6a214589
Use UncachedFileService by default.
Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver,Washi1337/AsmResolver
src/AsmResolver.PE/PEReaderParameters.cs
src/AsmResolver.PE/PEReaderParameters.cs
using System; using AsmResolver.IO; using AsmResolver.PE.Debug; using AsmResolver.PE.DotNet.Metadata; namespace AsmResolver.PE { /// <summary> /// Provides parameters for the reading process of a PE image. /// </summary> public class PEReaderParameters { /// <summary> /// Initialize...
using System; using AsmResolver.IO; using AsmResolver.PE.Debug; using AsmResolver.PE.DotNet.Metadata; namespace AsmResolver.PE { /// <summary> /// Provides parameters for the reading process of a PE image. /// </summary> public class PEReaderParameters { /// <summary> /// Initialize...
mit
C#
796e2edb1e58e9cd42be984719fbdac15d2c7bd6
add xml comments
Pondidum/Conifer,Pondidum/Conifer
Conifer/RouterConfigurationExpression.cs
Conifer/RouterConfigurationExpression.cs
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Web.Http.Controllers; namespace Conifer { public class RouterConfigurationExpression { private readonly List<IRouteConvention> _defaultConventions; private readonly IConventionalRouter _router; publ...
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Web.Http.Controllers; namespace Conifer { public class RouterConfigurationExpression { private readonly List<IRouteConvention> _defaultConventions; private readonly IConventionalRouter _router; publ...
lgpl-2.1
C#
4509c8bcfbcf9fc2a9d6010d707868312fc13cea
Use the more consistent `lastVertex`, with a comment
peppy/osu-new,UselessToucan/osu,smoogipoo/osu,UselessToucan/osu,ppy/osu,ppy/osu,peppy/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,smoogipoo/osu,smoogipooo/osu,peppy/osu,peppy/osu,smoogipoo/osu,NeoAdonis/osu
osu.Game.Rulesets.Catch/Edit/Blueprints/Components/PlacementEditablePath.cs
osu.Game.Rulesets.Catch/Edit/Blueprints/Components/PlacementEditablePath.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 osu.Game.Rulesets.Catch.Objects; using osuTK; namespace osu.Game.Rulesets.Catch.Edit.Blueprints.Components { public class PlacementEditablePath :...
// 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 osu.Game.Rulesets.Catch.Objects; using osuTK; namespace osu.Game.Rulesets.Catch.Edit.Blueprints.Components { public class PlacementEditablePath :...
mit
C#
12ec65bab56e2aeda12c2364cad8947f827c5382
adjust font
GusJassal/agri-nmp,GusJassal/agri-nmp,GusJassal/agri-nmp,GusJassal/agri-nmp
Server/src/SERVERAPI/Views/Report/ReportHeader.cshtml
Server/src/SERVERAPI/Views/Report/ReportHeader.cshtml
<head> <style> body { font-family: FreeSans, Arial, Helvetica, "Nimbus Sans L", "Liberation Sans", Sans-serif; font-size: 10px; } td{ font-size: 10px; } .CellHdg { font-size: 11px; background-color: #a4cdd8; ...
<head> <style> body { font-family: Arial, Helvetica, "Nimbus Sans L", "Liberation Sans", FreeSans, Sans-serif; font-size: 13px; } td{ font-size: 13px; } .CellHdg { font-size: 11px; background-color: #a4cdd8; ...
apache-2.0
C#
1de6b9fcdf89a1d6b7c31b180e2a445596c270ff
Update patridgedev.com URLs to HTTPS (#349)
planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin
src/Firehose.Web/Authors/AdamPatridge.cs
src/Firehose.Web/Authors/AdamPatridge.cs
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class AdamPatridge : IWorkAtXamarinOrMicrosoft, IFilterMyBlogPosts { public string FirstName => "Adam"; public st...
using System; using System.Collections.Generic; using System.Linq; using System.ServiceModel.Syndication; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class AdamPatridge : IWorkAtXamarinOrMicrosoft, IFilterMyBlogPosts { public string FirstName => "Adam"; public st...
mit
C#
2939cb6633b7c69d245bd8c2b7b774f01d011c83
Update AddPublicaton method
dncuug/dot-net.in.ua,dncuug/dot-net.in.ua,dncuug/dot-net.in.ua
src/WebSite/Controllers/ApiController.cs
src/WebSite/Controllers/ApiController.cs
 using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Net; using System.Threading.Tasks; using Core; using Core.ViewModels; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Caching.Memory; using X.Web.MetaExtractor; namespace WebSite.Controllers { pub...
 using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Net; using System.Threading.Tasks; using Core; using Core.ViewModels; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Caching.Memory; using X.Web.MetaExtractor; namespace WebSite.Controllers { pub...
mit
C#
2211ae918252d06a90c7aac47c14dab6ec9115d2
make it an actual Alexa skill
MaxHorstmann/StackExchange-Alexa,MaxHorstmann/StackExchange-Alexa
src/csharp/StackExchangeAlexa.cs
src/csharp/StackExchangeAlexa.cs
using Amazon.Lambda.Core; namespace StackExchange.Alexa { public class Skill { public string MyHandler(int count, ILambdaContext context) { var logger = context.Logger; logger.log("received : " + count); return count.ToString(); } } }
using System; namespace ConsoleApplication { public class Program { public static void Main(string[] args) { Console.WriteLine("Hello World!"); } } }
mit
C#
6dbdfcc70cd9f228707977e34bb56329e97b867f
Fix room password not being percent-encoded in join request
UselessToucan/osu,ppy/osu,NeoAdonis/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,smoogipoo/osu,NeoAdonis/osu,smoogipooo/osu,UselessToucan/osu,peppy/osu-new,smoogipoo/osu,smoogipoo/osu,peppy/osu,ppy/osu,ppy/osu,peppy/osu
osu.Game/Online/Rooms/JoinRoomRequest.cs
osu.Game/Online/Rooms/JoinRoomRequest.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.Net.Http; using osu.Framework.IO.Network; using osu.Game.Online.API; namespace osu.Game.Online.Rooms { public class JoinRoomRequest : APIRequest { ...
// 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.Net.Http; using osu.Framework.IO.Network; using osu.Game.Online.API; namespace osu.Game.Online.Rooms { public class JoinRoomRequest : APIRequest { ...
mit
C#
6ecc728c0121e4821cf83346e2cf8a5401a6210e
Remove override
smoogipoo/osu,NeoAdonis/osu,peppy/osu,smoogipooo/osu,peppy/osu,NeoAdonis/osu,ppy/osu,smoogipoo/osu,ppy/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,NeoAdonis/osu,peppy/osu
osu.Game/Rulesets/Mods/ModSuddenDeath.cs
osu.Game/Rulesets/Mods/ModSuddenDeath.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 System.Linq; using osu.Framework.Graphics.Sprites; using osu.Game.Graphics; using osu.Game.Rulesets.Judgements; using osu.Game.Rulesets.Scoring; name...
// 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 System.Linq; using osu.Framework.Graphics.Sprites; using osu.Game.Graphics; using osu.Game.Rulesets.Judgements; using osu.Game.Rulesets.Scoring; name...
mit
C#
2c82cc87abd53a85ac0ae9303cd1362948bc0171
update for contract length description on list of offers
Paymentsense/Dapper.SimpleSave
PS.Mothership.Core/PS.Mothership.Core.Common/Dto/Merchant/MerchantOfferDto.cs
PS.Mothership.Core/PS.Mothership.Core.Common/Dto/Merchant/MerchantOfferDto.cs
using System.Runtime.Serialization; using PS.Mothership.Core.Common.Template.Gen; using PS.Mothership.Core.Common.Template.Opp; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PS.Mothership.Core.Common.Dto.Merchant { [DataContract] ...
using System.Runtime.Serialization; using PS.Mothership.Core.Common.Template.Gen; using PS.Mothership.Core.Common.Template.Opp; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PS.Mothership.Core.Common.Dto.Merchant { [DataContract] ...
mit
C#
d44a89e32b735164e38339e7a9fbd5cd60cba8c6
Disable document selection by id.
FloodProject/flood,FloodProject/flood,FloodProject/flood
src/Editor/Editor.Client/Tools/ToolClose.cs
src/Editor/Editor.Client/Tools/ToolClose.cs
using System.ComponentModel.Composition; namespace Flood.Editor.Controls { class ToolClose : EditorTool, BarTool { [Import] DocumentManager docManager; public void OnSelect() { //if (docManager.Current != null) // docManager.Close(docManager.Current....
using System.ComponentModel.Composition; namespace Flood.Editor.Controls { class ToolClose : EditorTool, BarTool { [Import] DocumentManager docManager; public void OnSelect() { if (docManager.Current != null) docManager.Close(docManager.Current.Id);...
bsd-2-clause
C#
e688d76df302fea34cb3d899cbcd6c36b07fa27b
Update info author Juliano Custódio (#534)
planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin
src/Firehose.Web/Authors/JulianoCustodio.cs
src/Firehose.Web/Authors/JulianoCustodio.cs
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class JulianoCustodio : IAmAMicrosoftMVP { public string FirstName => "Juliano"; public string LastName => "Custódio"; public string StateOrRegion => "Piracicaba, ...
using System; using System.Collections.Generic; using Firehose.Web.Infrastructure; namespace Firehose.Web.Authors { public class JulianoCustodio : IAmACommunityMember { public string FirstName => "Juliano"; public string LastName => "Custódio"; public string StateOrRegion => "Sorocaba,...
mit
C#
adb79d1a3336d3e51911fe7cb3880b23a94bd08a
change OdooRpcClient class scope to public
vmlf01/OdooRpc.CoreCLR.Client
src/OdooRpc.CoreCLR.Client/OdooRpcClient.cs
src/OdooRpc.CoreCLR.Client/OdooRpcClient.cs
using System.Threading.Tasks; using System.Runtime.CompilerServices; using OdooRpc.CoreCLR.Client.Interfaces; using OdooRpc.CoreCLR.Client.Models; using OdooRpc.CoreCLR.Client.Internals; using OdooRpc.CoreCLR.Client.Internals.Interfaces; [assembly: InternalsVisibleTo("OdooRpc.CoreCLR.Client.Tests")] namespace ...
using System.Threading.Tasks; using System.Runtime.CompilerServices; using OdooRpc.CoreCLR.Client.Interfaces; using OdooRpc.CoreCLR.Client.Models; using OdooRpc.CoreCLR.Client.Internals; using OdooRpc.CoreCLR.Client.Internals.Interfaces; [assembly: InternalsVisibleTo("OdooRpc.CoreCLR.Client.Tests")] namespace ...
mit
C#
339c266a4bec1f9dcd7a593b0a85cf7f8b842a88
Make ask form linkable
ridercz/AskMe,ridercz/AskMe,ridercz/AskMe
Altairis.AskMe.Web/Pages/Questions.cshtml
Altairis.AskMe.Web/Pages/Questions.cshtml
@page "{pageNumber:int:min(1)=1}" @model QuestionsModel <section class="form" id="ask"> <form method="post"> <header> <h2>Nová otázka</h2> </header> <div><textarea asp-for="Input.QuestionText" placeholder="Zadejte text své otázky..."></textarea></div> <div> ...
@page "{pageNumber:int:min(1)=1}" @model QuestionsModel <section class="form"> <form method="post"> <header> <h2>Nová otázka</h2> </header> <div><textarea asp-for="Input.QuestionText" placeholder="Zadejte text své otázky..."></textarea></div> <div> <select a...
mit
C#
fc12c9687edf86fe30004787e2880cbc51c750cf
Prepare 0.1.1 release
LouisTakePILLz/ArgumentParser
ArgumentParser/Properties/AssemblyInfo.cs
ArgumentParser/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.InteropServices; using System.Security; // 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("ArgumentsParser")] ...
using System.Reflection; using System.Runtime.InteropServices; using System.Security; // 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("ArgumentsParser")] ...
apache-2.0
C#
49677714783bacd66ee637b626945de4910a50a0
Fix ZipEntryInfo
Redth/Cake.Xamarin.Build
Cake.Xamarin.Build/PartialZip.cs
Cake.Xamarin.Build/PartialZip.cs
using System; using System.Collections.Generic; using System.IO; using Cake.Core.IO; using ICSharpCode.SharpZipLib.Zip; namespace Cake.Xamarin.Build { public class ZipEntryInfo { public long RangeStart { get; set; } public string EntryName { get; set; } public long CompressedSize { get; set; } public long ...
using System; namespace Cake.Xamarin.Build { public class PartialZip { public PartialZip() { } } }
mit
C#
73a2873d760ee61f8a642ceb911c1a2ea079cde0
Add deleted and copied to the parsed statuses
Thulur/GitStatisticsAnalyzer,Thulur/GitDataExplorer
GitDataExplorer/Results/ListSimpleCommitsResult.cs
GitDataExplorer/Results/ListSimpleCommitsResult.cs
using System; using System.Collections.Generic; using System.Threading.Tasks; using GitDataExplorer.Results.Commits; namespace GitDataExplorer.Results { class ListSimpleCommitsResult : IResult { private char[] statusLetters = { 'M', 'A', 'R', 'C', 'D' }; public ExecutionResult ExecutionResult...
using System; using System.Collections.Generic; using System.Threading.Tasks; using GitDataExplorer.Results.Commits; namespace GitDataExplorer.Results { class ListSimpleCommitsResult : IResult { public ExecutionResult ExecutionResult { get; private set; } public IList<SimpleCommitResult> Comm...
apache-2.0
C#
35918c9970c1ca98f6ce5d654284c2a44a87b7f1
Add missing Nullable example [ci skip]
brycekbargar/Nilgiri,brycekbargar/Nilgiri
Nilgiri.Tests/Examples/Should/NotBeOk.cs
Nilgiri.Tests/Examples/Should/NotBeOk.cs
namespace Nilgiri.Examples { using Xunit; using Nilgiri.Tests.Common; using static Nilgiri.ShouldStyle; public partial class ExampleOf_Should { public class Not_Be_Ok { [Fact] public void Int32() { _(0).Should.Not.Be.Ok(); _(() => 0).Should.Not.Be.Ok(); } ...
namespace Nilgiri.Examples { using Xunit; using Nilgiri.Tests.Common; using static Nilgiri.ShouldStyle; public partial class ExampleOf_Should { public class Not_Be_Ok { [Fact] public void Int32() { _(0).Should.Not.Be.Ok(); _(() => 0).Should.Not.Be.Ok(); } ...
mit
C#
fee4986ff8f6c739de7bd82ef2b4374216259095
Change the web hook names
SevenSpikes/api-plugin-for-nopcommerce,SevenSpikes/api-plugin-for-nopcommerce
Nop.Plugin.Api/Constants/WebHookNames.cs
Nop.Plugin.Api/Constants/WebHookNames.cs
namespace Nop.Plugin.Api.Constants { public static class WebHookNames { public const string FiltersGetAction = "FiltersGetAction"; public const string GetWebhookByIdAction = "GetWebHookByIdAction"; public const string CustomerCreated = "customers/created"; public const string ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Nop.Plugin.Api.Constants { public static class WebHookNames { public const string FiltersGetAction = "FiltersGetAction"; public const string GetWebhookByIdAction = "Ge...
mit
C#
50c15ad6cef5957b60db2432d26aac96981e6db5
remove exception debug code
ceee/PocketSharp
PocketSharp/Utilities/PocketException.cs
PocketSharp/Utilities/PocketException.cs
using System; namespace PocketSharp { /// <summary> /// custom Pocket API Exceptions /// </summary> public class PocketException : Exception { /// <summary> /// Gets or sets the pocket error code. /// </summary> /// <value> /// The pocket error code. /// </value> public int? Pock...
using System; using System.Diagnostics; namespace PocketSharp { /// <summary> /// custom Pocket API Exceptions /// </summary> public class PocketException : Exception { /// <summary> /// Gets or sets the pocket error code. /// </summary> /// <value> /// The pocket error code. /// </v...
mit
C#
3b383e74f5d9e2bc431f57869c5b11d4fee6d447
Document IDrawable
Nabile-Rahmani/osu-framework,Tom94/osu-framework,paparony03/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,peppy/osu-framework,peppy/osu-framework,ppy/osu-framework,DrabWeb/osu-framework,smoogipooo/osu-framework,smoogipooo/osu-framework,default0/osu-framework,EVAST9919/osu-framework,T...
osu.Framework/Graphics/IDrawable.cs
osu.Framework/Graphics/IDrawable.cs
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using osu.Framework.Graphics.Containers; using osu.Framework.Lists; using osu.Framework.Timing; using OpenTK; namespace osu.Framework.Graphics { ...
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE using osu.Framework.Graphics.Containers; using osu.Framework.Lists; using osu.Framework.Timing; using OpenTK; namespace osu.Framework.Graphics { ...
mit
C#
3256f4c11649c27775fda9db5c273e349afaa34c
Change ExchangeType.Header to "headers"
zidad/EasyNetQ,micdenny/EasyNetQ,GeckoInformasjonssystemerAS/EasyNetQ,alexwiese/EasyNetQ,ar7z1/EasyNetQ,Ascendon/EasyNetQ,lukasz-lysik/EasyNetQ,blackcow02/EasyNetQ,nicklv/EasyNetQ,mleenhardt/EasyNetQ,scratch-net/EasyNetQ,chinaboard/EasyNetQ,mcthuesen/EasyNetQ,sanjaysingh/EasyNetQ,mcthuesen/EasyNetQ,blackcow02/EasyNetQ,...
Source/EasyNetQ/Topology/ExchangeType.cs
Source/EasyNetQ/Topology/ExchangeType.cs
namespace EasyNetQ.Topology { public class ExchangeType { public const string Direct = "direct"; public const string Topic = "topic"; public const string Fanout = "fanout"; public const string Header = "headers"; } }
namespace EasyNetQ.Topology { public class ExchangeType { public const string Direct = "direct"; public const string Topic = "topic"; public const string Fanout = "fanout"; public const string Header = "header"; } }
mit
C#
dda88557a57b384b0539aa28475ea4ddebf52fcf
Add supporting 2D mode
t-mat/UnitySceneViewFovControl
Assets/SceneViewFovControl/Editor/Status.cs
Assets/SceneViewFovControl/Editor/Status.cs
using UnityEngine; using UnityEditor; #if !UNITY_EDITOR #error This script must be placed under "Editor/" directory. #endif namespace UTJ.UnityEditor.Extension.SceneViewFovControl { class Status { float fov = 0.0f; public void OnScene(SceneView sceneView) { if(sceneView == null || sceneView.camera =...
using UnityEngine; using UnityEditor; #if !UNITY_EDITOR #error This script must be placed under "Editor/" directory. #endif namespace UTJ.UnityEditor.Extension.SceneViewFovControl { class Status { float fov = 0.0f; public void OnScene(SceneView sceneView) { if(sceneView == null || sceneView.camera =...
mit
C#
fc095820400c083859d72a93baff8c57cd3fd5ae
remove disabled attribute and disable it in js
KristianMariyanov/VotingSystem,KristianMariyanov/VotingSystem,KristianMariyanov/VotingSystem
VotingSystem.Web/Views/Votes/Vote.cshtml
VotingSystem.Web/Views/Votes/Vote.cshtml
@model VotingSystem.Web.ViewModels.Votes.VoteWithCandidatesInputModel @{ ViewBag.Title = "Vote"; } <h1>@Model.Title</h1> <h2>You must vote for exactly <span id="count">@Model.NumberOfVotes</span> candidates</h2> @using (Html.BeginForm("Vote", "Votes", FormMethod.Post)) { @Html.AntiForgeryToken() ...
@model VotingSystem.Web.ViewModels.Votes.VoteWithCandidatesInputModel @{ ViewBag.Title = "Vote"; } <h1>@Model.Title</h1> <h2>You must vote for exactly <span id="count">@Model.NumberOfVotes</span> candidates</h2> @using (Html.BeginForm("Vote", "Votes", FormMethod.Post)) { @Html.AntiForgeryToken() ...
mit
C#
c6c164f29e93bbe42d6d24eee60b15d4e0d4de89
Change "Search" "Frame Padding" option default value
danielchalmers/DesktopWidgets
DesktopWidgets/Widgets/Search/Settings.cs
DesktopWidgets/Widgets/Search/Settings.cs
using System.ComponentModel; using System.Windows; using DesktopWidgets.WidgetBase.Settings; namespace DesktopWidgets.Widgets.Search { public class Settings : WidgetSettingsBase { public Settings() { Style.Width = 150; Style.FramePadding = new Thickness(0); } ...
using System.ComponentModel; using DesktopWidgets.WidgetBase.Settings; namespace DesktopWidgets.Widgets.Search { public class Settings : WidgetSettingsBase { public Settings() { Style.Width = 150; } [Category("General")] [DisplayName("URL Prefix")] ...
apache-2.0
C#
ce00d33c47267bf33548b5046a1ed4a5827c0762
remove RemoveUser
dataccountzXJ9/Lynx
Lynx/Services/Mute/Extensions.cs
Lynx/Services/Mute/Extensions.cs
using Discord; using Discord.WebSocket; using Lynx.Handler; using Lynx.Methods; using Lynx.Services.Embed; using System; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace Lynx.Services.Mute { public static class Extensions { public static DateTime GetTime(int Value, str...
using Discord; using Discord.WebSocket; using Lynx.Handler; using Lynx.Methods; using Lynx.Services.Embed; using System; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace Lynx.Services.Mute { public static class Extensions { static Timer Timer; public static voi...
mit
C#
225bc2d84a07dd7ac53a6548183271c46fd946bc
Fix ProfilePack.ProfileXml
emoacht/ManagedNativeWifi
ManagedNativeWifi/ProfilePack.cs
ManagedNativeWifi/ProfilePack.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ManagedNativeWifi { /// <summary> /// Wireless profile information /// </summary> public class ProfilePack { /// <summary> /// Profile name /// </summary> public s...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ManagedNativeWifi { /// <summary> /// Wireless profile information /// </summary> public class ProfilePack { /// <summary> /// Profile name /// </summary> public s...
mit
C#
da97efc53e5089a2bdd8894a61cbb128aa2346ad
update samples
ysinjab/InstagramCSharp
Samples/RealTime-Updates/Console/Program.cs
Samples/RealTime-Updates/Console/Program.cs
using InstagramCSharp; using InstagramCSharp.Enums; using InstagramCSharp.Models; using Newtonsoft.Json; using System; namespace InstagramCSharp_ConsoleApp { class Program { static void Main(string[] args) { //Create RealTime subscription sample string clientId = "YOUR_CLIE...
using InstagramCSharp; using InstagramCSharp.Enums; using InstagramCSharp.Models; using Newtonsoft.Json; using System; namespace InstagramCSharp_ConsoleApp { class Program { static void Main(string[] args) { //Create RealTime subscription sample string clientId = "YOUR_CLI...
mit
C#
a74c207dd78f6ac4bbb4f9ec44d48bd7e3b9f2da
update assemblyinfo
gdbd/sharepointcommon
SharepointCommon/Properties/AssemblyInfo.cs
SharepointCommon/Properties/AssemblyInfo.cs
using System; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("SharepointCommon")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("SharepointCommon")] [assembly: Assembl...
using System; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("SharepointCommon")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Sh...
mit
C#
8e8ad6ba1028efd781e0daa6fec1b40db0d9eaf9
Initialize InfoAppCommand with an IAppHarborClient
appharbor/appharbor-cli
src/AppHarbor/Commands/InfoAppCommand.cs
src/AppHarbor/Commands/InfoAppCommand.cs
using System; namespace AppHarbor.Commands { public class InfoAppCommand : ICommand { private readonly IAppHarborClient _client; public InfoAppCommand(IAppHarborClient client) { _client = client; } public void Execute(string[] arguments) { throw new NotImplementedException(); } } }
using System; namespace AppHarbor.Commands { public class InfoAppCommand : ICommand { public void Execute(string[] arguments) { throw new NotImplementedException(); } } }
mit
C#
81a5b570dc6f6246000ef1c1eef71fa7e3ac40df
Reduce overheads of NullOperationListener.Delay
wvdd007/roslyn,eriawan/roslyn,mavasani/roslyn,shyamnamboodiripad/roslyn,weltkante/roslyn,mavasani/roslyn,KevinRansom/roslyn,eriawan/roslyn,dotnet/roslyn,weltkante/roslyn,CyrusNajmabadi/roslyn,mavasani/roslyn,physhi/roslyn,physhi/roslyn,weltkante/roslyn,sharwell/roslyn,CyrusNajmabadi/roslyn,dotnet/roslyn,wvdd007/roslyn,...
src/Workspaces/Core/Portable/Shared/TestHooks/AsynchronousOperationListenerProvider+NullOperationListener.cs
src/Workspaces/Core/Portable/Shared/TestHooks/AsynchronousOperationListenerProvider+NullOperationListener.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; using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; using Ro...
// 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; using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; namespa...
mit
C#
0b105928016f1432c731d8809434470bf3883213
stop outputting parse errors
x335/omnisharp-server,corngood/omnisharp-server,x335/omnisharp-server,syl20bnr/omnisharp-server,corngood/omnisharp-server,syl20bnr/omnisharp-server,OmniSharp/omnisharp-server,mispencer/OmniSharpServer,svermeulen/omnisharp-server
OmniSharp/Solution/CSharpFile.cs
OmniSharp/Solution/CSharpFile.cs
using System; using System.IO; using ICSharpCode.NRefactory.CSharp; using ICSharpCode.NRefactory.Editor; using ICSharpCode.NRefactory.TypeSystem; namespace OmniSharp.Solution { public class CSharpFile { public string FileName; public ITextSource Content; public SyntaxTree SyntaxTree; ...
using System; using System.IO; using ICSharpCode.NRefactory.CSharp; using ICSharpCode.NRefactory.Editor; using ICSharpCode.NRefactory.TypeSystem; namespace OmniSharp.Solution { public class CSharpFile { public string FileName; public ITextSource Content; public SyntaxTree SyntaxTree; ...
mit
C#
e0d7b049a2d963949da6a028e7f94fadd85d0e25
Change AssemblyInfo in Cruciatus project.
2gis/Winium.Cruciatus
src/Cruciatus/Properties/AssemblyInfo.cs
src/Cruciatus/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("Cruciatus")] [assembly: AssemblyDescripti...
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("Cr...
mpl-2.0
C#
a6877071f4814f1c52358dcc5b1ee716b0e719ee
Set continuation opcode for non-first frames in the writer
Chelaris182/wslib
wslib/Protocol/Writer/WsMessageWriter.cs
wslib/Protocol/Writer/WsMessageWriter.cs
using System; using System.Threading; using System.Threading.Tasks; namespace wslib.Protocol.Writer { public class WsMessageWriter : IDisposable { private readonly MessageType messageType; private readonly Action onDispose; private readonly IWsMessageWriteStream stream; private ...
using System; using System.Threading; using System.Threading.Tasks; namespace wslib.Protocol.Writer { public class WsMessageWriter : IDisposable { private readonly MessageType messageType; private readonly Action onDispose; private readonly IWsMessageWriteStream stream; public ...
mit
C#
90e23daba4bdddc1122db8c1b955376c51f79ff7
update user notification settings endpoint added
noordwind/Collectively.Api,noordwind/Coolector,noordwind/Coolector.Api,noordwind/Coolector,noordwind/Coolector.Api,noordwind/Collectively.Api
Collectively.Api/Modules/AccountModule.cs
Collectively.Api/Modules/AccountModule.cs
using Collectively.Api.Commands; using Collectively.Api.Queries; using Collectively.Api.Storages; using Collectively.Api.Validation; using Collectively.Messages.Commands.Notifications; using Collectively.Messages.Commands.Users; using Collectively.Services.Storage.Models.Notifications; using Collectively.Services.Stor...
using Collectively.Api.Commands; using Collectively.Api.Queries; using Collectively.Api.Storages; using Collectively.Api.Validation; using Collectively.Messages.Commands.Users; using Collectively.Services.Storage.Models.Notifications; using Collectively.Services.Storage.Models.Users; namespace Collectively.Api.Module...
mit
C#
eb939eed20326e07225d899859dc7755bc17f05a
make argument helper public, its useful
splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net,splitice/IPTables.Net
IPTables.Net/Supporting/ArgumentHelper.cs
IPTables.Net/Supporting/ArgumentHelper.cs
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IPTables.Net.Supporting { public class ArgumentHelper { public static string[] SplitArguments(string commandLine) { char[] parmChars = commandLine.ToCharArray(); bool inSingl...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IPTables.Net.Supporting { internal class ArgumentHelper { internal static string[] SplitArguments(string commandLine) { char[] parmChars = commandLine.ToCharArray(); bool inS...
apache-2.0
C#
221941b0b8f4ffd62168673ba77bc7bca439d396
update in noise machine
p-org/PSharp
Libraries/Common/Machines/NoiseMachine.cs
Libraries/Common/Machines/NoiseMachine.cs
//----------------------------------------------------------------------- // <copyright file="NoiseMachine.cs"> // Copyright (c) Microsoft Corporation. All rights reserved. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARR...
//----------------------------------------------------------------------- // <copyright file="NoiseMachine.cs"> // Copyright (c) Microsoft Corporation. All rights reserved. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARR...
mit
C#
236133825949d1fa37c1cd0cfb31a18c0515db19
Update video player
anbinhtrong/PlayEmbededHttpVideo,anbinhtrong/PlayEmbededHttpVideo
PlayVideo/Views/EmbedContent/Index.cshtml
PlayVideo/Views/EmbedContent/Index.cshtml
 @{ ViewBag.Title = "Index"; } <h2>Index</h2> <div> <iframe height="283" frameborder="0" width="452" src="http://www.tudou.com/v/www7AcxRtY4/&amp;resourceId=0_04_05_99&amp;autoPlay=true&amp;autostart=true/v.swf"></iframe> </div> <h2>Video 2</h2> <video width="480" height="320" src="http://v.youku.com/play...
 @{ ViewBag.Title = "Index"; } <h2>Index</h2> <div> <iframe height="283" frameborder="0" width="452" src="http://www.tudou.com/v/www7AcxRtY4/&amp;resourceId=0_04_05_99&amp;autoPlay=true&amp;autostart=true/v.swf"></iframe> </div> @section scripts{ }
mit
C#
8cb6bfcf4491f226e3005a6b16357babc0b7fd9d
append the thirdparty in `glTFForUE4Ed`
code4game/glTFForUE4,code4game/glTFForUE4,code4game/glTFForUE4
Source/glTFForUE4Ed/glTFForUE4Ed.Build.cs
Source/glTFForUE4Ed/glTFForUE4Ed.Build.cs
// Copyright 2017 - 2018 Code 4 Game, Org. All Rights Reserved. using UnrealBuildTool; public class glTFForUE4Ed : ModuleRules { public glTFForUE4Ed(ReadOnlyTargetRules Target) : base(Target) { PCHUsage = PCHUsageMode.UseSharedPCHs; PrivatePCHHeaderFile = "Private/glTFForUE4EdPrivatePCH.h"; ...
// Copyright 2017 - 2018 Code 4 Game, Org. All Rights Reserved. using UnrealBuildTool; public class glTFForUE4Ed : ModuleRules { public glTFForUE4Ed(ReadOnlyTargetRules Target) : base(Target) { PCHUsage = PCHUsageMode.UseSharedPCHs; PrivatePCHHeaderFile = "Private/glTFForUE4EdPrivatePCH.h"; ...
mit
C#
ee237498e6075988507cd281e7bf668076f070ff
Reorder source types enums.
GetTabster/Tabster
Tabster.Core/Types/TablatureSourceType.cs
Tabster.Core/Types/TablatureSourceType.cs
namespace Tabster.Core.Types { public enum TablatureSourceType { UserCreated, FileImport, Download } }
namespace Tabster.Core.Types { public enum TablatureSourceType { Download, FileImport, UserCreated } }
apache-2.0
C#
4adc7c346fa33397bd8f0290c967d35f269a9306
Fix resource leak in PanelAnnounce
iridinite/shiftdrive
Client/PanelAnnounce.cs
Client/PanelAnnounce.cs
/* ** Project ShiftDrive ** (C) Mika Molenkamp, 2016-2017. */ using System; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; namespace ShiftDrive { /// <summary> /// Represents a UI element that shows the server's last announcement text. /// </summary> internal sealed class Pan...
/* ** Project ShiftDrive ** (C) Mika Molenkamp, 2016-2017. */ using System; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; namespace ShiftDrive { /// <summary> /// Represents a UI element that shows the server's last announcement text. /// </summary> internal sealed class Pan...
bsd-3-clause
C#
84aeac2049c18f6f2561978be717693d0bbe6a87
Use string instead of String.
Quickshot/DupImageLib,Quickshot/DupImage
DupImage/ImageStruct.cs
DupImage/ImageStruct.cs
using System; using System.Collections.Generic; using System.IO; namespace DupImage { /// <summary> /// Structure for containing image information and hash values. /// </summary> public class ImageStruct { /// <summary> /// Construct a new ImageStruct from FileInfo. /// </s...
using System; using System.Collections.Generic; using System.IO; namespace DupImage { /// <summary> /// Structure for containing image information and hash values. /// </summary> public class ImageStruct { /// <summary> /// Construct a new ImageStruct from FileInfo. /// </s...
unknown
C#
09ca47b7b6f1e908adce6fdda9cb0f10fb82f877
Handle NRE
nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet,nopara73/HiddenWallet
WalletWasabi/BitcoinCore/Monitoring/RpcFeeProvider.cs
WalletWasabi/BitcoinCore/Monitoring/RpcFeeProvider.cs
using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.Tasks; using NBitcoin; using NBitcoin.RPC; using WalletWasabi.Bases; using WalletWasabi.Blockchain.Analysis.FeesEstimation; using WalletWasabi.Helpers; namespace WalletWasabi.BitcoinCore.Monitoring { publ...
using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.Tasks; using NBitcoin; using NBitcoin.RPC; using WalletWasabi.Bases; using WalletWasabi.Blockchain.Analysis.FeesEstimation; using WalletWasabi.Helpers; namespace WalletWasabi.BitcoinCore.Monitoring { publ...
mit
C#
22e68c4d74652f25654d2650b4965c8470022950
Improve diff.
wvdd007/roslyn,aelij/roslyn,ErikSchierboom/roslyn,lorcanmooney/roslyn,weltkante/roslyn,TyOverby/roslyn,srivatsn/roslyn,MichalStrehovsky/roslyn,AlekseyTs/roslyn,mavasani/roslyn,jamesqo/roslyn,brettfo/roslyn,heejaechang/roslyn,sharwell/roslyn,xasx/roslyn,bartdesmet/roslyn,mmitche/roslyn,sharwell/roslyn,genlu/roslyn,Cyrus...
src/Features/Core/Portable/DocumentHighlighting/IDocumentHighlightsService.cs
src/Features/Core/Portable/DocumentHighlighting/IDocumentHighlightsService.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.Collections.Immutable; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Host; using Microsoft.CodeAnalysis.Text...
// 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; using System.Threading; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Host; using Microsoft.CodeAnalysis.Text...
mit
C#
f8ac9c2f97d0b2cb553416a73523bfe09887f013
Support X-Forwarded-Host for tenants (#1185)
stevetayloruk/Orchard2,stevetayloruk/Orchard2,OrchardCMS/Brochard,OrchardCMS/Brochard,petedavis/Orchard2,stevetayloruk/Orchard2,petedavis/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,stevetayloruk/Orchard2,xkproject/Orchard2,petedavis/Orchard2,xkproject/Orchard2,OrchardCMS/Brochard,petedavis/Or...
src/OrchardCore/OrchardCore.Modules/Extensions/RunningShellTableExtensions.cs
src/OrchardCore/OrchardCore.Modules/Extensions/RunningShellTableExtensions.cs
using System; using Microsoft.AspNetCore.Http; using OrchardCore.Environment.Shell; namespace OrchardCore.Modules { public static class RunningShellTableExtensions { private const string XForwardedHost = "X-Forwarded-Host"; public static ShellSettings Match(this IRunningShellTable table, HttpC...
using System; using Microsoft.AspNetCore.Http; using OrchardCore.Environment.Shell; namespace OrchardCore.Modules { public static class RunningShellTableExtensions { public static ShellSettings Match(this IRunningShellTable table, HttpContext httpContext) { // use Host header to pr...
bsd-3-clause
C#
5f0251d10f4ef5070b76ea3b25afce204bbc124f
Fix deadlock in SslStream_SameCertUsedForClientAndServer_Ok test on single core
ViktorHofer/corefx,ravimeda/corefx,mazong1123/corefx,ptoonen/corefx,zhenlan/corefx,nbarbettini/corefx,yizhang82/corefx,gkhanna79/corefx,nbarbettini/corefx,alexperovich/corefx,alexperovich/corefx,gkhanna79/corefx,dhoehna/corefx,fgreinacher/corefx,ViktorHofer/corefx,billwert/corefx,stephenmichaelf/corefx,ericstj/corefx,a...
src/System.Net.Security/tests/FunctionalTests/SslStreamCredentialCacheTest.cs
src/System.Net.Security/tests/FunctionalTests/SslStreamCredentialCacheTest.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.ComponentModel; using System.Net.Test.Common; using System.Security.Authentication; using System.Securi...
// 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.ComponentModel; using System.Net.Test.Common; using System.Security.Authentication; using System.Securi...
mit
C#
9bc7395e02b1adc990f6c5409f848095284a18c1
Add default value for Date; update Default documentation
frhagn/Typewriter
src/CodeModel/Extensions/Types/TypeExtensions.cs
src/CodeModel/Extensions/Types/TypeExtensions.cs
using System.Linq; using Type = Typewriter.CodeModel.Type; namespace Typewriter.Extensions.Types { /// <summary> /// Extension methods for working with types. /// </summary> public static class TypeExtensions { /// <summary> /// Returns the name of the type without [] /// <...
using System.Linq; using Type = Typewriter.CodeModel.Type; namespace Typewriter.Extensions.Types { /// <summary> /// Extension methods for working with types. /// </summary> public static class TypeExtensions { /// <summary> /// Returns the name of the type without [] /// <...
apache-2.0
C#
2161b2596283a67f71023bc15c2c03a93254bc41
Rewrite of summary
Geta/EPi.Extensions
Geta.EPi.Extensions/Helpers/PageHelper.cs
Geta.EPi.Extensions/Helpers/PageHelper.cs
using EPiServer; using EPiServer.Core; using EPiServer.ServiceLocation; namespace Geta.EPi.Extensions.Helpers { /// <summary> /// Helper methods for working with EPiServer PageData objects /// </summary> public static class PageHelper { /// <summary> /// Gets the start page for current site. /// <...
using EPiServer; using EPiServer.Core; using EPiServer.ServiceLocation; namespace Geta.EPi.Extensions.Helpers { /// <summary> /// Utility class to help work with EPiServer PageData objects /// </summary> public static class PageHelper { /// <summary> /// Gets the start page for current site. /// <...
mit
C#
f05f14fc382cf60cbc3a7f3a23669ffdc5d0fc46
Add Support for MysqlConnector 1 namespace changes
stsrki/fluentmigrator,spaccabit/fluentmigrator,amroel/fluentmigrator,fluentmigrator/fluentmigrator,amroel/fluentmigrator,fluentmigrator/fluentmigrator,stsrki/fluentmigrator,spaccabit/fluentmigrator
src/FluentMigrator.Runner.MySql/Processors/MySql/MySqlDbFactory.cs
src/FluentMigrator.Runner.MySql/Processors/MySql/MySqlDbFactory.cs
#region License // Copyright (c) 2007-2018, FluentMigrator Project // // 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 b...
#region License // Copyright (c) 2007-2018, FluentMigrator Project // // 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 b...
apache-2.0
C#
32fe4a5d05b3cc3ceba1be8e7d913b6eb0ce61d9
Update Viktor.cs
FireBuddy/adevade
AdEvade/AdEvade/Data/Spells/SpecialSpells/Viktor.cs
AdEvade/AdEvade/Data/Spells/SpecialSpells/Viktor.cs
using System; using EloBuddy; using EloBuddy.SDK; namespace AdEvade.Data.Spells.SpecialSpells { class Viktor : IChampionPlugin { static Viktor() { } public const string ChampionName = "Viktor"; public string GetChampionName() { return ChampionName; ...
using System; using EloBuddy; using EloBuddy.SDK; namespace AdEvade.Data.Spells.SpecialSpells { class Viktor : IChampionPlugin { static Viktor() { } public const string ChampionName = "Viktor"; public string GetChampionName() { return ChampionName; ...
mit
C#
2dc29ebc0d1e5196b5a5a310dfdfc40f429c4ad2
Update AssemblyInfo.cs
trevorreeves/Treevs.Essentials.AutoFixture.Xunit
src/Treevs.Essentials.AutoFixture.Xunit/Properties/AssemblyInfo.cs
src/Treevs.Essentials.AutoFixture.Xunit/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("Tr...
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("tr...
mit
C#
4f948c96ef0ab2d84994ef3f93855d3cc495a3c8
Return the provided default value
zedr0n/AngleSharp.Local,AngleSharp/AngleSharp,FlorianRappl/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp,AngleSharp/AngleSharp,Livven/AngleSharp,Livven/AngleSharp,FlorianRappl/AngleSharp,zedr0n/AngleSharp.Local,Livven/AngleSharp,FlorianRappl/AngleSharp,zedr0n/AngleSharp.Local,AngleSharp/AngleSharp,FlorianRappl...
AngleSharp/Extensions/ObjectExtensions.cs
AngleSharp/Extensions/ObjectExtensions.cs
namespace AngleSharp.Extensions { using System; using System.Collections.Generic; using System.Diagnostics; /// <summary> /// Some methods for working with bare objects. /// </summary> [DebuggerStepThrough] static class ObjectExtensions { public static Dictionary<String, T>...
namespace AngleSharp.Extensions { using System; using System.Collections.Generic; using System.Diagnostics; /// <summary> /// Some methods for working with bare objects. /// </summary> [DebuggerStepThrough] static class ObjectExtensions { public static Dictionary<String, T>...
mit
C#
4679c4376b37df2c7d22c1f614d3e31ede5b9c4e
Update the assembly info
sqt/cactbot,sqt/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,sqt/cactbot,sqt/cactbot,quisquous/cactbot,quisquous/cactbot,sqt/cactbot
CactbotOverlay/Properties/AssemblyInfo.cs
CactbotOverlay/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("CactbotOverlay")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CactbotOverlay")] [assembly: AssemblyC...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 // アセンブリに関連付けられている情報を変更するには、 // これらの属性値を変更してください。 [assembly: AssemblyTitle("ExternalOverlayTest")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [asse...
apache-2.0
C#
840a5f7b949ed34c3d5919a4d6b0c361a4fce3c9
Bump version to 0.10.2
quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot,quisquous/cactbot
CactbotOverlay/Properties/AssemblyInfo.cs
CactbotOverlay/Properties/AssemblyInfo.cs
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("CactbotOverlay")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CactbotOverlay")] [assembly: AssemblyC...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [assembly: AssemblyTitle("CactbotOverlay")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("CactbotOverlay")] [assembly: AssemblyC...
apache-2.0
C#